File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Filter options
libraries/Matter/src/MatterEndpoints Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Original file line number Diff line number Diff line change @@ -169,7 +169,7 @@ bool MatterThermostat::begin(ControlSequenceOfOperation_t _controlSequence, Ther
169
169
return false ;
170
170
}
171
171
172
- const int16_t _localTemperature = 2000 ; // initial value to be automaticaly changed by the Matter Thermostat
172
+ const int16_t _localTemperature = 2000 ; // initial value to be automatically changed by the Matter Thermostat
173
173
const int16_t _coolingSetpointTemperature = 2400 ; // 24C cooling setpoint
174
174
const int16_t _heatingSetpointTemperature = 1600 ; // 16C heating setpoint
175
175
const ThermostatMode_t _currentMode = THERMOSTAT_MODE_OFF;
@@ -306,7 +306,7 @@ bool MatterThermostat::setCoolingHeatingSetpoints(double _setpointHeatingTempera
306
306
bool settingCooling = _setpointCollingTemperature != (float )0xffff ;
307
307
bool settingHeating = _setpointHeatingTemperature != (float )0xffff ;
308
308
if (!settingCooling && !settingHeating) {
309
- log_e (" Invalid Setpoints values. Set correctly at leat one of them in Celsius." );
309
+ log_e (" Invalid Setpoints values. Set correctly at least one of them in Celsius." );
310
310
return false ;
311
311
}
312
312
int16_t _rawHeatValue = static_cast <int16_t >(_setpointHeatingTemperature * 100 .0f );
You can’t perform that action at this time.
0 commit comments