Bump plugwise to v0.35.3 (#105442)
This commit is contained in:
parent
fbfe434e8b
commit
3e3f9cf092
14 changed files with 53 additions and 25 deletions
|
@ -3,7 +3,7 @@ from __future__ import annotations
|
|||
|
||||
from datetime import timedelta
|
||||
import logging
|
||||
from typing import Final
|
||||
from typing import Final, Literal
|
||||
|
||||
from homeassistant.const import Platform
|
||||
|
||||
|
@ -36,6 +36,23 @@ ZEROCONF_MAP: Final[dict[str, str]] = {
|
|||
"stretch": "Stretch",
|
||||
}
|
||||
|
||||
NumberType = Literal[
|
||||
"maximum_boiler_temperature",
|
||||
"max_dhw_temperature",
|
||||
"temperature_offset",
|
||||
]
|
||||
|
||||
SelectType = Literal[
|
||||
"select_dhw_mode",
|
||||
"select_regulation_mode",
|
||||
"select_schedule",
|
||||
]
|
||||
SelectOptionsType = Literal[
|
||||
"dhw_modes",
|
||||
"regulation_modes",
|
||||
"available_schedules",
|
||||
]
|
||||
|
||||
# Default directives
|
||||
DEFAULT_MAX_TEMP: Final = 30
|
||||
DEFAULT_MIN_TEMP: Final = 4
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue