mirror of
https://github.com/home-assistant/core.git
synced 2026-02-23 19:37:12 +00:00
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>
18 lines
416 B
Python
18 lines
416 B
Python
"""Constants for the Meteo.lt integration."""
|
|
|
|
from datetime import timedelta
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
DOMAIN = "meteo_lt"
|
|
PLATFORMS = [Platform.WEATHER]
|
|
|
|
MANUFACTURER = "Lithuanian Hydrometeorological Service"
|
|
MODEL = "Weather Station"
|
|
|
|
DEFAULT_UPDATE_INTERVAL = timedelta(minutes=30)
|
|
|
|
CONF_PLACE_CODE = "place_code"
|
|
|
|
ATTRIBUTION = "Data provided by Lithuanian Hydrometeorological Service (LHMT)"
|