forked from sdhmtu/Automatic-Watering-System
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSDH_soil_sensor.ino
221 lines (201 loc) · 6.56 KB
/
SDH_soil_sensor.ino
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
/* Convert RF signal into bits (soil moisture sensor version)
#include <Arduino.h>
// ring buffer size has to be large enough to fit
// data between two successive sync signals
#define RING_BUFFER_SIZE 256
#define SYNC_LENGTH 9000
#define SEP_LENGTH 500
#define BIT1_LENGTH 4000
#define BIT0_LENGTH 2000
#define RELAYPIN 13
#define DATAPIN 2 // D2 is interrupt 1
#define BLUELED 18
//attachInterrupt(digitalPinToInterrupt(DATAPIN),ISR,change);
unsigned long timings[RING_BUFFER_SIZE];
unsigned int syncIndex1 = 0; // index of the first sync signal
unsigned int syncIndex2 = 0; // index of the second sync signal
bool received = false;
/*
struct Button {
const uint8_t PIN;
uint32_t numberKeyPresses;
bool pressed;
};
Button button1 = {3, 0, false}; //Check which pin the button is on.
void IRAM_ATTR isr(void* arg) {
Button* s = static_cast<Button*>(arg);
s->numberKeyPresses += 1;
s->pressed = true;
}
void IRAM_ATTR isr() {
button1.numberKeyPresses += 1;
button1.pressed = true;
}
*/
// detect if a sync signal is present
bool isSync(unsigned int idx) {
unsigned long t0 = timings[(idx+RING_BUFFER_SIZE-1) % RING_BUFFER_SIZE];
unsigned long t1 = timings[idx];
// on the temperature sensor, the sync signal
// is roughtly 9.0ms. Accounting for error
// it should be within 8.0ms and 10.0ms
if (t0>(SEP_LENGTH-100) && t0<(SEP_LENGTH+100) &&
t1>(SYNC_LENGTH-1000) && t1<(SYNC_LENGTH+1000) &&
digitalRead(DATAPIN) == HIGH) {
return true;
}
return false;
}
/* Interrupt 1 handler */
void handler() {
static unsigned long duration = 0;
static unsigned long lastTime = 0;
static unsigned int ringIndex = 0;
static unsigned int syncCount = 0;
// ignore if we haven't processed the previous received signal
if (received == true) {
return;
}
// calculating timing since last change
long time = micros();
duration = time - lastTime;
lastTime = time;
// store data in ring buffer
ringIndex = (ringIndex + 1) % RING_BUFFER_SIZE;
timings[ringIndex] = duration;
// detect sync signal
if (isSync(ringIndex)) {
syncCount ++;
// first time sync is seen, record buffer index
if (syncCount == 1) {
syncIndex1 = (ringIndex+1) % RING_BUFFER_SIZE;
}
else if (syncCount == 2) {
// second time sync is seen, start bit conversion
syncCount = 0;
syncIndex2 = (ringIndex+1) % RING_BUFFER_SIZE;
unsigned int changeCount = (syncIndex2 < syncIndex1) ? (syncIndex2+RING_BUFFER_SIZE - syncIndex1) : (syncIndex2 - syncIndex1);
// changeCount must be 66 -- 32 bits x 2 + 2 for sync
if (changeCount != 76) {
received = false;
syncIndex1 = 0;
syncIndex2 = 0;
}
else {
received = true;
}
}
}
}
void setup() {
pinMode(RELAYPIN,OUTPUT);
pinMode(BLUELED,OUTPUT);
digitalWrite(BLUELED,LOW);
digitalWrite(RELAYPIN,LOW);
Serial.begin(9600);
Serial.println("Started.");
pinMode(2, INPUT);
attachInterrupt(digitalPinToInterrupt(2), handler, CHANGE);
//pinMode(button1.PIN, INPUT_PULLUP);
//attachInterrupt(button1.PIN, isr, &button1, FALLING);
}
void loop() {
if (received == true) {
// disable interrupt to avoid new data corrupting the buffer
detachInterrupt(digitalPinToInterrupt(2));
/*
// loop over buffer data
for(unsigned int i=syncIndex1; i!=syncIndex2; i=(i+2)%RING_BUFFER_SIZE) {
unsigned long t0 = timings[i], t1 = timings[(i+1)%RING_BUFFER_SIZE];
if (t0>(SEP_LENGTH-100) && t0<(SEP_LENGTH+100)) {
if (t1>(BIT1_LENGTH-1000) && t1<(BIT1_LENGTH+1000)) {
Serial.print("1");
} else if (t1>(BIT0_LENGTH-1000) && t1<(BIT0_LENGTH+1000)) {
Serial.print("0");
} else {
Serial.print("SYNC"); // sync signal
}
} else {
Serial.print("?"); // undefined timing
}
}
Serial.println("");
*/
// loop over the lowest 12 bits of the middle 2 bytes
unsigned long temp = 0;
bool negative = false;
bool fail = false;
for(unsigned int i=(syncIndex1+24)%RING_BUFFER_SIZE; i!=(syncIndex1+48)%RING_BUFFER_SIZE; i=(i+2)%RING_BUFFER_SIZE) {
unsigned long t0 = timings[i], t1 = timings[(i+1)%RING_BUFFER_SIZE];
if (t0>(SEP_LENGTH-100) && t0<(SEP_LENGTH+100)) {
if (t1>(BIT1_LENGTH-1000) && t1<(BIT1_LENGTH+1000)) {
if(i == (syncIndex1+24)%RING_BUFFER_SIZE) negative = true;
temp = (temp << 1) + 1;
}
else if (t1>(BIT0_LENGTH-1000) && t1<(BIT0_LENGTH+1000)) {
temp = (temp << 1) + 0;
}
else {
fail = true;
}
}
else {
fail = true;
}
}
byte humidity;
for(unsigned int i =(syncIndex1+48)%RING_BUFFER_SIZE; i != (syncIndex1+64)%RING_BUFFER_SIZE; i=(i+2)%RING_BUFFER_SIZE){
unsigned long t0 = timings[i], t1 = timings[(i+1)%RING_BUFFER_SIZE];
if (t0>(SEP_LENGTH-100) && t0<(SEP_LENGTH+100)) {
if (t1>(BIT1_LENGTH-1000) && t1<(BIT1_LENGTH+1000)) {
if(i == (syncIndex1+24)%RING_BUFFER_SIZE) negative = true;
humidity = (humidity << 1) + 1;
}
else if (t1>(BIT0_LENGTH-1000) && t1<(BIT0_LENGTH+1000)) {
humidity = (humidity << 1) + 0;
}
else {
fail = true;
}
}
else {
fail = true;
}
}
if (!fail) {
if (negative) {
temp = 4096 - temp;
Serial.print("-");
}
Serial.print((temp+5)/10); // round to the nearest integer
Serial.write(176); // degree symbol
Serial.print("C/");
Serial.print((temp+5)*9/50+32); // convert to F
Serial.write(176); // degree symbol
Serial.println("F");
Serial.print("Humidity value: ");
Serial.println(humidity);
} else {
Serial.println("Decoding error.");
}
// delay for 1 second to avoid repetitions
delay(1000);
received = false;
syncIndex1 = 0;
syncIndex2 = 0;
//Inserted code here
if (humidity >= 30) {//humidity in percent? Or 0-255?
digitalWrite(RELAYPIN, 0);//Off
digitalWrite(BLUELED,LOW);//LED ON
}
else {
digitalWrite(RELAYPIN, 1);
digitalWrite(BLUELED,HIGH);//off
delay(30000);//Delay for 30 seconds
digitalWrite(RELAYPIN,0);
}
// re-enable interrupt
//attachInterrupt(1, handler, CHANGE);
attachInterrupt(digitalPinToInterrupt(2), handler, CHANGE);
}
}