core/homeassistant/components/elgato/const.py

18 lines
375 B
Python
Raw Normal View History

"""Constants for the Elgato Key Light integration."""
# Integration domain
DOMAIN = "elgato"
# Hass data keys
DATA_ELGATO_CLIENT = "elgato_client"
# Attributes
ATTR_IDENTIFIERS = "identifiers"
ATTR_MANUFACTURER = "manufacturer"
ATTR_MODEL = "model"
ATTR_ON = "on"
ATTR_SOFTWARE_VERSION = "sw_version"
ATTR_TEMPERATURE = "temperature"
CONF_SERIAL_NUMBER = "serial_number"