-
Notifications
You must be signed in to change notification settings - Fork 0
/
wi_fi_3.0.ino
359 lines (325 loc) · 12.5 KB
/
wi_fi_3.0.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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
// Библиотеки
#include <WiFiManager.h>
#include <WiFi.h> // Подключение WiFi
#include <ESPAsyncWebServer.h>
#include <WebSocketsServer.h>
#include <AsyncTCP.h>
#include <AsyncElegantOTA.h>
#include <SPIFFS.h>
#include <ArduinoJson.h>
#include <DHT.h>
#include <Ticker.h>
#include <Wire.h>
#include "time.h"
#include "EmonLib.h" // Расчёт потреблений
#include <SPI.h>
#include <Adafruit_GFX.h> // Дисплей 1306
#include <Adafruit_SSD1306.h>
#include <Adafruit_Sensor.h>
#define SCREEN_WIDTH 128
#define SCREEN_HEIGHT 64
#define VOLT_CAL 510
#define CURRENT_CAL 62.6
#define DHTPIN 14
#define DHTTYPE DHT11
DHT dht(DHTPIN, DHTTYPE);
// Данные сети
//const char* WIFI_SSID = "---";
//const char* WIFI_PASSWOERD = "simon007";
//------------------------------------------------------------
int calYear = 2022; //По умолчанию
double kWhCost = 1.68; //По умолчанию
double kWh = 0;
double calCost = 0;
double Cost = 0;
unsigned long lastmillis;
const char* ntpServer = "pool.ntp.org";
const long gmtOffset_sec = 7200; //7200 секунд на синхронизацию с нашим временем
const int daylightOffset_sec = 0; //Я проигнорировал это смещение
struct tm timeinfo;
int second, minute, hour, day, month, year, weekday;
//------------------------------------------------------------
float t;
float f;
float h;
float realPower;
float apparentPower;
float supplyVoltage;
float currentDraw;
unsigned long lastTime = 0;
unsigned long timerDelay = 5000; // таймер отправки показаний
// Активаторы
EnergyMonitor emon1;
Adafruit_SSD1306 display(SCREEN_WIDTH, SCREEN_HEIGHT, &Wire, -1);
void SensorData ();
Ticker timer;
AsyncWebServer server(80);
WebSocketsServer websockets(81);
//------------------------------------------------------------------------
void printLocalTime(){
struct tm timeinfo;
if(!getLocalTime(&timeinfo)){
Serial.println("Failed to obtain time");
return;
}
}
//-------------------------------------------------------------------------
void notFound(AsyncWebServerRequest *request)
{
request->send(404, "text/plain", "Страница не найдена");
}
void webSocketEvent(uint8_t num, WStype_t type, uint8_t * payload, size_t length) {
switch (type)
{
case WStype_DISCONNECTED:
Serial.printf("[%u] ¡Отключено!\n", num);
break;
case WStype_CONNECTED: {
IPAddress ip = websockets.remoteIP(num);
Serial.printf("[%u] Подключенный %d.%d.%d.%d url: %s\n", num, ip[0], ip[1], ip[2], ip[3], payload);
}
break;
case WStype_TEXT:
Serial.printf("[%u] Texto: %s\n", num, payload);
String mensaje = String((char*)( payload));
Serial.println(mensaje);
DynamicJsonDocument doc(200); // документ (емкость)
DeserializationError error = deserializeJson(doc, mensaje);
if (error) {
Serial.print("deserializeJson() failed: ");
Serial.println(error.c_str());
return;
}
}
}
void setup(void)
{
WiFi.mode(WIFI_STA);
Serial.begin(115200);
dht.begin();
// ----------------------------------------------------------------------------------------
emon1.voltage(35, VOLT_CAL, 1.7); //Напряжение: входной контакт, калибровка, фазовый сдвиг
emon1.current(34, CURRENT_CAL); // Ток: входной контакт, калибровка.
// ----------------------------------------------------------------------------------------
//WiFi.begin(WIFI_SSID, WIFI_PASSWOERD);
WiFiManager wm;
bool res;
res = wm.autoConnect("AP_ESP_MONITOR"); // password protected ap
if(!res) {
Serial.println("Failed to connect");
// ESP.restart();
}
Serial.print("Подключение к сети");
while (WiFi.status() != WL_CONNECTED)
{
delay(500);
Serial.print(".");
}
Serial.println();
Serial.print("Полученый IP: ");
Serial.println(WiFi.localIP());
// -----------------------------------------------------------------------
// -----------------------------------------------------------------------
AsyncElegantOTA.begin(&server); // Start ElegantOTA
server.begin();
Serial.println("HTTP server started");
if(!SPIFFS.begin(true)){
Serial.println("Произошла ошибка при чтения SPIFFS");
return;
}
server.on("/", HTTP_GET, [](AsyncWebServerRequest * request)
{
request->send(SPIFFS, "/index.html", "text/html");
});
// Инициализация дисплея ------------------------------------------------------------------
if(!display.begin(SSD1306_SWITCHCAPVCC, 0x3C)) {
Serial.println(F("SSD1306 allocation failed"));
for(;;);
}
delay(2000);
display.clearDisplay();
display.setTextColor(WHITE);
// ----------------------------------------------------------------------------------------
server.onNotFound(notFound);
server.begin();
websockets.begin();
websockets.onEvent(webSocketEvent);
timer.attach(2,SensorData); // Тикерный таймер (вызывает функции с заданным интервалом)
//инициализируем и получаем время-----------------------------------------------------------
configTime(gmtOffset_sec, daylightOffset_sec, ntpServer);
printLocalTime();
//------------------------------------------------------------------------------------------
}
void loop(void) {
websockets.loop();
//---------------------------------------------------------------------------------------------------
printLocalTime();
second = timeinfo.tm_sec;
minute = timeinfo.tm_min;
hour = timeinfo.tm_hour;
day = timeinfo.tm_mday;
month = timeinfo.tm_mon + 1;
year = timeinfo.tm_year + 1900;
//weekday = timeinfo.tm_wday + 1;
//---------------------------------------------------------------------------------------------------
// --------------------------------------------------------------------------------------------------
emon1.calcVI(20,2000); // //Рассчитать все. Количество полудлин волн (пересечений), тайм-аут
realPower = emon1.realPower; //извлекаем реальную мощность в переменную
apparentPower = emon1.apparentPower; //извлекаем кажущуюся мощность в переменную
supplyVoltage = emon1.Vrms; //извлекаем Vrms в переменную
currentDraw = emon1.Irms; //извлекаем Irms в переменную
// --------------------------------------------------------------------------------------------------
//---------------------------------------------------------------------------------------------------
//Расчетная формула для показаний кВтч
kWh += (((millis() - lastmillis) * realPower) / 3600000000);
lastmillis = millis();
Cost = kWh * kWhCost;
//Все следующие операторы if для сброса показаний стоимости и кВтч
if (day == 30 && month == 4 && year == calYear && hour == 23 && minute == 59) {
calCost += Cost; kWh = 0;//April
}
if (day == 31 && month == 5 && year == calYear && hour == 23 && minute == 59) {
calCost += Cost; kWh = 0;//May
}
if (day == 30 && month == 6 && year == calYear && hour == 23 && minute == 59) {
calCost += Cost; kWh = 0;//June
}
if (day == 31 && month == 7 && year == calYear && hour == 23 && minute == 59) {
calCost += Cost; kWh = 0;//July
}
if (day == 31 && month == 8 && year == calYear && hour == 23 && minute == 59) {
calCost += Cost; kWh = 0;//August
}
if (day == 30 && month == 9 && year == calYear && hour == 23 && minute == 59) {
calCost += Cost; kWh = 0;//September
}
if (day == 31 && month == 10 && year == calYear && hour == 23 && minute == 59) {
calCost += Cost; kWh = 0;//October
}
if (day == 30 && month == 11 && year == calYear && hour == 23 && minute == 59) {
calCost += Cost; kWh = 0;//November
}
if (day == 31 && month == 12 && year == calYear && hour == 23 && minute == 59) {
calCost += Cost; kWh = 0; calCost = 0;//December
}
if (day == 31 && month == 1 && year == calYear && hour == 23 && minute == 59) {
calCost += Cost; kWh = 0;//January
}
if (day == 28 && month == 2 && year == calYear && hour == 23 && minute == 59) {
calCost += Cost; kWh = 0;//February
}
if (day == 31 && month == 3 && year == calYear && hour == 23 && minute == 59) {
calCost += Cost; kWh = 0;//March
}
if ((millis() - lastTime) > timerDelay) {
SensorData();
Serial.print("IP= ");
Serial.println(WiFi.localIP());
Serial.printf("Temperature = %.2f ºC \n", t);
Serial.printf("Temperature = %.2f ºF \n", f);
Serial.printf("Humidity= %f %\n", h);
Serial.print("Voltage= ");
Serial.println(supplyVoltage);
Serial.print("Current= ");
Serial.println(currentDraw);
Serial.print("Watts= ");
Serial.println(currentDraw * supplyVoltage);
Serial.print("kWh= ");
Serial.println(kWh);
Serial.print("Cost= ");
Serial.println(Cost);
Serial.print("realPower= ");
Serial.println(realPower);
Serial.println("\n\n");
// --------------------------------------------------------------------------------------------------
//---------------------------------------------------------------------------------------------------
// Дисплей вывод данных
display.clearDisplay();
// WiFi.localIP()
display.setTextSize(1);
display.setCursor(0, 0);
display.print("IP: ");
display.setTextSize(1);;
display.print(WiFi.localIP());
// температура
display.setTextSize(1);
display.setCursor(0,10);
display.print("Temperature: ");
display.setTextSize(1);
display.print(t);
display.print(" ");
display.setTextSize(1);
display.cp437(true);
display.write(167);
display.setTextSize(1);
display.print("C");
// play влажность
display.setTextSize(1);
display.setCursor(0, 20);
display.print("Humidity: ");
display.setTextSize(1);
display.print(h);
display.print(" %");
// напряжение
display.setTextSize(1);
display.setCursor(0, 30);
display.print("Voltage: ");
display.setTextSize(1);;
display.print(supplyVoltage);
display.print(" V ");
// сила тока
display.setTextSize(1);
display.setCursor(0, 40);
display.print("Current: ");
display.setTextSize(1);
display.print(currentDraw);
display.print(" A ");
// мощность
display.setTextSize(1);
display.setCursor(0, 50);
display.print("Watts: ");
display.setTextSize(1);
display.print(realPower);
display.print(" W ");
display.display();
// мощность
display.setTextSize(1);
display.setCursor(0, 50);
display.print("Cost: ");
display.setTextSize(1);
display.print(Cost);
display.print(" UAH ");
display.display();
//---------------------------------------------------------------------------------------------------
}
}
void SensorData() {
h = dht.readHumidity();
t = dht.readTemperature();
f = dht.readTemperature(true);
if (isnan(h) || isnan(t)) {
Serial.println(F("Ошибка чтения в датчике DHT11!"));
return;
}
String JSON_Data = "{\"temp\":";
JSON_Data += t;
JSON_Data += ",\"hum\":";
JSON_Data += h;
JSON_Data += ",\"farn\":";
JSON_Data += f;
JSON_Data += ",\"rPower\":";
JSON_Data += realPower;
JSON_Data += ",\"aPower\":";
JSON_Data += apparentPower;
JSON_Data += ",\"Voltage\":";
JSON_Data += supplyVoltage;
JSON_Data += ",\"Current\":";
JSON_Data += currentDraw;
JSON_Data += ",\"kWh_V\":";
JSON_Data += kWh;
JSON_Data += ",\"Cost_V\":";
JSON_Data += Cost;
JSON_Data += "}";
Serial.println(JSON_Data);
websockets.broadcastTXT(JSON_Data); // отправляем данные всем подключенным клиентам
}