mirror of
https://github.com/home-assistant/core.git
synced 2026-02-21 10:27:52 +00:00
* Add forecast service. * Add detailed Environment Canada forecast data. * Add icon and translations. * Fix missing commas * Add const. * Add test.
9 lines
234 B
Python
9 lines
234 B
Python
"""Constants for EC component."""
|
|
|
|
ATTR_OBSERVATION_TIME = "observation_time"
|
|
ATTR_STATION = "station"
|
|
CONF_STATION = "station"
|
|
CONF_TITLE = "title"
|
|
DOMAIN = "environment_canada"
|
|
SERVICE_ENVIRONMENT_CANADA_FORECASTS = "get_forecasts"
|