Put BMP and BME back in the right sensors

This commit is contained in:
Jonathan Bennett 2025-04-25 19:49:35 -05:00
parent fe6be82bd7
commit 32554e5b5b

View File

@ -33,7 +33,7 @@ NullSensor aht10Sensor;
#endif
#if __has_include(<Adafruit_BME280.h>)
#include "Sensor/BME280Sensor.h"
BMP280Sensor bmp280Sensor;
BME280Sensor bme280Sensor;
#else
NullSensor bmp280Sensor;
#endif
@ -47,7 +47,7 @@ NullSensor bmp085Sensor;
#if __has_include(<Adafruit_BMP280.h>)
#include "Sensor/BMP280Sensor.h"
BME280Sensor bme280Sensor;
BMP280Sensor bmp280Sensor;
#else
NullSensor bme280Sensor;
#endif