core/homeassistant/components/litejet/const.py

12 lines
278 B
Python
Raw Normal View History

"""LiteJet constants."""
from homeassistant.const import Platform
DOMAIN = "litejet"
CONF_EXCLUDE_NAMES = "exclude_names"
CONF_INCLUDE_SWITCHES = "include_switches"
PLATFORMS = [Platform.LIGHT, Platform.SCENE, Platform.SWITCH]
2021-07-24 10:43:10 +00:00
CONF_DEFAULT_TRANSITION = "default_transition"