mirror of
https://github.com/home-assistant/core.git
synced 2025-04-27 02:37:50 +00:00
11 lines
259 B
Python
11 lines
259 B
Python
"""Constants for device automations."""
|
|
|
|
CONF_CHANGED_STATES = "changed_states"
|
|
CONF_IS_OFF = "is_off"
|
|
CONF_IS_ON = "is_on"
|
|
CONF_TOGGLE = "toggle"
|
|
CONF_TURN_OFF = "turn_off"
|
|
CONF_TURN_ON = "turn_on"
|
|
CONF_TURNED_OFF = "turned_off"
|
|
CONF_TURNED_ON = "turned_on"
|