-
Notifications
You must be signed in to change notification settings - Fork 0
/
Control.h
87 lines (73 loc) · 2.64 KB
/
Control.h
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
#pragma once
#include "Declaraciones.h"
#include "EEPROM_manejo.h"
// Abrir la ventilación y activar ventiladores
void chequearVentilacion() // en "loop()"
{
if (ventilacion_forzada)
return; // si la ventilación es forzada por telegram, ignorar lo automático
if (temp_exterior >= temp_maxima_ventilacion && !ventilando)
{
ventilando = true;
activarVentilacion();
}
else if (temp_exterior < temp_maxima_ventilacion && ventilando)
{
ventilando = false;
desactivarVentilacion();
}
}
//==================================================================================================================//
// Regar y esperar el tiempo necesario para la filtración del agua antes de medir de nuevo
void chequearRiego() // en "loop()"
{
// apagar la bomba después del tiempo definido
if (millis() - ultima_vez_bomba_encendio >= (tiempo_bombeo_segundos * 1000UL))
digitalWrite(PIN_BOMBA, HIGH);
// si se está esperando, comprobar si pasó el tiempo desde ultima_vez_bomba_encendio. De ser así, dejar de esperar
if (esperando_riego)
{
if (millis() - ultima_vez_bomba_encendio >= (tiempo_espera_minutos * 60000UL))
{
esperando_riego = false;
imprimirln("La espera desde el riego finalizó");
}
}
// chequear la humedad y regar (si no se está esperando la filtración del agua)
if (humedad_suelo_exterior <= humedad_suelo_minima && !esperando_riego)
{
ultima_vez_bomba_encendio = millis();
digitalWrite(PIN_BOMBA, LOW);
esperando_riego = true; // hay que esperar desde el tiempo 0 (ultima_vez_bomba_encendio)
}
}
//==================================================================================================================//
void activarVentilacion()
{
Ventana.write(ANGULO_APERTURA); // sacar cuando separemos ventiladores de ventana
digitalWrite(PIN_VENTILADOR, LOW);
}
//==================================================================================================================//
void desactivarVentilacion()
{
Ventana.write(ANGULO_CERRADO); // sacar cuando separemos ventiladores de ventana
digitalWrite(PIN_VENTILADOR, HIGH);
}
//================================================FUTURAS VERSIONES=================================================//
// Identifica la necesidad de iluminar, basándose en la lectura de un sensor LDR
void chequear_iluminacion()
{
// ...
}
//==========================HABILITAR PARA CUANDO SEPAREMOS LOS VENTILADORES DE LA VENTANA==========================//
/*
void abrirVentana()
{
Ventana.write(ANGULO_APERTURA);
}
//==========================HABILITAR PARA CUANDO SEPAREMOS LOS VENTILADORES DE LA VENTANA==========================//
void cerrarVentana()
{
Ventana.write(ANGULO_CERRADO);
}
*/