mirror of
https://github.com/home-assistant/core.git
synced 2025-05-09 16:39:22 +00:00
21 lines
380 B
Python
21 lines
380 B
Python
"""Constants used by multiple Tasmota modules."""
|
|
CONF_DISCOVERY_PREFIX = "discovery_prefix"
|
|
|
|
DATA_REMOVE_DISCOVER_COMPONENT = "tasmota_discover_{}"
|
|
DATA_UNSUB = "tasmota_subscriptions"
|
|
|
|
DEFAULT_PREFIX = "tasmota/discovery"
|
|
|
|
DOMAIN = "tasmota"
|
|
|
|
PLATFORMS = [
|
|
"binary_sensor",
|
|
"cover",
|
|
"fan",
|
|
"light",
|
|
"sensor",
|
|
"switch",
|
|
]
|
|
|
|
TASMOTA_EVENT = "tasmota_event"
|