We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72a582b commit b00c4acCopy full SHA for b00c4ac
libraries/Matter/examples/MatterThermostat/MatterThermostat.ino
@@ -205,7 +205,7 @@ void loop() {
205
if (SimulatedThermostat.getMode() == MatterThermostat::THERMOSTAT_MODE_COOL) {
206
isCooling = true;
207
isHeating = false; // keep the heating system off as it is in cooling mode
208
- // when the cooling system is in COOLING mode, it will be turned off as soon as the local temperature is bellow the setpoint
+ // when the cooling system is in COOLING mode, it will be turned off as soon as the local temperature is below the setpoint
209
if (localTemperature < SimulatedThermostat.getCoolingSetpoint()) {
210
// turn off the cooling system
211
isCooling = false;
0 commit comments