Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Define constants for the Ambient PWS component."""
2 
3 import logging
4 
5 DOMAIN = "ambient_station"
6 LOGGER = logging.getLogger(__package__)
7 
8 ATTR_LAST_DATA = "last_data"
9 
10 CONF_APP_KEY = "app_key"
11 
12 TYPE_SOLARRADIATION = "solarradiation"
13 TYPE_SOLARRADIATION_LX = "solarradiation_lx"