Skip to content

Commit 1150c44

Browse files
committed
Removed a few decimals from pressure value.
1 parent dcb0bab commit 1150c44

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libraries/MySensors/examples/PressureSensor/PressureSensor.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ void setup() {
4444
}
4545

4646
void loop() {
47-
float pressure = bmp.readPressure();
47+
float pressure = bmp.readPressure()/100;
4848
float temperature = bmp.readTemperature();
4949

5050
if (!metric) {

0 commit comments

Comments
 (0)