Update bme280test.ino

Degree C "°C" instead of "Asterisk".
This commit is contained in:
Marek N 2021-05-02 23:46:03 +02:00 committed by GitHub
parent e8a7e29df2
commit b02ac31c4d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -71,7 +71,7 @@ void loop() {
void printValues() {
Serial.print("Temperature = ");
Serial.print(bme.readTemperature());
Serial.println(" *C");
Serial.println(" °C");
Serial.print("Pressure = ");
@ -87,4 +87,4 @@ void printValues() {
Serial.println(" %");
Serial.println();
}
}