Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for device automations."""
2 
3 CONF_CHANGED_STATES = "changed_states"
4 CONF_IS_OFF = "is_off"
5 CONF_IS_ON = "is_on"
6 CONF_TOGGLE = "toggle"
7 CONF_TURN_OFF = "turn_off"
8 CONF_TURN_ON = "turn_on"
9 CONF_TURNED_OFF = "turned_off"
10 CONF_TURNED_ON = "turned_on"