|
|
|
#include "BME280.h"
|
|
|
|
|
|
|
|
#include <Wire.h>
|
|
|
|
#include <SPI.h>
|
|
|
|
#include <Adafruit_Sensor.h>
|
|
|
|
#include <Adafruit_BME280.h>
|
|
|
|
|
|
|
|
BME280::BME280() {
|
|
|
|
valid = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool BME280::begin(void) {
|
|
|
|
// SPI.begin(BME_SCK, BME_MISO, BME_MOSI, BME_CS);
|
|
|
|
pinMode(18, OUTPUT);
|
|
|
|
digitalWrite(18, HIGH); // disable LoRa_CS
|
|
|
|
pinMode(23, OUTPUT);
|
|
|
|
digitalWrite(23, HIGH); // enable bme280 CS
|
|
|
|
delay(50);
|
|
|
|
bme = new Adafruit_BME280(BME_CS, BME_MOSI, BME_MISO, BME_SCK); // software SPI
|
|
|
|
int retries = 0;
|
|
|
|
while (!(valid = bme->begin())) {
|
|
|
|
if (retries > 5) break;
|
|
|
|
retries++;
|
|
|
|
Serial.println("Could not find a valid BME280 sensor, check wiring!");
|
|
|
|
delay(500);
|
|
|
|
}
|
|
|
|
if (!valid) return false;
|
|
|
|
|
|
|
|
bme->setSampling(Adafruit_BME280::sensor_mode::MODE_NORMAL,
|
|
|
|
Adafruit_BME280::sensor_sampling::SAMPLING_X16,
|
|
|
|
Adafruit_BME280::sensor_sampling::SAMPLING_X16,
|
|
|
|
Adafruit_BME280::sensor_sampling::SAMPLING_X16,
|
|
|
|
Adafruit_BME280::sensor_filter::FILTER_OFF,
|
|
|
|
Adafruit_BME280::standby_duration::STANDBY_MS_250);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void BME280::sleep() {
|
|
|
|
bme->setSampling(Adafruit_BME280::sensor_mode::MODE_SLEEP,
|
|
|
|
Adafruit_BME280::sensor_sampling::SAMPLING_X16,
|
|
|
|
Adafruit_BME280::sensor_sampling::SAMPLING_X16,
|
|
|
|
Adafruit_BME280::sensor_sampling::SAMPLING_X16,
|
|
|
|
Adafruit_BME280::sensor_filter::FILTER_OFF,
|
|
|
|
Adafruit_BME280::standby_duration::STANDBY_MS_1000);
|
|
|
|
}
|
|
|
|
|
|
|
|
void BME280::init() {
|
|
|
|
bme->init();
|
|
|
|
}
|
|
|
|
|
|
|
|
void BME280::printValues() {
|
|
|
|
Serial.print("Temperature = ");
|
|
|
|
Serial.print(bme->readTemperature());
|
|
|
|
Serial.println(" *C");
|
|
|
|
|
|
|
|
Serial.print("Pressure = ");
|
|
|
|
|
|
|
|
Serial.print(bme->readPressure() / 100.0F);
|
|
|
|
Serial.println(" hPa");
|
|
|
|
|
|
|
|
Serial.print("Approx. Altitude = ");
|
|
|
|
Serial.print(bme->readAltitude(SEALEVELPRESSURE_HPA));
|
|
|
|
Serial.println(" m");
|
|
|
|
|
|
|
|
Serial.print("Humidity = ");
|
|
|
|
Serial.print(bme->readHumidity());
|
|
|
|
Serial.println(" %");
|
|
|
|
|
|
|
|
Serial.println();
|
|
|
|
}
|
|
|
|
|
|
|
|
float BME280::readTemperature(void) {
|
|
|
|
float temp = bme->readTemperature();
|
|
|
|
if (temp < -40 || temp > 85) valid = false;
|
|
|
|
else valid = true;
|
|
|
|
return temp;
|
|
|
|
}
|
|
|
|
float BME280::readPressure(void) {
|
|
|
|
float p = bme->readPressure() / 100.0F;
|
|
|
|
if (p < 300 || p > 1100) valid = false;
|
|
|
|
else valid = true;
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
float BME280::readHumidity(void) {
|
|
|
|
float h = bme->readHumidity();
|
|
|
|
if (h < 0 || h > 100) valid = false;
|
|
|
|
else valid = true;
|
|
|
|
return h;
|
|
|
|
}
|