Skip to content

Commit 14a2a0f

Browse files
committed
Added watchdog and refactored code a bit
1 parent e2772e7 commit 14a2a0f

File tree

2 files changed

+66
-33
lines changed

2 files changed

+66
-33
lines changed

smart_incubator/client_firmware/client_firmware.ino

+57-26
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,16 @@
44
//Global variables use 1,655 bytes (80%) of dynamic memory, leaving 393 bytes for local variables. Maximum is 2,048 bytes.
55

66
//define hardware connection and hard parameters
7-
#define VERSION 2.2
7+
#define VERSION 2.3
88
#define masterID 0
9-
#define myID 4
9+
#define myID 15
10+
11+
//still not implemented
12+
#define BUTTON_PIN 2 /// THIS IS ACTUALLY USED BY TEC DIR
13+
14+
//bicolor LED (center pin goes to cathode)
15+
#define GREEN_PIN 3
16+
#define RED_PIN 4
1017

1118
// pin for sensors
1219
#define optoresistor_PIN 15 //A1
@@ -18,16 +25,16 @@
1825
//#define HUM_PIN 9
1926

2027
//pin for PELTIER TEC
21-
#define PELTIER_PWM 6 // what is the frequency of pin 6? pin 9 has a pwm frequency of 490hz
22-
#define PELTIER_DIR 4
28+
#define PELTIER_PWM 5 // what is the frequency of pin 6? pin 9 has a pwm frequency of 490hz
29+
#define PELTIER_DIR 2
2330

2431
//define hardware and shields used
2532
#define USE_SENSIRION
2633
#define USE_RADIO
27-
//#define USE_TEC
34+
#define USE_TEC
2835
//#define USE_TEC_PWM
2936
//#define USE_SD 1 // we do not use SD on regular UNOs because a) we don't need it and b) it takes too much memory
30-
#define LOCAL_SERIAL
37+
//#define LOCAL_SERIAL
3138

3239
#define CMD 'C'
3340
#define REPORT 'R'
@@ -107,6 +114,9 @@
107114
// External descriptor of data structure
108115
#include "MyTypes.h"
109116

117+
//Experimenting with watchdog
118+
#include <avr/wdt.h>
119+
110120
//Initialising objects and variables
111121

112122
unsigned long counter = 0;
@@ -122,9 +132,9 @@ configuration cfg = {
122132
1, // cfg.dd_mode 0 = DD, 1 = LD, 2 = LL, 3 = DL
123133

124134
true, // cfg.send_report
125-
1, // cfg.report_delay in minutes
135+
5, // cfg.report_delay in minutes
126136

127-
25.0, // cfg.set_temp
137+
22.0, // cfg.set_temp
128138
65.0 // cfg.set_hum
129139
};
130140

@@ -144,12 +154,13 @@ int MIN_SENSOR_PAUSE = 5000; // to avoid self heating of the probe we don't read
144154
RF24 radio(RADIO_CE, RADIO_CS);
145155
RF24Network network(radio);
146156
RF24Mesh mesh(radio, network);
147-
#define MESH_RENEWAL_TIMEOUT 10000 // changing timeout from 60.000 ms to 15.000ms
157+
#define MESH_RENEWAL_TIMEOUT 5000 // changing timeout from 60.000 ms to 5.000ms
148158
#endif
149159

150160

151161
void setup()
152-
{
162+
{
163+
153164
Serial.begin(115200);
154165

155166
#if defined(LOCAL_SERIAL)
@@ -158,6 +169,7 @@ void setup()
158169

159170
pinMode(LED_PIN, OUTPUT);
160171
pinMode(optoresistor_PIN, INPUT);
172+
161173

162174
#if defined(USE_DHT)
163175
dht.setup(HT_PIN);
@@ -194,10 +206,6 @@ void setup()
194206

195207
//saveConfiguration(); // Enable this on first update only, then reupload
196208
setSyncProvider(RTC.get); // get the time from the RTC
197-
198-
//time_t artificial_time = 1464715350;
199-
//RTC.set(artificial_time);
200-
//setTime(artificial_time);
201209

202210
// Retrieves Lights ON/OFF timer values and last light status
203211
loadConfiguration();
@@ -208,6 +216,9 @@ void setup()
208216
pinMode(PELTIER_PWM, OUTPUT);
209217
pinMode(PELTIER_DIR, OUTPUT);
210218
#endif
219+
220+
wdt_enable(WDTO_8S);
221+
211222
}
212223

213224
#if defined(LOCAL_SERIAL)
@@ -293,6 +304,8 @@ void serial_setTemperature(){
293304
setTemperature(set_TEMP);
294305
}
295306

307+
308+
296309
void serial_setHumidity(){
297310
// set the current Humidity on node
298311
char *arg;
@@ -354,9 +367,22 @@ void printError(const char *command) {
354367

355368
#endif //LOCAL_SERIAL
356369

370+
bool lightIsON()
371+
{
372+
return CURRENT_LIGHT > 0;
373+
}
374+
375+
bool lightIsOFF()
376+
{
377+
return not lightIsON();
378+
}
379+
380+
357381
void loop()
358382
{
359383

384+
wdt_reset();
385+
360386
#if defined(USE_TEC)
361387
// we do this continously but the freshness of the getTemperature result is
362388
// controlled by the MIN_SENSOR_PAUSE variable
@@ -376,18 +402,18 @@ void loop()
376402
switch(cfg.dd_mode) {
377403

378404
case 0: //DD
379-
if ( CURRENT_LIGHT > 0 ) { LightsOFF(); }
405+
if ( lightIsON() ) { LightsOFF(); }
380406
break;
381407
case 1: //LD
382-
if (CURRENT_LIGHT == 0 && minute_of_the_day >= cfg.lights_on && minute_of_the_day < cfg.lights_off) { LightsON(); }
383-
if (CURRENT_LIGHT > 0 && minute_of_the_day >= cfg.lights_off) { LightsOFF(); }
408+
if (lightIsOFF() && minute_of_the_day >= cfg.lights_on && minute_of_the_day < cfg.lights_off) { LightsON(); }
409+
if (lightIsON() && minute_of_the_day >= cfg.lights_off) { LightsOFF(); }
384410
break;
385411
case 2: //LL
386-
if ( CURRENT_LIGHT == 0 ) { LightsON(); }
412+
if ( lightIsOFF() ) { LightsON(); }
387413
break;
388414
case 3: //DL
389-
if (CURRENT_LIGHT > 0 && minute_of_the_day >= cfg.lights_off && minute_of_the_day < cfg.lights_on) { LightsOFF(); }
390-
if (CURRENT_LIGHT == 0 && minute_of_the_day >= cfg.lights_on) { LightsON(); }
415+
if (lightIsON() && minute_of_the_day >= cfg.lights_off && minute_of_the_day < cfg.lights_on) { LightsOFF(); }
416+
if (lightIsOFF() && minute_of_the_day >= cfg.lights_on) { LightsON(); }
391417
break;
392418
default:
393419
// do nothing
@@ -437,7 +463,7 @@ void loop()
437463
fadeToLevel (rcvdPackage.set_light);
438464
break;
439465
case 'F':
440-
setInterval (rcvdPackage.set_light);
466+
setTransmissionInterval (rcvdPackage.set_light);
441467
break;
442468
case 'M':
443469
setLightMode (rcvdPackage.set_light);
@@ -467,7 +493,9 @@ void loop()
467493
} //endif network
468494
#endif // use radio
469495

496+
#if defined(LOCAL_SERIAL)
470497
sCmd.readSerial();
498+
#endif
471499

472500
} // end of loop
473501

@@ -524,7 +552,9 @@ void loadConfiguration()
524552
void saveConfiguration()
525553
{
526554
//saves values to EEPROM
527-
Serial.println("Saving configuration to memory");
555+
556+
Serial.println("==Saving:==");
557+
debug();
528558
EEPROM.write(0, 1);
529559
EEPROM.put(1, cfg);
530560
}
@@ -546,7 +576,7 @@ void setRTCTime(time_t time_rcvd)
546576
sendDataPackage(EVENT);
547577
}
548578

549-
void setInterval(byte interval)
579+
void setTransmissionInterval(byte interval)
550580
{
551581
(interval < 1) ? cfg.report_delay = 1 : cfg.report_delay = interval;
552582
cfg.send_report = ( cfg.report_delay > 0 );
@@ -672,15 +702,16 @@ void sendDataPackage(char header_type){
672702
dataPackage.set_light = CURRENT_LIGHT;
673703

674704
//light timer data
675-
dataPackage.lights_on = cfg.lights_on * 60.0; // in seconds
676-
dataPackage.lights_off = cfg.lights_off * 60.0; // in seconds
705+
dataPackage.lights_on = (cfg.lights_on * 60.0); // in seconds
706+
dataPackage.lights_off = (cfg.lights_off * 60.0); // in seconds
677707
dataPackage.dd_mode = cfg.dd_mode;
678708

709+
Serial.println("==Sending:==");
679710
debug();
680711

681712
#if defined(USE_RADIO)
682713
Serial.print(F("RF: "));
683-
if (!mesh.write( &dataPackage, 'R', sizeof(dataPackage), masterID )){
714+
if (!mesh.write( &dataPackage, header_type, sizeof(dataPackage), masterID )){
684715
Serial.println(F("FAIL"));
685716
} else { Serial.println("OK"); }
686717
#endif

smart_incubator/master_firmware/master_firmware.ino

+9-7
Original file line numberDiff line numberDiff line change
@@ -242,11 +242,11 @@ void setLightMode(){
242242
}
243243

244244
arg = sCmd.next();
245-
if ((arg != NULL) and (strcmp (arg,"DD") == 0)){ mode = 0; };
246-
if ((arg != NULL) and (strcmp (arg,"LD") == 0)){ mode = 1; };
247-
if ((arg != NULL) and (strcmp (arg,"LL") == 0)){ mode = 2; };
248-
if ((arg != NULL) and (strcmp (arg,"DL") == 0)){ mode = 3; };
249-
if ((arg != NULL) and (strcmp (arg,"00") == 0)){ mode = 4; };
245+
if ((arg != NULL) and (strcmp (arg,"DD") == 0) or (strcmp (arg,"0") == 0)){ mode = 0; };
246+
if ((arg != NULL) and (strcmp (arg,"LD") == 0) or (strcmp (arg,"1") == 0)){ mode = 1; };
247+
if ((arg != NULL) and (strcmp (arg,"LL") == 0) or (strcmp (arg,"2") == 0)){ mode = 2; };
248+
if ((arg != NULL) and (strcmp (arg,"DL") == 0) or (strcmp (arg,"3") == 0)){ mode = 3; };
249+
if ((arg != NULL) and (strcmp (arg,"00") == 0) or (strcmp (arg,"4") == 0)){ mode = 4; };
250250

251251
dataPackage.orig_nodeID = masterID;
252252
dataPackage.dest_nodeID = destID;
@@ -265,7 +265,7 @@ void setLightsONTimer(){
265265
// Changes the HH:MM for lights on - Called from serial port
266266
char *arg;
267267
int destID = 0;
268-
int lights_on = 0;
268+
time_t lights_on = 0;
269269

270270
arg = sCmd.next();
271271
if (arg != NULL) {
@@ -275,6 +275,7 @@ void setLightsONTimer(){
275275
arg = sCmd.next();
276276
if (arg != NULL) {
277277
lights_on = atol(arg);
278+
//this is indicated as number of seconds from unix time 0 e.g. 32400 for 9:00am
278279
}
279280

280281

@@ -294,7 +295,7 @@ void setLightsOFFTimer(){
294295
// Changes the HH:MM for lights off - called from serial port
295296
char *arg;
296297
int destID = 0;
297-
unsigned long lights_off = 0;
298+
time_t lights_off = 0;
298299

299300
arg = sCmd.next();
300301
if (arg != NULL) {
@@ -304,6 +305,7 @@ void setLightsOFFTimer(){
304305
arg = sCmd.next();
305306
if (arg != NULL) {
306307
lights_off = atol(arg);
308+
//this is indicated as number of seconds from unix time 0 e.g. 75600 for 9:00pm
307309
}
308310

309311
dataPackage.orig_nodeID = masterID;

0 commit comments

Comments
 (0)