diff options
| author | Gustavoeklund01 <eklundgu@gmail.com> | 2025-10-27 20:28:29 -0300 |
|---|---|---|
| committer | Gustavoeklund01 <eklundgu@gmail.com> | 2025-10-27 20:28:29 -0300 |
| commit | 7ccab61c22fafb3bb9fa5470ff8cb46217111fe4 (patch) | |
| tree | 65a629f9f99277358e3aefc19fc43a057e079dc2 /esp/src/bmp280.cpp | |
| parent | be7952f3585fe895a3309a19e14cd93f89c3ce1b (diff) | |
outros códigos
Diffstat (limited to 'esp/src/bmp280.cpp')
| -rw-r--r-- | esp/src/bmp280.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/esp/src/bmp280.cpp b/esp/src/bmp280.cpp index e69de29..0ba749a 100644 --- a/esp/src/bmp280.cpp +++ b/esp/src/bmp280.cpp @@ -0,0 +1,20 @@ +#include <Wire.h> +#include <Adafruit_BMP280.h> +#include "bmp280.h" + +Adafruit_BMP280 bmp; + +void setupBMP280() { + if (!bmp.begin(0x76)) { + Serial.println("BMP280 nao achado"); + while (1); + } +} + +float lerTemperaturaBMP280() { + return bmp.readTemperature(); +} + +float lerPressaoBMP280() { + return bmp.readPressure() / 100.0F; +} |
