From 0c49cd1e98cebe660c51fce1edeb5539966253f3 Mon Sep 17 00:00:00 2001 From: tiijay Date: Mon, 10 Nov 2025 17:54:39 +0100 Subject: [PATCH] v.0.3.2 WeatherFetcher, more data on board --- src/main.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index 5acda23..1b5dc76 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -111,6 +111,11 @@ void displayWeatherOnMatrix(const Weather w) matrix.drawText(0, 0, w.location.name.c_str(), CRGB::Yellow); matrix.drawText(0, 8, zeit_temp.c_str(), CRGB::Yellow); + matrix.drawText(0, 17, w.current.condition.text.value().c_str(), CRGB::Yellow); + + String wind = w.current.wind_dir + "->" + w.current.wind_kph; + matrix.drawText(0, 26, wind.c_str(), CRGB::Yellow); + matrix.drawText(0, 35, w.current.last_updated.substring(11).c_str(), CRGB::Yellow); matrix.show(); }