Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ void loop() {
/*
* lastH() and lastT() will return cached values aquired during the last update
* rel. Humidity is returned in percent, multiplied by 10 (50.4% would be 504)
* Temperature is returned in C, multiplied by 10 (21.5C would be 215)
* Temperature is returned in °C, multiplied by 10 (21.5°C would be 215)
*/
Serial.printf("RH: %i, T: %i \r\n", dht.lastH(), dht.lastT());
}
else {
Serial.println("Failed to read from sensor.");
}
}
}