Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Define constants for the Notion integration."""
2 
3 import logging
4 
5 DOMAIN = "notion"
6 LOGGER = logging.getLogger(__package__)
7 
8 CONF_REFRESH_TOKEN = "refresh_token"
9 CONF_USER_UUID = "user_uuid"
10 
11 SENSOR_BATTERY = "low_battery"
12 SENSOR_DOOR = "door"
13 SENSOR_GARAGE_DOOR = "garage_door"
14 SENSOR_LEAK = "leak"
15 SENSOR_MISSING = "missing"
16 SENSOR_MOLD = "mold"
17 SENSOR_SAFE = "safe"
18 SENSOR_SLIDING = "sliding"
19 SENSOR_SMOKE_CO = "alarm"
20 SENSOR_TEMPERATURE = "temperature"
21 SENSOR_WINDOW_HINGED = "window_hinged"