mirror of
https://github.com/timmbogner/Farm-Data-Relay-System
synced 2024-11-10 07:10:42 +00:00
28 lines
638 B
C++
28 lines
638 B
C++
// FARM DATA RELAY SYSTEM
|
|
//
|
|
// BMP280 SENSOR MODULE
|
|
//
|
|
// Developed by Timm Bogner (bogner1@gmail.com) for Sola Gratia Farm in Urbana, Illinois, USA.
|
|
// Connect sensor SDA and SCL pins to those of the ESP.
|
|
|
|
#include <Adafruit_BMP280.h>
|
|
#include "fdrs_sensor.h"
|
|
|
|
Adafruit_BMP280 bmp;
|
|
|
|
void setup() {
|
|
//Serial.begin(115200);
|
|
beginFDRS();
|
|
while (!bmp.begin(0x76)) {
|
|
//Serial.println("BMP not initializing!");
|
|
delay(10);
|
|
}
|
|
}
|
|
|
|
void loop() {
|
|
loadFDRS(bmp.readTemperature(), TEMP_T);
|
|
loadFDRS(bmp.readPressure() / 100.0F, PRESSURE_T);
|
|
sendFDRS();
|
|
sleepFDRS(60); //Sleep time in seconds
|
|
}
|