File tree 2 files changed +2
-2
lines changed
examples/MatterTemperatureSensor
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ MatterTemperatureSensor SimulatedTemperatureSensor;
31
31
const char *ssid = " your-ssid" ; // Change this to your WiFi SSID
32
32
const char *password = " your-password" ; // Change this to your WiFi password
33
33
34
- // Simulate a temperature sensor - add your prefered temperature sensor library code here
34
+ // Simulate a temperature sensor - add your preferred temperature sensor library code here
35
35
float getSimulatedTemperature () {
36
36
// The Endpoint implementation keeps an int16_t as internal value information,
37
37
// which stores data in 1/100th of any temperature unit
Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ bool MatterTemperatureSensor::setRawTemperature(int16_t _rawTemperature) {
91
91
}
92
92
rawTemperature = _rawTemperature;
93
93
}
94
- log_v (" Temperature Sensor set to %.02f Celcius Degrees" , (float )_rawTemperature / 100.00 );
94
+ log_v (" Temperature Sensor set to %.02f Degrees" , (float )_rawTemperature / 100.00 );
95
95
96
96
return true ;
97
97
}
You can’t perform that action at this time.
0 commit comments