Skip to content

Commit 4e0351e

Browse files
committed
remove degree
1 parent fc37d51 commit 4e0351e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Adafruit_LPS28.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ float Adafruit_LPS28::getTemperature() {
253253
int16_t raw_temperature = (int16_t)temp_out.read();
254254

255255
// Convert raw temperature to degrees Celsius
256-
float temperature_celsius = raw_temperature * 0.01; // 1 LSB = 0.01 °C
256+
float temperature_celsius = raw_temperature * 0.01; // 1 LSB = 0.01 deg C
257257

258258
return temperature_celsius;
259259
}

0 commit comments

Comments
 (0)