Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Switcher integration."""
2 
3 DOMAIN = "switcher_kis"
4 
5 DISCOVERY_TIME_SEC = 12
6 
7 SIGNAL_DEVICE_ADD = "switcher_device_add"
8 
9 # Services
10 CONF_AUTO_OFF = "auto_off"
11 CONF_TIMER_MINUTES = "timer_minutes"
12 SERVICE_SET_AUTO_OFF_NAME = "set_auto_off"
13 SERVICE_TURN_ON_WITH_TIMER_NAME = "turn_on_with_timer"
14 
15 # Defines the maximum interval device must send an update before it marked unavailable
16 MAX_UPDATE_INTERVAL_SEC = 30