21 lines
504 B
Python
21 lines
504 B
Python
"""Constants for the Switcher integration."""
|
|
|
|
DOMAIN = "switcher_kis"
|
|
|
|
CONF_DEVICE_PASSWORD = "device_password"
|
|
CONF_PHONE_ID = "phone_id"
|
|
|
|
DATA_DEVICE = "device"
|
|
|
|
SIGNAL_SWITCHER_DEVICE_UPDATE = "switcher_device_update"
|
|
|
|
ATTR_AUTO_OFF_SET = "auto_off_set"
|
|
ATTR_ELECTRIC_CURRENT = "electric_current"
|
|
ATTR_REMAINING_TIME = "remaining_time"
|
|
|
|
CONF_AUTO_OFF = "auto_off"
|
|
CONF_TIMER_MINUTES = "timer_minutes"
|
|
|
|
SERVICE_SET_AUTO_OFF_NAME = "set_auto_off"
|
|
SERVICE_TURN_ON_WITH_TIMER_NAME = "turn_on_with_timer"
|