mirror of
https://github.com/home-assistant/core.git
synced 2026-08-09 14:53:57 +01:00
14 lines
257 B
Python
14 lines
257 B
Python
"""The Philips TV constants."""
|
|
|
|
DOMAIN = "philips_js"
|
|
CONF_SYSTEM = "system"
|
|
CONF_ALLOW_NOTIFY = "allow_notify"
|
|
|
|
CONST_APP_ID = "homeassistant.io"
|
|
CONST_APP_NAME = "Home Assistant"
|
|
|
|
TV_STATE_OFF = "Off"
|
|
TV_STATE_ON = "On"
|
|
|
|
TRIGGER_TYPE_TURN_ON = "turn_on"
|