Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update bme280test.ino
Degree C "°C" instead of "Asterisk".
  • Loading branch information
Marek N committed May 2, 2021
1 parent e8a7e29 commit b02ac31
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/bme280test/bme280test.ino
Expand Up @@ -71,7 +71,7 @@ void loop() {
void printValues() {
Serial.print("Temperature = ");
Serial.print(bme.readTemperature());
Serial.println(" *C");
Serial.println(" °C");

Serial.print("Pressure = ");

Expand All @@ -87,4 +87,4 @@ void printValues() {
Serial.println(" %");

Serial.println();
}
}

0 comments on commit b02ac31

Please sign in to comment.