-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdetector_covid.ino
187 lines (179 loc) · 4.99 KB
/
detector_covid.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
#include <LiquidCrystal_I2C.h>
#include <Wire.h>
#include "Adafruit_CCS811.h"
#include <DHT.h>
#define dhtPin 6
#define dhtTipo DHT11
DHT tempSens(dhtPin, dhtTipo);
Adafruit_CCS811 Sensor;
LiquidCrystal_I2C Pant(0x27, 16, 2);
long TiempoDebug = 500;
long TiempoDebug1 = 0;
long Pitar1 = 0;
long Pitar2 = 0;
long Seg = 0;
long Tiempo = 0;
bool T1 = true;
bool T2 = true;
bool b1 = true;
bool b2 = true;
int Debug = 1000;
long Tiempo2 = 60000;
int CO2 = 0;
float t = 0;
void setup() {
pinMode(13, OUTPUT);
pinMode(12, OUTPUT);
pinMode(11, OUTPUT);
pinMode(10, OUTPUT);
pinMode(9, OUTPUT);
pinMode(8, OUTPUT);
pinMode(7, OUTPUT);
Serial.begin(9600);
tempSens.begin();
Sensor.begin();
Pant.init();
Pant.backlight();
Pant.setCursor(0, 0);
Pant.print(" CO2: Temp: ");
}
void loop() {
if (((millis() - Seg) > Tiempo2) && (Pitar1 != 0)){
Pitar1 = 0;
Pitar2 = 0;
b1 = true;
b2 = true;
}
/* Cada segundo el Sensor de temperatura y el sensor de CO2 realizan una lectura, con 0.5 segundos de diferencia entre la lectura
de uno con respecto al otro. */
if ((millis() - TiempoDebug) > Debug) {
tempSens.readTemperature();
if (t != tempSens.readTemperature()) {
Pant.setCursor(9, 1);
t = tempSens.readTemperature();
Pant.print(tempSens.readTemperature());
Pant.print("C");
}
/* Los leds se actualizan en función de si la temperatura es apropiada para trabajar o no. */
if (t < 14) {
digitalWrite(10, LOW);
digitalWrite(9, LOW);
digitalWrite(7, HIGH);
}
else if ((t >= 14) && (t < 17)) {
digitalWrite(10, LOW);
digitalWrite(9, HIGH);
digitalWrite(7, LOW);
}
else if ((t >= 17) && (t <= 25)) {
digitalWrite(10, HIGH);
digitalWrite(9, LOW);
digitalWrite(7, LOW);
}
else if ((t > 25) && (t <= 28)) {
digitalWrite(10, LOW);
digitalWrite(9, HIGH);
digitalWrite(7, LOW);
}
else {
digitalWrite(10, HIGH);
digitalWrite(9, LOW);
digitalWrite(7, LOW);
}
TiempoDebug = millis();
}
/* Todos los procesos que involucran tiempo, excepto los pitidos, están hechos sin bucles para que no se pare
el programa en ningún momento. */
if ((millis() - TiempoDebug1) > Debug) {
Sensor.readData();
Sensor.geteCO2();
/* Los leds se actualizan en función de si la concentración de partes de CO2 por millón son apropiadas
para estar en una habitación, adicionalmente cuando el nivel de peligro es moderado, suena una secuencia
de dos pitidos. */
if (CO2 != Sensor.geteCO2()) {
Pant.setCursor(0, 1);
CO2 = Sensor.geteCO2();
Pant.print(Sensor.geteCO2());
Pant.print(" PPM ");
}
if (CO2 <= 700) {
digitalWrite(13, HIGH);
digitalWrite(12, LOW);
digitalWrite(11, LOW);
}
else if ((CO2 > 700) && (CO2 < 1500)) {
if (b1) {
Seg = millis();
b1 = !b1;
}
digitalWrite(13, LOW);
digitalWrite(12, HIGH);
digitalWrite(11, LOW);
while (Pitar1 == 0) {
if (T1) {
Tiempo = millis();
T1 = false;
}
if (((millis() - Tiempo) >= 200) && ((millis() - Tiempo) < 400)) {
tone(8, 4000);
}
else if (((millis() - Tiempo) >= 400) && ((millis() - Tiempo) < 600)) {
noTone(8);
}
else if (((millis() - Tiempo) >= 600) && ((millis() - Tiempo) < 800)) {
tone(8, 4000);
}
else if ((millis() - Tiempo) >= 800) {
noTone(8);
Pitar1 = 1;
T1 = true;
}
else {
}
}
}
else {
if (b2) {
Seg = millis();
b2 = !b2;
}
digitalWrite(13, LOW);
digitalWrite(12, LOW);
digitalWrite(11, HIGH);
Pitar1 = 1;
while (Pitar2 == 0) {
if (T2) {
Tiempo = millis();
T2 = false;
}
if (((millis() - Tiempo) >= 200) && ((millis() - Tiempo) < 400)) {
tone(8, 4000);
}
else if (((millis() - Tiempo) >= 400) && ((millis() - Tiempo) < 600)) {
noTone(8);
}
else if (((millis() - Tiempo) >= 600) && ((millis() - Tiempo) < 800)) {
tone(8, 4000);
}
else if (((millis() - Tiempo) >= 800) && ((millis() - Tiempo) < 1000)) {
noTone(8);
}
else if (((millis() - Tiempo) >= 1000) && ((millis() - Tiempo) < 1200)) {
tone(8, 4000);
}
else if (((millis() - Tiempo) >= 1200) && ((millis() - Tiempo) < 1400)) {
noTone(8);
}
else if (((millis() - Tiempo) >= 1400) && ((millis() - Tiempo) < 1600)) {
tone(8, 4000);
}
else if ((millis() - Tiempo) >= 1600) {
noTone(8);
Pitar2 = 1;
T2 = true;
}
}
}
TiempoDebug1 = millis();
}
}