mirror of
https://github.com/home-assistant/core.git
synced 2025-04-28 11:17:53 +00:00
12 lines
278 B
Python
12 lines
278 B
Python
"""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]
|
|
|
|
CONF_DEFAULT_TRANSITION = "default_transition"
|