forked from VolosR/TTGOWeatherStation
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Weather.ino
496 lines (390 loc) · 12.4 KB
/
Weather.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
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
#include "ani.h"
#include <SPI.h>
#include <TFT_eSPI.h> // Hardware-specific library
#include <ArduinoJson.h> //https://github.com/bblanchon/ArduinoJson.git
#include <NTPClient.h> //https://github.com/taranais/NTPClient
#include "SPIFFS.h"
#include <TJpg_Decoder.h>
#include <SimpleMap.h>
#include <Pangodream_18650_CL.h>
TFT_eSPI tft = TFT_eSPI(); // Invoke custom library
#define TFT_GREY 0x5AEB
#define lightblue 0x01E9
#define darkred 0xA041
#define blue 0x5D9B
#include "Orbitron_Medium_20.h"
#include <WiFi.h>
#include <WiFiUdp.h>
#include <HTTPClient.h>
const int pwmFreq = 5000;
const int pwmResolution = 8;
const int pwmLedChannelTFT = 0;
#define ICON_WIDTH 40
#define ICON_HEIGHT 40
#define ICON_POS_X (tft.width() - ICON_WIDTH)
#define ICON_WIDTH_BATTERY 70
#define ICON_HEIGH_BATTERY 36
#define STATUS_HEIGHT_BAR ICON_HEIGHT
#define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0]))
#define ICON_POS_X_BATTERY (tft.width() - ICON_WIDTH_BATTERY)
#define MIN_USB_VOL 4.9
#define ADC_PIN 34
#define CONV_FACTOR 1.8
#define READS 20
Pangodream_18650_CL BL(ADC_PIN, CONV_FACTOR, READS);
char *batteryImages[] = {"/battery_01.jpg", "/battery_02.jpg", "/battery_03.jpg", "/battery_04.jpg", "/battery_05.jpg"};
const char *ssid = "TP-Link_2901"; ///EDIIIT
const char *password = "eugene01"; //EDI8IT
String town = "Dnipro"; //EDDIT
String Country = "UA"; //EDDIT
const String endpoint = "http://api.openweathermap.org/data/2.5/weather?q=" + town + "," + Country + "&units=metric&APPID=";
const String key = "29772fe7718e6555f418a8f744d0cce9"; /*EDDITTTTTTTTTTTTTTTTTTTTTTTT */
String payload = ""; //whole json
String tmp = ""; //temperatur
String hum = ""; //humidity
String pressure = ""; //humidity
String weather = "";
StaticJsonDocument <1000> doc;
// Define NTP Client to get time
WiFiUDP ntpUDP;
NTPClient timeClient(ntpUDP);
// Variables to save date and time
String formattedDate;
String dayStamp;
String timeStamp;
int backlight[5] = {
10,
30,
60,
120,
220
};
byte b = 4;
byte state = 0;
bool canUpdate = false;
bool canUpdateBattery = false;
bool wifi = false;
SimpleMap < String, String > * myWeatherMap;
void SPIFFSInit() {
if (!SPIFFS.begin()) {
Serial.println("SPIFFS initialisation failed!");
while (1) yield(); // Stay here twiddling thumbs waiting
}
Serial.println("\r\nInitialisation done.");
}
bool tft_output(int16_t x, int16_t y, uint16_t w, uint16_t h, uint16_t * bitmap) {
if (y >= tft.height()) return 0;
tft.pushImage(x, y, w, h, bitmap);
return 1;
}
void pinoutInit() {
pinMode(0, INPUT_PULLUP);
pinMode(35, INPUT);
}
void displayBatteryIndicatorInit() {
tft.begin();
tft.setRotation(1);
tft.setTextColor(TFT_WHITE,TFT_BLACK);
tft.fillScreen(TFT_BLACK);
tft.setSwapBytes(true);
tft.setTextFont(2);
}
void displayWeatherInit() {
tft.begin();
tft.setRotation(0);
tft.setTextColor(TFT_WHITE, TFT_BLACK);
tft.fillScreen(TFT_BLACK);
tft.setSwapBytes(true);
tft.setTextFont(1);
}
void drawWeatherInit() {
tft.fillScreen(TFT_BLACK);
tft.setCursor(80, 194, 1);
tft.println("BRIGHT:");
tft.setCursor(80, 142, 2);
tft.println("SEC:");
tft.setTextColor(TFT_WHITE, lightblue);
tft.setCursor(4, 142, 2);
tft.println("TEMP:");
tft.setCursor(4, 182, 2);
tft.println("HUM: ");
tft.setCursor(4, 223, 2);
tft.println("PRESSURE: ");
tft.setFreeFont(&Orbitron_Medium_20);
tft.setCursor(6, 65);
tft.println(town);
tft.fillRect(68, 142, 1, 74, TFT_GREY);
for (int i = 0; i < b + 1; i++)
tft.fillRect(85 + (i * 7), 206, 3, 10, blue);
tft.setFreeFont(&Orbitron_Light_32);
tft.fillRect(3, 0, 120, 30, TFT_BLACK);
tft.setCursor(5, 26);
tft.println(timeStamp.substring(0, 5));
}
void setupWiFI() {
tft.setCursor(0, 0);
tft.print("Connecting to ");
tft.println(ssid);
WiFi.begin(ssid, password);
while (WiFi.status() != WL_CONNECTED) {
delay(300);
tft.print(".");
}
wifi = true;
tft.println("");
tft.println("WiFi connected.");
tft.println("IP address: ");
tft.println(WiFi.localIP());
delay(3000);
drawWeatherInit();
// Initialize a NTPClient to get time
timeClient.begin();
// Set offset time in seconds to adjust for your timezone, for example:
// GMT +1 = 3600
// GMT +8 = 28800
// GMT -1 = -3600
// GMT 0 = 0
timeClient.setTimeOffset(3 * 3600); /*EDDITTTTTTTTTTTTTTTTTTTTTTTT */
getData();
}
void setup(void) {
Serial.begin(115200);
pinoutInit();
SPIFFSInit();
tft.begin();
xTaskCreate(battery_info, "battery_info", 2048, NULL, 1, NULL);
myWeatherMap = new SimpleMap <String, String> ([](String & a, String & b) -> int {
if (a == b) return 0;
if (a > b) return 1;
/*if (a < b) */
return -1;
});
myWeatherMap->put("clear sky", "/01d.jpg");
myWeatherMap->put("few clouds", "/02d.jpg");
myWeatherMap->put("scattered clouds", "/03d.jpg");
myWeatherMap->put("broken clouds", "/04d.jpg");
myWeatherMap->put("shower rain", "/09d.jpg");
myWeatherMap->put("rain", "/10d.jpg");
myWeatherMap->put("thunderstorm", "/11d.jpg");
myWeatherMap->put("snow", "/13d.jpg");
myWeatherMap->put("mist", "/50d.jpg");
ledcSetup(pwmLedChannelTFT, pwmFreq, pwmResolution);
ledcAttachPin(TFT_BL, pwmLedChannelTFT);
ledcWrite(pwmLedChannelTFT, backlight[b]);
TJpgDec.setJpgScale(1);
TJpgDec.setCallback(tft_output);
switch (state) {
case 0:
canUpdateBattery = false;
displayWeatherInit();
setupWiFI();
break;
case 2:
displayBatteryIndicatorInit();
canUpdateBattery = true;
break;
}
delay(500);
}
int i = 0;
String tt = "";
int count = 0;
int press1 = 0;
int press2 = 0; ////
int frame = 0;
String curSeconds = "";
void loop() {
if (digitalRead(35) == 0) {
if (press2 == 0) {
press2 = 1;
tft.fillRect(85, 206, 44, 12, TFT_BLACK);
b++;
if (b >= 5)
b = 0;
for (int i = 0; i < b + 1; i++)
tft.fillRect(85 + (i * 7), 206, 3, 10, blue);
ledcWrite(pwmLedChannelTFT, backlight[b]);
}
} else press2 = 0;
if (digitalRead(0) == 0) {
if (press1 == 0) {
press1 = 1;
state++;
if (state > 2)
state = 0;
while (state < 2 && !canUpdate) {
delay(1);
}
switch (state) {
case 0:
case 1:
if (!wifi) {
displayWeatherInit();
setupWiFI();
}
break;
}
switch (state) {
case 0:
canUpdateBattery = false;
displayWeatherInit();
drawWeatherInit();
break;
case 2:
displayBatteryIndicatorInit();
canUpdateBattery = true;
break;
}
}
} else press1 = 0;
switch(state) {
case 2:
break;
default:
tft.invertDisplay(state == 2 ? 0 : (!state));
weather_info();
break;
}
delay(80);
}
void getData() {
tft.fillRect(1, 160, 64, 20, TFT_BLACK);
tft.fillRect(1, 200, 64, 20, TFT_BLACK);
tft.fillRect(85, 223, 64, 20, TFT_BLACK);
if ((WiFi.status() == WL_CONNECTED)) { //Check the current connection status
HTTPClient http;
http.begin(endpoint + key); //Specify the URL
int httpCode = http.GET(); //Make the request
if (httpCode > 0) { //Check for the returning code
payload = http.getString();
// Serial.println(httpCode);
Serial.println(payload);
} else {
Serial.println("Error on HTTP request");
}
http.end(); //Free the resources
}
char inp[1000];
payload.toCharArray(inp, 1000);
deserializeJson(doc, inp);
String tmp2 = doc["main"]["temp"];
String hum2 = doc["main"]["humidity"];
String pressure2 = doc["main"]["pressure"];
String town2 = doc["name"];
String weather2 = doc["weather"][0]["description"];
tmp = tmp2;
hum = hum2;
weather = weather2;
pressure = pressure2;
Serial.println("Temperature" + String(tmp));
Serial.println("Humidity" + hum);
Serial.println("Pressure" + pressure);
Serial.println(town);
}
void drawingBatteryIcon(String filePath){
TJpgDec.drawFsJpg(ICON_POS_X_BATTERY, 0, filePath);
}
void drawingText(String text){
tft.fillRect(0, 0, ICON_POS_X_BATTERY, ICON_HEIGHT,TFT_BLACK);
tft.setTextDatum(5);
tft.drawString(text, ICON_POS_X_BATTERY-2, STATUS_HEIGHT_BAR/2, 4);
}
void weather_info()
{
tft.pushImage(0, 76, 135, 65, ani[frame]);
frame++;
if (frame >= 10)
frame = 0;
if (count == 0)
getData();
count++;
if (count > 2000)
count = 0;
tft.setFreeFont(&Orbitron_Medium_20);
tft.setCursor(2, 177);
tft.println(tmp.substring(0, 4));
tft.setCursor(2, 217);
tft.println(hum + "%");
tft.setTextColor(TFT_ORANGE, TFT_BLACK);
tft.setTextFont(2);
tft.setCursor(6, 30);
tft.println(dayStamp);
tft.setTextColor(TFT_WHITE, TFT_BLACK);
tft.setTextFont(2);
tft.setCursor(85, 223);
tft.println(pressure);
while (!timeClient.update()) {
timeClient.forceUpdate();
}
// The formattedDate comes with the following format:
// 2018-05-28T16:00:13Z
// We need to extract date and time
formattedDate = timeClient.getFormattedDate();
Serial.println(formattedDate);
int splitT = formattedDate.indexOf("T");
dayStamp = formattedDate.substring(0, splitT);
dayStamp.replace("-", ".");
timeStamp = formattedDate.substring(splitT + 1, formattedDate.length() - 1);
if (curSeconds != timeStamp.substring(6, 8)) {
tft.fillRect(78, 160, 48, 28, darkred);
tft.setFreeFont(&Orbitron_Light_24);
tft.setCursor(81, 182);
tft.println(timeStamp.substring(6, 8));
curSeconds = timeStamp.substring(6, 8);
}
tft.setFreeFont(&Orbitron_Light_32);
String current = timeStamp.substring(0, 5);
if (current != tt) {
tft.fillRect(3, 0, 120, 30, TFT_BLACK);
tft.setCursor(5, 26);
tft.println(timeStamp.substring(0, 5));
tt = timeStamp.substring(0, 5);
}
TJpgDec.drawFsJpg(ICON_POS_X, 35, myWeatherMap->get(weather));
}
void battery_info(void *arg)
{
while (1) {
if (state == 2) {
while (!canUpdateBattery) {
delay(1);
}
tft.setCursor (0, STATUS_HEIGHT_BAR);
tft.println("");
tft.print("Average value from pin: ");
tft.println(BL.pinRead());
tft.print("Volts: ");
tft.println(BL.getBatteryVolts());
tft.print("Charge level: ");
tft.println(BL.getBatteryChargeLevel());
if(BL.getBatteryVolts() >= MIN_USB_VOL){
for(int i=0; i< ARRAY_SIZE(batteryImages); i++){
drawingBatteryIcon(batteryImages[i]);
drawingText("Chrg");
vTaskDelay(500);
}
}else{
int imgNum = 0;
int batteryLevel = BL.getBatteryChargeLevel();
if(batteryLevel >=80){
imgNum = 3;
}else if(batteryLevel < 80 && batteryLevel >= 50 ){
imgNum = 2;
}else if(batteryLevel < 50 && batteryLevel >= 20 ){
imgNum = 1;
}else if(batteryLevel < 20 ){
imgNum = 0;
}
drawingBatteryIcon(batteryImages[imgNum]);
drawingText(String(batteryLevel) + "%");
vTaskDelay(1000);
}
tft.print("Never Used Stack Size: ");
tft.println(uxTaskGetStackHighWaterMark(NULL));
canUpdate = false;
} else {
canUpdate = true;
vTaskDelay(1000);
}
}
}