-
Notifications
You must be signed in to change notification settings - Fork 0
/
v6.ino
242 lines (194 loc) · 6.29 KB
/
v6.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
236
237
238
239
240
241
242
#include <ESP8266WiFi.h>
#include <PubSubClient.h>
#define D0 16
#define D1 5
#define D2 4
#define D3 0
#define D4 2
#define D5 14
#define D6 12
#define D7 13
#define D8 15
#define D9 3
#define D10 1
//defines
#define SSID_REDE "*"
#define SENHA_REDE "*"
#define INTERVALO_ENVIO_THINGSPEAK 1000
#define INTERVALO_ENVIO_MQTT 1000
#define LIMITE_UMIDADE_PARA_REGAR 30
#define TEMPO_PARA_REGAR 2000
#define SAIDA_COMANDO_VALVULA D0
#define TOPICO_SUBSCRIBE "AquaInsights_Send"
#define TOPICO_PUBLISH "AquaInsights_Recive"
#define ID_MQTT "*"
void initWiFi(void);
const char* BROKER_MQTT = "*";
int BROKER_PORT = 1883;
char EnderecoAPIThingSpeak[] = "api.thingspeak.com";
String ChaveEscritaThingSpeak = "*";
long lastConnectionTime;
long lastMQTTSendTime;
WiFiClient client;
WiFiClient clientMQTT;
PubSubClient MQTT(clientMQTT);
//prototypes
void EnviaInformacoesThingspeak(String StringDados);
float FazLeituraUmidade(void);
void initMQTT(void);
void reconectWiFi(void);
void mqtt_callback(char* topic, byte* payload, unsigned int length);
void VerificaConexoesWiFIEMQTT(void);
void EnviaInformacoesThingspeak(String string_dados)
{
if (client.connect(EnderecoAPIThingSpeak, 80))
{
/* faz a requisição HTTP ao ThingSpeak */
client.print("POST /update HTTP/1.1\n");
client.print("Host: api.thingspeak.com\n");
client.print("Connection: close\n");
client.print("X-THINGSPEAKAPIKEY: "+ChaveEscritaThingSpeak+"\n");
client.print("Content-Type: application/x-www-form-urlencoded\n");
client.print("Content-Length: ");
client.print(string_dados.length());
client.print("\n\n");
client.print(string_dados);
lastConnectionTime = millis();
Serial.println("- Informações enviadas ao ThingSpeak!");
}
}
void initWiFi()
{
delay(10);
Serial.println("------Conexao WI-FI------");
Serial.print("Conectando-se na rede: ");
Serial.println(SSID_REDE);
Serial.println("Aguarde");
reconectWiFi();
}
void initMQTT()
{
MQTT.setServer(BROKER_MQTT, BROKER_PORT);
MQTT.setCallback(mqtt_callback);
}
void mqtt_callback(char* topic, byte* payload, unsigned int length)
{
}
void reconnectMQTT()
{
while (!MQTT.connected())
{
Serial.print("* Tentando se conectar ao Broker MQTT: ");
Serial.println(BROKER_MQTT);
if (MQTT.connect(ID_MQTT))
{
Serial.println("Conectado com sucesso ao broker MQTT!");
MQTT.subscribe(TOPICO_SUBSCRIBE);
}
else
{
Serial.println("Falha ao reconectar no broker.");
Serial.println("Havera nova tentatica de conexao em 2s");
delay(2000);
}
}
}
//Função: reconecta-se ao WiFi
void reconectWiFi()
{
if (WiFi.status() == WL_CONNECTED)
return;
WiFi.begin(SSID_REDE, SENHA_REDE);
while (WiFi.status() != WL_CONNECTED)
{
delay(100);
Serial.print(".");
}
Serial.println();
Serial.print("Conectado com sucesso na rede ");
Serial.print(SSID_REDE);
Serial.println("IP obtido: ");
Serial.println(WiFi.localIP());
}
void VerificaConexoesWiFIEMQTT(void)
{
if (!MQTT.connected())
reconnectMQTT();
reconectWiFi();
}
//Parâmetros: nenhum
//Retorno: umidade percentual (0-100)
float FazLeituraUmidade(void)
{
int ValorADC;
float UmidadePercentual;
int UmidadePercentualApp;
ValorADC = analogRead(0);
Serial.print("[Leitura ADC] ");
Serial.println(ValorADC);
// Valor lido Umidade percentual
// _ 0 _ 100
// | |
// | |
// - ValorADC - UmidadePercentual
// | |
// | |
// _|_ 418 _|_ 0
//
// (UmidadePercentual-0) / (100-0) = (ValorADC - 418) / (-418)
// Logo:
// UmidadePercentual = 100 * ((418-ValorADC) / 418)
UmidadePercentual = 100 * ((418-(float)ValorADC) / 418);
UmidadePercentualApp = map(UmidadePercentual, -144, 100, 0, 100);
Serial.print("[Umidade Percentual] ");
Serial.print(UmidadePercentualApp);
Serial.println("%");
return UmidadePercentualApp;
}
void setup()
{
Serial.begin(9600);
lastConnectionTime = 0;
lastMQTTSendTime = 0;
initWiFi();
initMQTT();
pinMode(SAIDA_COMANDO_VALVULA,OUTPUT);
digitalWrite(SAIDA_COMANDO_VALVULA,LOW);
Serial.println("Planta IoT com ESP8266 NodeMCU");
}
//loop principal
void loop()
{
float UmidadePercentualLida;
int UmidadePercentualTruncada;
char FieldUmidade[11];
char MsgUmidadeMQTT[50];
VerificaConexoesWiFIEMQTT();
if (client.connected())
{
client.stop();
Serial.println("- Desconectado do ThingSpeak");
Serial.println();
}
UmidadePercentualLida = FazLeituraUmidade();
UmidadePercentualTruncada = (int)UmidadePercentualLida;
if(!client.connected() &&
((millis() - lastConnectionTime) > INTERVALO_ENVIO_THINGSPEAK))
{
sprintf(FieldUmidade,"field1=%d",UmidadePercentualTruncada);
EnviaInformacoesThingspeak(FieldUmidade);
}
if ((millis() - lastMQTTSendTime) > INTERVALO_ENVIO_MQTT)
{
sprintf(MsgUmidadeMQTT,"%d",UmidadePercentualTruncada);
MQTT.publish(TOPICO_PUBLISH, MsgUmidadeMQTT);
lastMQTTSendTime = millis();
}
if (UmidadePercentualTruncada <= LIMITE_UMIDADE_PARA_REGAR)
{
digitalWrite(SAIDA_COMANDO_VALVULA,HIGH);
delay(TEMPO_PARA_REGAR);
digitalWrite(SAIDA_COMANDO_VALVULA,LOW);
}
delay(1000);
}