weather.ino 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. /*
  2. Weather Access API
  3. Information provided by the open-meteo.com open data API
  4. */
  5. //Latitude & Longitude of your location
  6. /* Hong Kong */
  7. //const String lat = "22.2783";
  8. //const String lon = "114.1747";
  9. /* Tainan */
  10. const String lat = "22.9908";
  11. const String lon = "120.2133";
  12. /* Timezone */
  13. const String timezone = "Asia/Singapore";
  14. //Draw weather pallete, by default it align right
  15. void drawWeatherPallete(int x, int y) {
  16. display.setFont(&FreeSans18pt7b);
  17. display.setTextColor(GxEPD_BLACK);
  18. int16_t tbx, tby; uint16_t tbw, tbh;
  19. //Print current temperature and humd
  20. display.getTextBounds(String(currentTemp, 1) + " C", 0, 0, &tbx, &tby, &tbw, &tbh);
  21. int tempX = display.width() - tbw - 10;
  22. display.setCursor(tempX, y + tbh);
  23. display.print(String(currentTemp, 1) + " C");
  24. //Draw the degree sign as it is not supported in ASCII
  25. display.getTextBounds(String(currentTemp, 1), 0, 0, &tbx, &tby, &tbw, &tbh);
  26. display.fillCircle(tempX + tbw + 8, y + 5, 5, GxEPD_BLACK);
  27. display.fillCircle(tempX + tbw + 8, y + 5, 2, GxEPD_WHITE);
  28. //Min max daily temp
  29. y += tbh + 10;
  30. display.setFont(&FreeSans9pt7b);
  31. String detailInfo = String(minTemp, 1) + " / " + String(maxTemp, 1) + "'C";
  32. display.getTextBounds(detailInfo, 0, 0, &tbx, &tby, &tbw, &tbh);
  33. display.setCursor(display.width() - tbw - 10, y + tbh);
  34. display.print(detailInfo);
  35. //Humidity
  36. y += tbh + 10;
  37. detailInfo = "RH " + String(currentHumd,0) + "%";
  38. display.getTextBounds(detailInfo, 0, 0, &tbx, &tby, &tbw, &tbh);
  39. display.setCursor(display.width() - tbw - 10, y + tbh);
  40. display.print(detailInfo);
  41. }
  42. //Draw the sun or moon icon base on day / night time
  43. void drawSunMoon(int x, int y) {
  44. if (isNight()) {
  45. //Draw moon
  46. display.fillCircle(x, y, 40, GxEPD_RED);
  47. display.fillCircle(x - 30, y - 15, 38, GxEPD_WHITE);
  48. } else {
  49. //Draw sun
  50. display.fillCircle(x, y, 40, GxEPD_RED);
  51. //some clouds
  52. display.fillCircle(x + 10, y + 28, 20, GxEPD_WHITE);
  53. display.fillCircle(x + 40, y + 20, 30, GxEPD_WHITE);
  54. }
  55. }
  56. bool updateCurrentWeatherInfo() {
  57. // Make HTTP request
  58. HTTPClient http;
  59. WiFiClient client;
  60. http.begin(client, "http://api.open-meteo.com/v1/forecast?latitude=" + lat + "&longitude=" + lon + "&current=temperature_2m,relative_humidity_2m,rain&daily=temperature_2m_max,temperature_2m_min&timezone=" + timezone + "&forecast_days=1");
  61. int httpCode = http.GET();
  62. if (httpCode > 0) {
  63. if (httpCode == HTTP_CODE_OK) {
  64. String payload = http.getString();
  65. // Parse JSON
  66. DynamicJsonDocument doc(1024);
  67. DeserializationError error = deserializeJson(doc, payload);
  68. // Extract temperature_2m and relative_humidity_2m
  69. if (!error) {
  70. currentTemp = doc["current"]["temperature_2m"];
  71. currentHumd = doc["current"]["relative_humidity_2m"];
  72. currentRain = doc["current"]["rain"];
  73. minTemp = doc["daily"]["temperature_2m_min"][0];
  74. maxTemp = doc["daily"]["temperature_2m_max"][0];
  75. Serial.print("Temperature: ");
  76. Serial.print(currentTemp);
  77. Serial.println("°C");
  78. Serial.print("Humidity: ");
  79. Serial.print(currentHumd);
  80. Serial.println("%");
  81. Serial.print("Rain: ");
  82. Serial.print(currentRain);
  83. Serial.println("mm");
  84. } else {
  85. Serial.println("Failed to parse JSON");
  86. return false;
  87. }
  88. } else {
  89. Serial.printf("HTTP error code: %d\n", httpCode);
  90. return false;
  91. }
  92. } else {
  93. Serial.println("Failed to connect to server");
  94. return false;
  95. }
  96. http.end();
  97. return true;
  98. }