Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Ambient Weather Network integration."""
2 
3 import logging
4 
5 DOMAIN = "ambient_network"
6 
7 API_LAST_DATA = "lastData"
8 API_STATION_COORDS = "coords"
9 API_STATION_INDOOR = "indoor"
10 API_STATION_INFO = "info"
11 API_STATION_LOCATION = "location"
12 API_STATION_NAME = "name"
13 API_STATION_MAC_ADDRESS = "macAddress"
14 API_STATION_TYPE = "stationtype"
15 
16 LOGGER = logging.getLogger(__package__)