Telemetry: Create BME280 sensor that can bu used across variants. Add to promicro.

This commit is contained in:
Normunds Gavars
2025-05-19 19:37:30 +03:00
parent 8a27743e43
commit 3cf78a952b
4 changed files with 65 additions and 0 deletions

View File

@@ -4,6 +4,7 @@
#include "INA3221Sensor.h"
#include "INA219Sensor.h"
#include "AHTX0Sensor.h"
#include "BME280Sensor.h"
#define NUM_SENSOR_SETTINGS 3
#define TELEM_INA3221_SETTING_CH1 "INA3221-1"
@@ -19,6 +20,7 @@ protected:
INA3221Sensor INA3221_sensor;
AHTX0Sensor AHTX0_sensor;
INA219Sensor INA219_sensor;
BME280Sensor BME280_sensor;
public:
EnvironmentSensorManager(){};
bool begin() override;