* A platform is not a component * Fix dynalite * SUPPORTED_PLATFORMS --> PLATFORMS * In tests * In tests 2 * Fix SmartThings * Fix ZHA test * Fix Z-Wave * Revert Z-Wave * Use PLATFORMS const in ambient_station * Fix ihc comment
12 lines
273 B
Python
12 lines
273 B
Python
"""Define constants for the Ambient PWS component."""
|
|
import logging
|
|
|
|
DOMAIN = "ambient_station"
|
|
LOGGER = logging.getLogger(__package__)
|
|
|
|
ATTR_LAST_DATA = "last_data"
|
|
ATTR_MONITORED_CONDITIONS = "monitored_conditions"
|
|
|
|
CONF_APP_KEY = "app_key"
|
|
|
|
DATA_CLIENT = "data_client"
|