mirror of
https://github.com/elisspace/core.git
synced 2026-09-27 04:57:12 +00:00
12 lines
289 B
Python
12 lines
289 B
Python
"""Constants for the Z-Wave JS integration."""
|
|
|
|
|
|
DOMAIN = "zwave_js"
|
|
NAME = "Z-Wave JS"
|
|
PLATFORMS = ["binary_sensor", "climate", "light", "lock", "sensor", "switch"]
|
|
|
|
DATA_CLIENT = "client"
|
|
DATA_UNSUBSCRIBE = "unsubs"
|
|
|
|
EVENT_DEVICE_ADDED_TO_REGISTRY = f"{DOMAIN}_device_added_to_registry"
|