hass-core/homeassistant/components/zwave_js/const.py
Chris 68e7ecb74b
Add zwave-js fan platform ()
* Add zwave-js fan platform

* Update remaining tests

* Missing awaits, tests fixed

* Fix typing

Co-authored-by: Martin Hjelmare <marhje52@gmail.com>
2021-01-23 00:11:32 +01:00

20 lines
340 B
Python

"""Constants for the Z-Wave JS integration."""
DOMAIN = "zwave_js"
NAME = "Z-Wave JS"
PLATFORMS = [
"binary_sensor",
"climate",
"cover",
"fan",
"light",
"lock",
"sensor",
"switch",
]
DATA_CLIENT = "client"
DATA_UNSUBSCRIBE = "unsubs"
EVENT_DEVICE_ADDED_TO_REGISTRY = f"{DOMAIN}_device_added_to_registry"