Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Const for Velbus."""
2 
3 from typing import Final
4 
6  PRESET_AWAY,
7  PRESET_COMFORT,
8  PRESET_ECO,
9  PRESET_HOME,
10 )
11 
12 DOMAIN: Final = "velbus"
13 
14 CONF_INTERFACE: Final = "interface"
15 CONF_MEMO_TEXT: Final = "memo_text"
16 
17 SERVICE_SCAN: Final = "scan"
18 SERVICE_SYNC: Final = "sync_clock"
19 SERVICE_SET_MEMO_TEXT: Final = "set_memo_text"
20 SERVICE_CLEAR_CACHE: Final = "clear_cache"
21 
22 PRESET_MODES: Final = {
23  PRESET_ECO: "safe",
24  PRESET_AWAY: "night",
25  PRESET_HOME: "day",
26  PRESET_COMFORT: "comfort",
27 }