1
0

Replace BMP280 with BME280: remove BMP280 files and implement BME280 initialization and reading functions

This commit is contained in:
Jose
2025-04-25 19:54:28 +02:00
parent 25382c3396
commit 0c09fcd913
7 changed files with 38 additions and 51 deletions

View File

@@ -0,0 +1,7 @@
#include <Wire.h>
#include <BME280I2C.h>
#define I2C_BMP280_ADDRESS 0x76
void BME280_Init();
bool BME280_Read(float &pressure, float &temperature, float &humidity);