core/homeassistant/components/met/const.py

16 lines
368 B
Python
Raw Normal View History

"""Constants for Met component."""
import logging
from homeassistant.components.weather import DOMAIN as WEATHER_DOMAIN
2019-07-31 19:25:30 +00:00
DOMAIN = "met"
2019-07-31 19:25:30 +00:00
HOME_LOCATION_NAME = "Home"
2019-07-31 19:25:30 +00:00
CONF_TRACK_HOME = "track_home"
ENTITY_ID_SENSOR_FORMAT = WEATHER_DOMAIN + ".met_{}"
2019-07-31 19:25:30 +00:00
ENTITY_ID_SENSOR_FORMAT_HOME = ENTITY_ID_SENSOR_FORMAT.format(HOME_LOCATION_NAME)
2019-07-31 19:25:30 +00:00
_LOGGER = logging.getLogger(".")