File tree 1 file changed +2
-2
lines changed
src/app/clusters/thermostat-server
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1720,13 +1720,13 @@ bool emberAfThermostatClusterSetpointRaiseLowerCallback(app::CommandHandler * co
1720
1720
{
1721
1721
DesiredCoolingSetpoint = static_cast <int16_t >(CoolingSetpoint + amount * 10 );
1722
1722
CoolLimit = static_cast <int16_t >(DesiredCoolingSetpoint -
1723
- EnforceCoolingSetpointLimits (DesiredCoolingSetpoint, aEndpointId));
1723
+ EnforceCoolingSetpointLimits (DesiredCoolingSetpoint, aEndpointId));
1724
1724
{
1725
1725
if (OccupiedHeatingSetpoint::Get (aEndpointId, &HeatingSetpoint) == imcode::Success)
1726
1726
{
1727
1727
DesiredHeatingSetpoint = static_cast <int16_t >(HeatingSetpoint + amount * 10 );
1728
1728
HeatLimit = static_cast <int16_t >(DesiredHeatingSetpoint -
1729
- EnforceHeatingSetpointLimits (DesiredHeatingSetpoint, aEndpointId));
1729
+ EnforceHeatingSetpointLimits (DesiredHeatingSetpoint, aEndpointId));
1730
1730
{
1731
1731
if (CoolLimit != 0 || HeatLimit != 0 )
1732
1732
{
You can’t perform that action at this time.
0 commit comments