diff options
| author | Luiz Gustavo Monteiro <luizgu_mreis@hotmail.com> | 2025-10-28 20:25:36 -0300 |
|---|---|---|
| committer | Luiz Gustavo Monteiro <luizgu_mreis@hotmail.com> | 2025-10-28 20:25:36 -0300 |
| commit | ba527291e59f1c4cc28b68e4fe119c44a95ab3f6 (patch) | |
| tree | 13c004df31deb7933dc84db818143c459fc87e81 /esp/src/bmp280.cpp | |
| parent | 6fed254c8033bf4c67b65328474df6807c3b7eb8 (diff) | |
| parent | 7ccab61c22fafb3bb9fa5470ff8cb46217111fe4 (diff) | |
Merge branch 'master' of https://github.com/Simplesmente-O-Grupo/iot-monitoring
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 new file mode 100644 index 0000000..0ba749a --- /dev/null +++ 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; +} |
