🐛 Fixes barometer

This commit is contained in:
Rune Harlyk
2025-11-04 20:03:07 +01:00
parent 67c5936399
commit 06d457f4e5
2 changed files with 14 additions and 18 deletions
+1 -1
View File
@@ -101,7 +101,7 @@ bool Peripherals::readBMP() {
bool updated = false;
#if FT_ENABLED(USE_BMP180)
beginTransaction();
updated = _bmp.readBarometer();
updated = _bmp.update();
endTransaction();
#endif
return updated;