hass-core/homeassistant/components/elgato/const.py
Franck Nijhof cc9589cff2 Add Elgato Key Light integration (#29592)
* Add Elgato Key Light integration

* Remove passing in of hass loop

* Tweaks a comment

* Tweaks a function name

* Ensure domain namespace in data exists in entry setup
2019-12-08 09:26:31 +01:00

17 lines
375 B
Python

"""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"