Эксперимент 71. Метеостанция

В прошлых экспериментах мы научились подключаться к беспроводной сети Wi-Fi, запрашивать данные о текущей погоде с веб-сервиса weatherbit.io и отображать красивый пользовательский интерфейс. Теперь соединим воедино эти достижения, чтобы получить полноценную погодную станцию.

Схема эксперимента

Схема эксперимента не изменилась по сравнению с предыдущей

Рисунок 1. Монтажная схема эксперимента с 8 выводами

Рисунок 2. Монтажная схема эксперимента с 11 выводами

Программный код эксперимента

Exp71.ino
  1. #include <SPI.h>
  2. #include <Adafruit_ST7735.h>
  3. #include "LittleFS_ImageReader.h"
  4. #include <ArduinoJson.h>
  5. #include <ESP8266WiFi.h>
  6. #include <WiFiClient.h>
  7. #include <ESP8266HTTPClient.h>
  8.  
  9. #define PIN_CS 2
  10. #define PIN_DC 4
  11. #define PIN_RST 5
  12.  
  13. #define WIFI_NAME "WiFi_name"
  14. #define WIFI_PASSWORD "WiFi_pass"
  15.  
  16. Adafruit_ST7735 tft = Adafruit_ST7735(PIN_CS, PIN_DC, PIN_RST);
  17. LittleFS_ImageReader reader;
  18.  
  19. String httpGet(String url) {
  20. WiFiClient client;
  21. HTTPClient http;
  22. String data = "";
  23.  
  24. if (http.begin(client, url)) {
  25. Serial.println("[HTTP] GET");
  26. int httpCode = http.GET();
  27. if (httpCode > 0) {
  28. Serial.printf("[HTTP] GET code: %d\n", httpCode);
  29. if (httpCode == HTTP_CODE_OK) {
  30. data = http.getString();
  31. } else {
  32. Serial.printf("[HTTP] GET failed, error: %s\n", http.errorToString(httpCode).c_str());
  33. }
  34. http.end();
  35. } else {
  36. Serial.println("[HTTP] Unable to connect");
  37. }
  38. }
  39. return data;
  40. }
  41.  
  42. void setup() {
  43. Serial.begin(9600);
  44. Serial.println();
  45.  
  46. LittleFS.begin();
  47. tft.initR(INITR_BLACKTAB);
  48. tft.setRotation(2);
  49.  
  50. Serial.print("Connecting to WiFi");
  51. WiFi.mode(WIFI_STA);
  52. WiFi.begin(WIFI_NAME, WIFI_PASSWORD);
  53. while (WiFi.status() != WL_CONNECTED) {
  54. Serial.print(".");
  55. delay(500);
  56. }
  57. Serial.println();
  58. Serial.println("WiFi connected");
  59. Serial.print("IP address: ");
  60. Serial.println(WiFi.localIP());
  61.  
  62. String API_key = "YourApiKey";
  63. String city_name = "Moscow";
  64.  
  65. String json_string = httpGet("http://api.weatherbit.io/v2.0/current?city=" + city_name + "&key=" + API_key);
  66. JsonDocument json_doc;
  67. deserializeJson(json_doc, json_string);
  68.  
  69. String w_city = json_doc["data"][0]["city_name"];
  70. int w_temp = json_doc["data"][0]["temp"];
  71. int w_temp_feels = json_doc["data"][0]["app_temp"];
  72. int w_humidity = json_doc["data"][0]["rh"];
  73. float w_wind = json_doc["data"][0]["wind_spd"];
  74. String w_pod = json_doc["data"][0]["pod"];
  75. int w_code = int(json_doc["data"][0]["weather"]["code"]);
  76.  
  77. String w_pic;
  78. if (w_code <= 233) w_pic = "11";
  79. else if ((w_code >= 300 && w_code <= 520) || w_code == 522) w_pic = "09";
  80. else if (w_code >= 521 && w_code <= 600) w_pic = "10";
  81. else if (w_code >= 601 && w_code <= 622) w_pic = "13";
  82. else if (w_code >= 623 && w_code <= 751) w_pic = "50";
  83. else if (w_code == 800) w_pic = "01";
  84. else if (w_code >= 801 && w_code <=802) w_pic = "02";
  85. else if (w_code == 803) w_pic = "03";
  86. else if (w_code == 804) w_pic = "04";
  87.  
  88. String w_pic_temp;
  89. if (w_temp > 0) w_pic_temp = "tp";
  90. else w_pic_temp = "tn";
  91.  
  92. unsigned int font_color = tft.color565(33, 149, 82);
  93. unsigned int font_color2 = tft.color565(8, 85, 41);
  94.  
  95. tft.fillScreen(ST77XX_WHITE);
  96.  
  97. tft.setTextColor(font_color);
  98. tft.setTextSize(2);
  99. tft.setCursor(5, 1);
  100. tft.print(w_city);
  101.  
  102. reader.drawBMP("/weather/" + w_pic + w_pod + ".bmp", tft, 34, 16);
  103. reader.drawBMP("/weather/" + w_pic_temp + ".bmp", tft, 5, 70);
  104.  
  105. tft.setTextSize(4);
  106. tft.setCursor(30, 75);
  107. tft.print(w_temp);
  108.  
  109. tft.setTextColor(font_color2);
  110. tft.setTextSize(1);
  111. tft.setCursor(5, 120);
  112. tft.print("Feels: " + String(w_temp_feels));
  113. tft.setCursor(5, 130);
  114. tft.print("Humidity: " + String(w_humidity) + "%");
  115. tft.setCursor(5, 140);
  116. tft.print("Wind: " + String(w_wind, 1) + "m/s");
  117. }
  118.  
  119. void loop() {
  120. }

Не забудь заменить в коде название сети Wi-Fi и ее пароль.

  1. #define WIFI_NAME "WiFi_name"
  2. #define WIFI_PASSWORD "WiFi_pass"

Не забудь заменить в коде ключ доступа к сервису weatherbit.io, который мы получили во время эксперимента 69

  1. String API_key = "YourApiKey";