-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCodigo_de_riego_automatico.ino
191 lines (169 loc) · 5.05 KB
/
Codigo_de_riego_automatico.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
#include <SPI.h>
#include <SD.h>
#include <Wire.h>
#include <TimeLib.h>
#include <DS1307RTC.h>
int Rele1A = 2;
int Rele2A = 4;
int detectorDeHumedadA = A0;
int contadorAuxiliar = 0;
long int tiempoDetectorA = 0;
long int tiempoComprobado = 0;
long int ultimoRiegoA = 0;
int resultadoA = 0;
bool regarA = false;
bool archivoAbierto = false;
bool comprobado = false;
bool primerGuardadoDatos = true;
const int dry = 584;
const int wet = 240;
File myFile;
void print2digits(int number) {
if (number >= 0 && number < 10) {
myFile.print('0');
}
myFile.print(number);
}
void activarRiego(int pinAlimentarRele, int pinActivarRele, int tiempoRiego){
digitalWrite(pinActivarRele, LOW);
digitalWrite(pinAlimentarRele, HIGH);
delay (tiempoRiego);
digitalWrite(pinActivarRele, HIGH);
digitalWrite(pinAlimentarRele, LOW);
}
int humedad(int sensor){
int vectorLocal[16];
int resultadoLocal = 0;
int contador = 0;
long int sumaLocal = 0;
long int humedadLocal = 0;
long int sumaReal = 0;
long int humedadReal = 0;
for (int i = 0; i < 16; i++){
vectorLocal[i] = analogRead(sensor);
delay(100);
}
for(int i = 0; i < 16; i++){
sumaLocal += vectorLocal[i];
}
humedadLocal = sumaLocal / 16;
for(int i = 0; i < 16; i++){
if (vectorLocal[i] - humedadLocal > 0){
if(vectorLocal[i] - humedadLocal < 100){
sumaReal += vectorLocal[i];
contador++;
}
}
else{
if(vectorLocal[i] - humedadLocal > -100){
sumaReal += vectorLocal[i];
contador++;
}
}
}
humedadReal = sumaReal / contador;
float porcentaje = humedadReal - 240;
porcentaje = porcentaje / 344;
porcentaje = 100 * porcentaje;
porcentaje = 100 - porcentaje;
resultadoLocal = porcentaje;
return resultadoLocal;
}
void setup() {
tmElements_t tm;
pinMode(2, OUTPUT);
pinMode(4, OUTPUT);
Serial.begin(9800);
if(!SD.begin(10)){
comprobado = true;
Serial.println("No se ha encontrado una tarjeta SD");
}
else{
Serial.println("Tarjeta SD detectada");
}
}
// the loop function runs over and over again forever
void loop() {
tmElements_t tm;
if(!comprobado && !SD.begin(10)){
Serial.println("Tarjeta SD desconectada.");
comprobado = true;
}
// Si ha pasado un segundo actualizamos la humedad del sensor, cada vez que se actualice ejecutamos todo el programa de regado.
if((millis() / 1000 - tiempoDetectorA) >= 300){
resultadoA = humedad(detectorDeHumedadA);
Serial.print(resultadoA);
Serial.println("%");
// Si la humedad está por debajo del X(20%) 40% y no le hemos ordenado que riege, lo hacemos.
if(resultadoA <= 40 && !regarA){
regarA = true;
}
// Si la humedad está por debajo del 60% y se le ha ordenador regar, lo regamos y ajustamos el ultimo riego a ahora mismo, así volverá
// a regar cuando haya pasado el tiempo necesario (unos 30 minutos).
if(resultadoA < 60 && regarA){
if(contadorAuxiliar == 0) {
// !Como ya no voy a utilizar el relé tengo que redefinir la funcion activar riego
activarRiego(Rele2A,Rele1A,4400);
ultimoRiegoA = millis() / 1000;
Serial.println("Encendiendo la placa");
contadorAuxiliar++;
}
else if(millis() / 1000 - ultimoRiegoA > 1600){
Serial.println("Encendiendo la placa");
activarRiego(Rele2A,Rele1A,4400);
ultimoRiegoA = millis() / 1000;
}
}
// Finalmente si la humedad está por encima del 60% hacemos que deje de regar.
else if(resultadoA > 60){
regarA = false;
}
// Esto volverá a repetirse cada vez que la humedad baje del 20%.
tiempoDetectorA = millis() / 1000;
Serial.println(tiempoDetectorA);
if(!comprobado){
myFile = SD.open("Riego.txt", FILE_WRITE);
if(primerGuardadoDatos){
delay(300);
RTC.read(tm);
myFile.println();
myFile.print("Fecha de inicio (D/M/Y): ");
myFile.print(tm.Day);
myFile.print('/');
myFile.print(tm.Month);
myFile.print('/');
myFile.print(tmYearToCalendar(tm.Year));
myFile.println();
primerGuardadoDatos = false;
}
if (RTC.read(tm)) {
print2digits(tm.Hour);
myFile.print(':');
print2digits(tm.Minute);
myFile.print(':');
print2digits(tm.Second);
myFile.print(", (D/M/Y) = ");
myFile.print(tm.Day);
myFile.print('/');
myFile.print(tm.Month);
myFile.print('/');
myFile.print(tmYearToCalendar(tm.Year));
myFile.println();
Serial.println("Datos Cargados");
} else {
if (RTC.chipPresent()) {
Serial.println("The DS1307 is stopped. Please run the SetTime");
Serial.println("example to initialize the time and begin running.");
Serial.println();
} else {
Serial.println("DS1307 read error! Please check the circuitry.");
Serial.println();
}
}
myFile.print(resultadoA);
myFile.println("%");
myFile.println();
myFile.close();
}
}
}