1
0
mirror of https://github.com/home-assistant/core.git synced 2026-07-05 21:55:36 +01:00
Files
core/homeassistant/components/kiosker/const.py
T
2026-06-08 15:42:34 +02:00

24 lines
530 B
Python

"""Constants for the Kiosker integration."""
DOMAIN = "kiosker"
# Default values
PORT = 8081
POLL_INTERVAL = 15
DEFAULT_SSL = False
DEFAULT_SSL_VERIFY = False
REFRESH_DELAY = 0.5
# Service attribute keys
ATTR_URL = "url"
ATTR_VISIBLE = "visible"
ATTR_TEXT = "text"
ATTR_BACKGROUND = "background"
ATTR_FOREGROUND = "foreground"
ATTR_EXPIRE = "expire"
ATTR_DISMISSIBLE = "dismissible"
ATTR_BUTTON_BACKGROUND = "button_background"
ATTR_BUTTON_FOREGROUND = "button_foreground"
ATTR_BUTTON_TEXT = "button_text"
ATTR_SOUND = "sound"