Improve temperature controls (#872)

This improves the temperature control features to allow implementing
climate platform support for homeassistant.

Also adds frostprotection module, which is also used to turn
the thermostat on and off.
This commit is contained in:
Teemu R
2024-05-02 15:05:26 +02:00
committed by GitHub
parent 28d41092e5
commit 9dcd8ec91b
6 changed files with 252 additions and 3 deletions

View File

@@ -12,6 +12,7 @@ from .devicemodule import DeviceModule
from .energymodule import EnergyModule
from .fanmodule import FanModule
from .firmware import Firmware
from .frostprotection import FrostProtectionModule
from .humidity import HumiditySensor
from .ledmodule import LedModule
from .lighttransitionmodule import LightTransitionModule
@@ -42,4 +43,5 @@ __all__ = [
"ColorTemperatureModule",
"ColorModule",
"WaterleakSensor",
"FrostProtectionModule",
]