-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathArduinoUno_final.ino
235 lines (203 loc) · 6.59 KB
/
ArduinoUno_final.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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
/////////////////////////////
const int MOISTURE_PRAG =10;
const int SOL_USCAT = 300 + MOISTURE_PRAG;
const int SOL_UMED = 700 + MOISTURE_PRAG;
long previousMillis_moisture = 0;
long interval_moisture = 5000;
/////////////////////////////
const int releuOutput = 9;
/////////////////////////////
byte sensorInterrupt_water = 0; // 0 = digital pin 2
byte sensorPin_water = 2;
// The hall-effect flow sensor outputs approximately 4.5 pulses per second per
// litre/minute of flow.
float calibrationFactor = 4.5;
volatile byte pulseCount;
float flowRate;
unsigned int flowMilliLitres;
unsigned long totalMilliLitres;
unsigned long oldTime;
int light_sensor_2 = A3;
int light_reading_2;
long previousMillis_light_2 =0;
long interval_light_2=5000;
int temp_sensor= A2;
int temp_reading;
long previousMillis_temp=0;
long interval_temp =50000;
#include <Wire.h>
#include <LiquidCrystal_I2C.h>
#include <SPI.h>
#include <nRF24L01.h>
#include <RF24.h>
RF24 radio(7, 8); // CNS, CE
const byte address[6] = "00001";
LiquidCrystal_I2C lcd(0x27,16,2); // set the LCD address to 0x27 for a 16 chars and 2
void setup() {
Serial.begin(9600);
radio.begin();
radio.openWritingPipe(address);
radio.setPALevel(RF24_PA_MIN);
radio.stopListening();
lcd.init();
lcd.backlight();
pinMode(releuOutput, OUTPUT);
pinMode(sensorPin_water, INPUT);
digitalWrite(sensorPin_water, HIGH);
pulseCount = 0;
flowRate = 0.0;
flowMilliLitres = 0;
totalMilliLitres = 0;
oldTime = 0;
// The Hall-effect sensor is connected to pin 2 which uses interrupt 0.
// Configured to trigger on a FALLING state change (transition from HIGH
// state to LOW state)
attachInterrupt(sensorInterrupt_water, pulseCounter, FALLING);
}
void loop() {
unsigned long currentMillis = millis();
if(currentMillis - previousMillis_moisture>interval_moisture){
previousMillis_moisture=currentMillis;
int rain_sensor = analogRead(0);
Serial.println(rain_sensor);
//radio.write(&rain_sensor, sizeof(rain_sensor));
lcd.setCursor(0,0);
int moisture = analogRead(1);
moisture = map(moisture, 0, 1023, 1023, 0);
Serial.print("Moisture Sensor: ");
Serial.print(moisture);
Serial.println();
//char text[] = "Umiditate:";
// radio.write(&text, sizeof(text));
radio.write(&moisture, sizeof(moisture));
// radio.write(&rain_sensor, sizeof(rain_sensor));
if(rain_sensor<500){
Serial.println("Rain");
// radio.write(&rain_sensor, sizeof(rain_sensor));
lcd.setCursor(0,0);
lcd.print("Ploua!!!!");
digitalWrite(releuOutput, LOW);
lcd.setCursor(11,0);
lcd.print("R:OFF");
}
else if(moisture <= 100){
Serial.println("In aer");
lcd.setCursor(0,0);
lcd.print("In aer!!!");
//const char text_aer[] = "In aer!!!";
//radio.write(&text_aer, sizeof(text_aer));
digitalWrite(releuOutput, HIGH);
lcd.setCursor(11,0);
lcd.print("R: ON");
}
else if ((moisture <= SOL_USCAT)&&(moisture>100)) {
Serial.println("Uscat");
lcd.setCursor(0,0);
lcd.print("Uscat:");
lcd.print(moisture);
// radio.write(&moisture, int(moisture));
digitalWrite(releuOutput, HIGH);
lcd.setCursor(11,0);
lcd.print("R: ON");
} else if (moisture <= SOL_UMED) {
Serial.println("Umed: ");
lcd.setCursor(0,0);
lcd.print("Umed: ");
lcd.print(moisture);
digitalWrite(releuOutput, LOW);
lcd.setCursor(11,0);
lcd.print("R:OFF");
} else {
Serial.println("In Apa");
lcd.setCursor(0,0);
lcd.print("F.ud: ");
lcd.print(moisture);
digitalWrite(releuOutput, LOW);
lcd.setCursor(11,0);
lcd.print("R:OFF");
}
}
if(currentMillis - previousMillis_temp > interval_temp) {
previousMillis_temp = currentMillis;
temp_reading=analogRead (temp_sensor);
float mv = (temp_reading/1024.0)*5000;
float cel = mv/10;
float farh = (cel*9)/5 + 32;
Serial.print("TEMPRATURE = ");
Serial.print((int)(cel));
Serial.print("*C");
Serial.println();
//lcd.setCursor(9,1);
//lcd.print("Temp:");
//lcd.print((int)(cel));
int celsius=((int)(cel));
radio.write(&celsius, sizeof(celsius));
}
if((millis() - oldTime) > 1000){
detachInterrupt(sensorInterrupt_water);
flowRate = ((1000.0 / (millis() - oldTime)) * pulseCount) / calibrationFactor;
oldTime = millis();
flowMilliLitres = (flowRate / 60) * 1000;
totalMilliLitres += flowMilliLitres;
unsigned int frac;
// Print the flow rate for this second in litres / minute
Serial.print("Flow rate: ");
Serial.print(int(flowRate)); // Print the integer part of the variable
Serial.print("L/min");
lcd.setCursor(10,1);
lcd.print("Deb:");
lcd.print(int(flowRate));
Serial.print("\t"); // Print tab space
//lcd.setCursor(0,1);
//lcd.print("L/min:");
//lcd.print(int(flowRate));
// radio.write(&flowRate,(int)(flowRate));
// Print the cumulative total of litres flowed since starting
Serial.print("Output Liquid Quantity: ");
Serial.print(totalMilliLitres);
Serial.println("mL");
Serial.print("\t"); // Print tab space
Serial.print(totalMilliLitres/1000);
Serial.print("Litri:");
lcd.setCursor(0,1);
lcd.print("Litri:");
lcd.print(totalMilliLitres/1000);
//radio.write(&totalMilliLitres, sizeof(totalMilliLitres));
// Reset the pulse counter so we can start incrementing again
pulseCount = 0;
// Enable the interrupt again now that we've finished sending output
attachInterrupt(sensorInterrupt_water, pulseCounter, FALLING);
}
// Senzor de Lumina Photoresistor Port Analog 1
if(currentMillis - previousMillis_light_2 > interval_light_2) {
previousMillis_light_2 = currentMillis;
light_reading_2=analogRead (light_sensor_2);
// client.print(light_reading);
Serial.print("* pe portul analogic ");
Serial.print(3);
Serial.print(" s-a citit valoarea ");
Serial.print(light_reading_2);
Serial.println("<br />");
radio.write(&light_reading_2, sizeof(light_reading_2));
if (light_reading_2 < 10) {
Serial.println(" - Intuneric");
} else if (light_reading_2 < 200) {
Serial.println(" - Lumina Slaba");
} else if (light_reading_2 < 500) {
Serial.println(" - Lumina normala");
} else if (light_reading_2 < 800) {
Serial.println(" - Luminos");
} else {
Serial.println(" - Foarte Luminos");
}
//delay(2000);
}
}
/*
Interrupt Service Routine
*/
void pulseCounter()
{
// Increment the pulse counter
pulseCount++;
}