Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """LiteJet constants."""
2 
3 from homeassistant.const import Platform
4 
5 DOMAIN = "litejet"
6 
7 CONF_EXCLUDE_NAMES = "exclude_names"
8 CONF_INCLUDE_SWITCHES = "include_switches"
9 
10 PLATFORMS = [Platform.LIGHT, Platform.SCENE, Platform.SWITCH]
11 
12 CONF_DEFAULT_TRANSITION = "default_transition"