Farm-Data-Relay-System/examples/Controller_examples/Irrigation/Irrigation.ino
2022-11-09 18:54:51 -06:00

102 lines
2.1 KiB
C++

// FARM DATA RELAY SYSTEM
//
// Irrigation Controller
//
// Developed by Timm Bogner (timmbogner@gmail.com) in Urbana, Illinois, USA.
//
//
#include "fdrs_sensor_config.h"
#include <fdrs_node.h>
#define CONTROL_1 101 //Address for controller 1
#define CONTROL_2 102 //Address for controller 2
#define CONTROL_3 103 //Address for controller 3
#define CONTROL_4 104 //Address for controller 4
#define COIL_1 12 //Coil Pin 1
#define COIL_2 13 //Coil Pin 2
#define COIL_3 14 //Coil Pin 3
#define COIL_4 5 //Coil Pin 4
int status_1 = 0;
int status_2 = 0;
int status_3 = 0;
int status_4 = 0;
bool newData = false;
void fdrs_recv_cb(DataReading theData) {
DBG(String(theData.id));
switch (theData.id) {
case CONTROL_1:
status_1 = (int)theData.d;
newData = true;
break;
case CONTROL_2:
status_2 = (int)theData.d;
newData = true;
break;
case CONTROL_3:
status_3 = (int)theData.d;
newData = true;
break;
case CONTROL_4:
status_4 = (int)theData.d;
newData = true;
break;
}
}
void updateCoils() {
if (status_1) {
digitalWrite(COIL_1, LOW);
} else {
digitalWrite(COIL_1, HIGH);
}
if (status_2) {
digitalWrite(COIL_2, LOW);
} else {
digitalWrite(COIL_2, HIGH);
}
if (status_3) {
digitalWrite(COIL_3, LOW);
} else {
digitalWrite(COIL_3, HIGH);
}
if (status_4) {
digitalWrite(COIL_4, LOW);
} else {
digitalWrite(COIL_4, HIGH);
}
}
void setup() {
beginFDRS();
if (addFDRS(1000, fdrs_recv_cb)) {
subscribeFDRS(CONTROL_1);
subscribeFDRS(CONTROL_2);
subscribeFDRS(CONTROL_3);
subscribeFDRS(CONTROL_4);
} else {
DBG("Not Connected");
}
pinMode(COIL_1, OUTPUT);
digitalWrite(COIL_1, HIGH);
pinMode(COIL_2, OUTPUT);
digitalWrite(COIL_2, HIGH);
pinMode(COIL_3, OUTPUT);
digitalWrite(COIL_3, HIGH);
pinMode(COIL_4, OUTPUT);
digitalWrite(COIL_4, HIGH);
DBG("FARM DATA RELAY SYSTEM :: Irrigation Module");
}
void loop()
{
if (newData) {
newData = false;
updateCoils();
}
}