fix build

This commit is contained in:
2026-08-02 22:59:21 +02:00
parent 54e9164dc9
commit e7dea5824c
2 changed files with 7 additions and 3 deletions
+7
View File
@@ -0,0 +1,7 @@
# AGENTS.md
## Build Command
```sh
.venv-platformio/bin/pio run
```
-3
View File
@@ -13,9 +13,6 @@ WeatherData fetchWeather() {
data.willRainSoon = doc["willRainSoon"] | false;
JsonObject current = doc["current"];
if (deserializeJson(doc, res.body)) { data.valid = false; return data; }
JsonObject current = doc["current"];
data.current.temperature = current["temperature"] | 0;
data.current.symbol = current["symbol"] | "";