mirror of
https://github.com/alexandrebobkov/ESP-Nodes.git
synced 2024-10-05 20:47:50 -04:00
.
This commit is contained in:
parent
6ca4cc8583
commit
022fb8755a
@ -3,16 +3,15 @@
|
|||||||
|
|
||||||
#include <WiFiClientSecure.h>
|
#include <WiFiClientSecure.h>
|
||||||
|
|
||||||
#define BMP280
|
//#define BMP280
|
||||||
//#define BME280
|
#define BME280
|
||||||
|
|
||||||
#ifdef BME280
|
#ifdef BME280
|
||||||
#include <Adafruit_BME280.h>
|
#include <Adafruit_BME280.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef BMP280
|
#ifdef BMP280
|
||||||
//#include <Adafruit_BMP280.h>
|
#include <Adafruit_BMP280.h>
|
||||||
#include <Adafruit_BME280.h>
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
struct {
|
struct {
|
||||||
@ -52,11 +51,11 @@ void setup() {
|
|||||||
sensors_values.humidity = bme.readHumidity();
|
sensors_values.humidity = bme.readHumidity();
|
||||||
sensors_values.pressure = bme.readPressure() / 100.0F;
|
sensors_values.pressure = bme.readPressure() / 100.0F;
|
||||||
sensors_values.temperature = bme.readTemperature();
|
sensors_values.temperature = bme.readTemperature();
|
||||||
|
Serial.println("All values were measured.");
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
#ifdef BMP280
|
#ifdef BMP280
|
||||||
//Adafruit_BMP280 bmp;
|
Adafruit_BMP280 bmp;
|
||||||
Adafruit_BME280 bmp;
|
|
||||||
unsigned status = bmp.begin(0x76);
|
unsigned status = bmp.begin(0x76);
|
||||||
if (!status) {
|
if (!status) {
|
||||||
Serial.println("Could not find a valid BME/BMP280 sensor, check wiring!");
|
Serial.println("Could not find a valid BME/BMP280 sensor, check wiring!");
|
||||||
|
Loading…
Reference in New Issue
Block a user