Skip to content

Commit 6bc6247

Browse files
authored
Fix Schneider Electric thermostat number limits (#4132)
1 parent 07e835b commit 6bc6247

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

zhaquirks/schneiderelectric/thermostat.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -643,7 +643,7 @@ class AttributeDefs(CustomCluster.AttributeDefs):
643643
device_class=NumberDeviceClass.TEMPERATURE,
644644
unit=UnitOfTemperature.CELSIUS,
645645
min_value=0,
646-
max_value=12,
646+
max_value=1.2,
647647
multiplier=0.1,
648648
step=0.1,
649649
)
@@ -691,7 +691,7 @@ class AttributeDefs(CustomCluster.AttributeDefs):
691691
fallback_name="Boost amount",
692692
device_class=NumberDeviceClass.TEMPERATURE,
693693
unit=UnitOfTemperature.CELSIUS,
694-
min_value=0,
694+
min_value=0.5,
695695
max_value=10,
696696
multiplier=0.01,
697697
step=0.5,

0 commit comments

Comments
 (0)