2019-09-24 14:05:19 +00:00
|
|
|
"""Constants for the Template Platform Components."""
|
|
|
|
|
|
|
|
CONF_AVAILABILITY_TEMPLATE = "availability_template"
|
2020-08-21 23:31:48 +00:00
|
|
|
|
|
|
|
DOMAIN = "template"
|
|
|
|
|
|
|
|
PLATFORM_STORAGE_KEY = "template_platforms"
|
|
|
|
|
|
|
|
EVENT_TEMPLATE_RELOADED = "event_template_reloaded"
|
2020-08-25 22:25:15 +00:00
|
|
|
|
|
|
|
PLATFORMS = [
|
|
|
|
"alarm_control_panel",
|
|
|
|
"binary_sensor",
|
|
|
|
"cover",
|
|
|
|
"fan",
|
|
|
|
"light",
|
|
|
|
"lock",
|
|
|
|
"sensor",
|
|
|
|
"switch",
|
|
|
|
"vacuum",
|
|
|
|
]
|