Add childprotection module (#1141)

When turned on, rotating the thermostat will not change the target
temperature.
This commit is contained in:
Teemu R.
2024-11-01 20:46:36 +01:00
committed by GitHub
parent 77b654a9aa
commit 0360107e3f
5 changed files with 102 additions and 1 deletions

View File

@@ -6,6 +6,7 @@ from .autooff import AutoOff
from .batterysensor import BatterySensor
from .brightness import Brightness
from .childdevice import ChildDevice
from .childprotection import ChildProtection
from .cloud import Cloud
from .color import Color
from .colortemperature import ColorTemperature
@@ -40,6 +41,7 @@ __all__ = [
"HumiditySensor",
"TemperatureSensor",
"TemperatureControl",
"ChildProtection",
"ReportMode",
"AutoOff",
"Led",