mirror of
https://github.com/home-assistant/core.git
synced 2025-12-23 20:39:01 +00:00
7 lines
159 B
Python
7 lines
159 B
Python
"""Constants for device automations."""
|
|
CONF_IS_OFF = "is_off"
|
|
CONF_IS_ON = "is_on"
|
|
CONF_TOGGLE = "toggle"
|
|
CONF_TURN_OFF = "turn_off"
|
|
CONF_TURN_ON = "turn_on"
|