V 1.1.0 Senden von Winddie in Grad, Log mehrere Werte

This commit is contained in:
2026-04-14 15:41:01 +02:00
parent a7d82d31ab
commit fc8c7071f8
5 changed files with 12 additions and 21 deletions

View File

@@ -79,11 +79,12 @@ async function runLoop(db) {
}).catch(e => warn("POST fehlgeschlagen: " + e.message));
}
log(
// `Außen: ${data.tempOut?.toFixed(1)}°C ` +
`Außen: ${data.tempOut?.toFixed(1)}°C ` +
`InnenT: ${data.tempIn?.toFixed(1)}°C ` +
// `Feuchte: ${data.humOut}% ` +
`Feuchte: ${data.humOut}% ` +
`InnenH: ${data.humIn}% ` +
// `Wind: ${data.windAvg} km/h ` +
`Wind: ${data.windAvg} km/h ` +
`WindRichtung: ${data.windDir}° ` +
`Druck: ${data.pressure} hPa ` +
`Trend: ${data.barTrend ?? "n/a"} ` +
`Forecast: ${data.forecast}`