mirror of
https://github.com/Electric-Special/ha-core.git
synced 2026-03-21 03:03:17 +01:00
18 lines
473 B
Python
18 lines
473 B
Python
"""Constants for the Nintendo Switch parental controls integration."""
|
|
|
|
DOMAIN = "nintendo_parental_controls"
|
|
CONF_UPDATE_INTERVAL = "update_interval"
|
|
CONF_SESSION_TOKEN = "session_token"
|
|
|
|
BEDTIME_ALARM_MIN = "16:00"
|
|
BEDTIME_ALARM_MAX = "23:00"
|
|
BEDTIME_ALARM_DISABLE = "00:00"
|
|
|
|
BEDTIME_END_TIME_MIN = "05:00"
|
|
BEDTIME_END_TIME_MAX = "09:00"
|
|
|
|
APP_SETUP_URL = (
|
|
"https://www.nintendo.com/my/support/switch/parentalcontrols/app/setup.html"
|
|
)
|
|
ATTR_BONUS_TIME = "bonus_time"
|