1
mirror of https://github.com/home-assistant/core synced 2024-08-02 23:40:32 +02:00
ha-core/homeassistant/components/enocean/const.py
2021-12-28 21:13:20 +01:00

23 lines
469 B
Python

"""Constants for the ENOcean integration."""
import logging
from homeassistant.const import Platform
DOMAIN = "enocean"
DATA_ENOCEAN = "enocean"
ENOCEAN_DONGLE = "dongle"
ERROR_INVALID_DONGLE_PATH = "invalid_dongle_path"
SIGNAL_RECEIVE_MESSAGE = "enocean.receive_message"
SIGNAL_SEND_MESSAGE = "enocean.send_message"
LOGGER = logging.getLogger(__package__)
PLATFORMS = [
Platform.LIGHT,
Platform.BINARY_SENSOR,
Platform.SENSOR,
Platform.SWITCH,
]