added weather forecast fetch from open-meteo

This commit is contained in:
2026-06-24 21:23:03 +03:00
parent 4917f57d16
commit f143c16c25
7 changed files with 381 additions and 25 deletions
+3 -1
View File
@@ -5,6 +5,7 @@
#include "am2302_sensor.h"
#include "internet_time.h"
#include "weather_forecast.h"
#include "wifi_connection.h"
void setInternetTimeInfo(InternetTimeInfo timeInfo);
@@ -13,6 +14,7 @@ void drawHelloWorldScreen(U8G2 &u8g2);
void drawInternetConnectionScreen(U8G2 &u8g2, WifiConnectionInfo wifiInfo);
void setEnvironmentReading(Am2302Reading reading);
void drawEnvironmentScreen(U8G2 &u8g2);
void drawWeatherIconScreen(U8G2 &u8g2);
void setWeatherForecastInfo(WeatherForecastInfo forecastInfo);
void drawWeatherForecastScreen(U8G2 &u8g2);
#endif