Skip to content

Commit

Permalink
Correct print log number format, fix #218
Browse files Browse the repository at this point in the history
  • Loading branch information
pnt325 committed Aug 25, 2024
1 parent 6c3259b commit d6766ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/OneOpenAir/OneOpenAir.ino
Original file line number Diff line number Diff line change
Expand Up @@ -1081,7 +1081,7 @@ static void updatePm(void) {
Serial.printf("[2] Relative Humidity: %d\r\n", measurements.hum_2);
Serial.printf("[2] Temperature compensated in C: %0.2f\r\n",
ag->pms5003t_1.temperatureCompensated(measurements.temp_2));
Serial.printf("[2] Relative Humidity compensated: %d\r\n",
Serial.printf("[2] Relative Humidity compensated: %0.2f\r\n",
ag->pms5003t_1.humidityCompensated(measurements.hum_2));
} else {
measurements.pm01_2 = utils::getInvalidPMS();
Expand Down

0 comments on commit d6766ef

Please sign in to comment.