* Moving existing sensor file * Initial functionality in place * Added test for config flow * Updated coverage and CODEOWNERS * Linting * Linting * Member comments * Hound * Moving socket disconnect on HASS stop * Member comments * Removed unnecessary dispatcher call * Config entry fix * Added support in config flow for good accounts with no devices * Hound * Updated comment * Member comments * Stale docstrings * Stale docstring
13 lines
224 B
Python
13 lines
224 B
Python
"""Define constants for the Ambient PWS component."""
|
|
DOMAIN = 'ambient_station'
|
|
|
|
ATTR_LAST_DATA = 'last_data'
|
|
|
|
CONF_APP_KEY = 'app_key'
|
|
|
|
DATA_CLIENT = 'data_client'
|
|
|
|
TOPIC_UPDATE = 'update'
|
|
|
|
UNITS_SI = 'si'
|
|
UNITS_US = 'us'
|