Browse Source

Adapt BME280 code for BMP280 sensor

fastled
Xose Pérez 6 years ago
parent
commit
86df1c892c
5 changed files with 69 additions and 62 deletions
  1. +1
    -1
      code/espurna/config/prototypes.h
  2. +11
    -11
      code/espurna/config/sensors.h
  3. +3
    -3
      code/espurna/sensor.ino
  4. +53
    -47
      code/espurna/sensors/BMX280Sensor.h
  5. +1
    -0
      code/espurna/sensors/BaseSensor.h

+ 1
- 1
code/espurna/config/prototypes.h View File

@ -85,7 +85,7 @@ template<typename T> bool idbSend(const char * topic, unsigned char id, T payloa
#if MHZ19_SUPPORT #if MHZ19_SUPPORT
#include <SoftwareSerial.h> #include <SoftwareSerial.h>
#endif #endif
#if BME280_SUPPORT
#if BMX280_SUPPORT
#include <SparkFunBME280.h> #include <SparkFunBME280.h>
#endif #endif


+ 11
- 11
code/espurna/config/sensors.h View File

@ -94,22 +94,22 @@
#endif #endif
//-------------------------------------------------------------------------------- //--------------------------------------------------------------------------------
// BME280
// Enable support by passing BME280_SUPPORT=1 build flag
// BMX280
// Enable support by passing BMX280_SUPPORT=1 build flag
//-------------------------------------------------------------------------------- //--------------------------------------------------------------------------------
#ifndef BME280_SUPPORT
#define BME280_SUPPORT 0
#ifndef BMX280_SUPPORT
#define BMX280_SUPPORT 0
#endif #endif
#ifndef BME280_ADDRESS
#define BME280_ADDRESS 0x76
#ifndef BMX280_ADDRESS
#define BMX280_ADDRESS 0x76
#endif #endif
#define BME280_MODE 1 // 1 for forced mode, 3 for normal mode
#define BME280_TEMPERATURE 1 // Oversampling for temperature (set to 0 to disable magnitude)
#define BME280_HUMIDITY 1 // Oversampling for humidity (set to 0 to disable magnitude)
#define BME280_PRESSURE 1 // Oversampling for pressure (set to 0 to disable magnitude)
#define BMX280_MODE 1 // 1 for forced mode, 3 for normal mode
#define BMX280_TEMPERATURE 1 // Oversampling for temperature (set to 0 to disable magnitude)
#define BMX280_HUMIDITY 1 // Oversampling for humidity (set to 0 to disable magnitude, only for BME280)
#define BMX280_PRESSURE 1 // Oversampling for pressure (set to 0 to disable magnitude)
//-------------------------------------------------------------------------------- //--------------------------------------------------------------------------------
// DS18B20 temperature sensor // DS18B20 temperature sensor
@ -285,7 +285,7 @@
//-------------------------------------------------------------------------------- //--------------------------------------------------------------------------------
#ifndef MHZ19_SUPPORT #ifndef MHZ19_SUPPORT
#define MHZ19_SUPPORT 1
#define MHZ19_SUPPORT 0
#endif #endif
#define MHZ19_RX_PIN 13 #define MHZ19_RX_PIN 13


+ 3
- 3
code/espurna/sensor.ino View File

@ -250,9 +250,9 @@ void sensorInit() {
sensorRegister(new SI7021Sensor(SI7021_ADDRESS)); sensorRegister(new SI7021Sensor(SI7021_ADDRESS));
#endif #endif
#if BME280_SUPPORT
#include "sensors/BME280Sensor.h"
sensorRegister(new BME280Sensor(BME280_ADDRESS));
#if BMX280_SUPPORT
#include "sensors/BMX280Sensor.h"
sensorRegister(new BMX280Sensor(BMX280_ADDRESS));
#endif #endif
#if ANALOG_SUPPORT #if ANALOG_SUPPORT


code/espurna/sensors/BME280Sensor.h → code/espurna/sensors/BMX280Sensor.h View File

@ -1,5 +1,5 @@
// ----------------------------------------------------------------------------- // -----------------------------------------------------------------------------
// BME280 Sensor
// BMX280 Sensor
// ----------------------------------------------------------------------------- // -----------------------------------------------------------------------------
#pragma once #pragma once
@ -8,59 +8,59 @@
#include "BaseSensor.h" #include "BaseSensor.h"
#include <SparkFunBME280.h> #include <SparkFunBME280.h>
#define BME280_ERROR_UNKNOW_CHIP -1
#define BMX280_CHIP_BMP280 0x58
#define BMX280_CHIP_BME280 0x60
class BME280Sensor : public BaseSensor {
class BMX280Sensor : public BaseSensor {
public: public:
BME280Sensor(unsigned char address = BME280_ADDRESS): BaseSensor() {
BMX280Sensor(unsigned char address = BMX280_ADDRESS): BaseSensor() {
// Cache // Cache
_address = address; _address = address;
_measurement_delay = bmeMeasurementTime(); _measurement_delay = bmeMeasurementTime();
#if BME280_TEMPERATURE > 0
++_count;
#endif
#if BME280_HUMIDITY > 0
++_count;
#endif
#if BME280_PRESSURE > 0
++_count;
#endif
// Init // Init
bme = new BME280(); bme = new BME280();
bme->settings.commInterface = I2C_MODE; bme->settings.commInterface = I2C_MODE;
bme->settings.I2CAddress = _address; bme->settings.I2CAddress = _address;
bme->settings.runMode = BME280_MODE;
bme->settings.runMode = BMX280_MODE;
bme->settings.tStandby = 0; bme->settings.tStandby = 0;
bme->settings.filter = 0; bme->settings.filter = 0;
bme->settings.tempOverSample = BME280_TEMPERATURE;
bme->settings.pressOverSample = BME280_PRESSURE;
bme->settings.humidOverSample = BME280_HUMIDITY;
bme->settings.tempOverSample = BMX280_TEMPERATURE;
bme->settings.pressOverSample = BMX280_PRESSURE;
bme->settings.humidOverSample = BMX280_HUMIDITY;
// Fix when not measuring temperature, t_fine should have a sensible value // Fix when not measuring temperature, t_fine should have a sensible value
if (BME280_TEMPERATURE == 0) bme->t_fine = 100000; // aprox 20ºC
if (BMX280_TEMPERATURE == 0) bme->t_fine = 100000; // aprox 20ºC
// Make sure sensor had enough time to turn on. BME280 requires 2ms to start up
// Make sure sensor had enough time to turn on. BMX280 requires 2ms to start up
delay(10); delay(10);
// Check sensor correctly initialized // Check sensor correctly initialized
unsigned char response = bme->begin();
if (response == 0x60) {
_ready = true;
} else {
_error = BME280_ERROR_UNKNOW_CHIP;
_chip = bme->begin();
if ((_chip != BMX280_CHIP_BME280) && (_chip != BMX280_CHIP_BMP280)) {
_chip = 0;
_error = SENSOR_ERROR_UNKNOWN_ID;
} }
#if BMX280_TEMPERATURE > 0
++_count;
#endif
#if BMX280_PRESSURE > 0
++_count;
#endif
#if BMX280_HUMIDITY > 0
if (_chip == BMX280_CHIP_BME280) ++_count;
#endif
} }
// Descriptive name of the sensor // Descriptive name of the sensor
String name() { String name() {
char buffer[20]; char buffer[20];
snprintf(buffer, sizeof(buffer), "BME280 @ I2C (0x%02X)", _address);
snprintf(buffer, sizeof(buffer), "%s @ I2C (0x%02X)", _chip == BMX280_CHIP_BME280 ? "BME280" : "BMP280", _address);
return String(buffer); return String(buffer);
} }
@ -74,14 +74,16 @@ class BME280Sensor : public BaseSensor {
if (index < _count) { if (index < _count) {
_error = SENSOR_ERROR_OK; _error = SENSOR_ERROR_OK;
unsigned char i = 0; unsigned char i = 0;
#if BME280_TEMPERATURE > 0
#if BMX280_TEMPERATURE > 0
if (index == i++) return MAGNITUDE_TEMPERATURE; if (index == i++) return MAGNITUDE_TEMPERATURE;
#endif #endif
#if BME280_HUMIDITY > 0
if (index == i++) return MAGNITUDE_HUMIDITY;
#if BMX280_PRESSURE > 0
if (index == i++) return MAGNITUDE_PRESSURE;
#endif #endif
#if BME280_PRESSURE > 0
if (index == i) return MAGNITUDE_PRESSURE;
#if BMX280_HUMIDITY > 0
if (_chip == BMX280_CHIP_BME280) {
if (index == i) return MAGNITUDE_HUMIDITY;
}
#endif #endif
} }
_error = SENSOR_ERROR_OUT_OF_RANGE; _error = SENSOR_ERROR_OUT_OF_RANGE;
@ -91,12 +93,12 @@ class BME280Sensor : public BaseSensor {
// Pre-read hook (usually to populate registers with up-to-date data) // Pre-read hook (usually to populate registers with up-to-date data)
virtual void pre() { virtual void pre() {
if (!_ready) {
_error = BME280_ERROR_UNKNOW_CHIP;
if (_chip == 0) {
_error = SENSOR_ERROR_UNKNOWN_ID;
return; return;
} }
#if BME280_MODE == 1
#if BMX280_MODE == 1
bmeForceRead(); bmeForceRead();
#endif #endif
@ -108,14 +110,16 @@ class BME280Sensor : public BaseSensor {
if (index < _count) { if (index < _count) {
_error = SENSOR_ERROR_OK; _error = SENSOR_ERROR_OK;
unsigned char i = 0; unsigned char i = 0;
#if BME280_TEMPERATURE > 0
#if BMX280_TEMPERATURE > 0
if (index == i++) return bme->readTempC(); if (index == i++) return bme->readTempC();
#endif #endif
#if BME280_HUMIDITY > 0
if (index == i++) return bme->readFloatHumidity();
#if BMX280_PRESSURE > 0
if (index == i++) return bme->readFloatPressure() / 100;
#endif #endif
#if BME280_PRESSURE > 0
if (index == i) return bme->readFloatPressure() / 100;
#if BMX280_HUMIDITY > 0
if (_chip == BMX280_CHIP_BME280) {
if (index == i) return bme->readFloatHumidity();
}
#endif #endif
} }
_error = SENSOR_ERROR_OUT_OF_RANGE; _error = SENSOR_ERROR_OUT_OF_RANGE;
@ -126,7 +130,7 @@ class BME280Sensor : public BaseSensor {
unsigned long bmeMeasurementTime() { unsigned long bmeMeasurementTime() {
// Measurement Time (as per BME280 datasheet section 9.1)
// Measurement Time (as per BMX280 datasheet section 9.1)
// T_max(ms) = 1.25 // T_max(ms) = 1.25
// + (2.3 * T_oversampling) // + (2.3 * T_oversampling)
// + (2.3 * P_oversampling + 0.575) // + (2.3 * P_oversampling + 0.575)
@ -134,14 +138,16 @@ class BME280Sensor : public BaseSensor {
// ~ 9.3ms for current settings // ~ 9.3ms for current settings
double t = 1.25; double t = 1.25;
#if BME280_TEMPERATURE > 0
t += (2.3 * BME280_TEMPERATURE);
#if BMX280_TEMPERATURE > 0
t += (2.3 * BMX280_TEMPERATURE);
#endif #endif
#if BME280_HUMIDITY > 0
t += (2.4 * BME280_HUMIDITY + 0.575);
#if BMX280_PRESSURE > 0
t += (2.3 * BMX280_PRESSURE + 0.575);
#endif #endif
#if BME280_PRESSURE > 0
t += (2.3 * BME280_PRESSURE + 0.575);
#if BMX280_HUMIDITY > 0
if (_chip == BMX280_CHIP_BME280) {
t += (2.4 * BMX280_HUMIDITY + 0.575);
}
#endif #endif
return round(t + 1); // round up return round(t + 1); // round up
@ -163,8 +169,8 @@ class BME280Sensor : public BaseSensor {
// --------------------------------------------------------------------- // ---------------------------------------------------------------------
BME280 * bme; BME280 * bme;
unsigned char _chip;
unsigned char _address; unsigned char _address;
unsigned long _measurement_delay; unsigned long _measurement_delay;
bool _ready = false;
}; };

+ 1
- 0
code/espurna/sensors/BaseSensor.h View File

@ -41,6 +41,7 @@ typedef enum magnitude_t {
#define SENSOR_ERROR_OUT_OF_RANGE 1 // Result out of sensor range #define SENSOR_ERROR_OUT_OF_RANGE 1 // Result out of sensor range
#define SENSOR_ERROR_WARM_UP 2 // Sensor is warming-up #define SENSOR_ERROR_WARM_UP 2 // Sensor is warming-up
#define SENSOR_ERROR_TIMEOUT 3 // Response from sensor timed out #define SENSOR_ERROR_TIMEOUT 3 // Response from sensor timed out
#define SENSOR_ERROR_UNKNOWN_ID 4 // Sensor did not report a known ID
class BaseSensor { class BaseSensor {


Loading…
Cancel
Save