core/homeassistant/components/ambient_station/const.py

13 lines
273 B
Python
Raw Normal View History

"""Define constants for the Ambient PWS component."""
import logging
2019-07-31 19:25:30 +00:00
DOMAIN = "ambient_station"
LOGGER = logging.getLogger(__package__)
2019-07-31 19:25:30 +00:00
ATTR_LAST_DATA = "last_data"
ATTR_MONITORED_CONDITIONS = "monitored_conditions"
2019-07-31 19:25:30 +00:00
CONF_APP_KEY = "app_key"
2019-07-31 19:25:30 +00:00
DATA_CLIENT = "data_client"