@sdetweil
Unfortunately
.MB-Wetter-Temp .module-content div {
color: "fuchsia";
}
doesn’t work :-(
May you are much faster than me?
If you mind to try MMM-JsonValue with this
{ /// WIND
module: "MMM-JsonValue",
position: "top_right",
classes: "MB-Wetter-Wind",
disabled: false,
config: {
apiBase: 'https://api.weather.com/v2/pws/observations/current?stationId=IGEROL23&format=json&units=m&numericPrecision=decimal&apiKey=e0658025e8d74a2da58025e8d70a2ddf',
method: "GET",
title: "", // Widget Title, set to null if not needed
icon: "fa-solid fa-wind", // Font Awesome icon, displayed before any text, set to null if not needed
prefix: " Wind: ", // "Quote: \"" --- Text displayed before the value, can be a blank String ""
suffix: " m/s", // "\" (from https://api.quotable.io/random)" ----- Text displayed after the value, can be a blank String ""
jsonPath: "$.observations[:1].metric.windSpeed", // value in the json to display, the module use https://github.com/dchester/jsonpath for parsing. Note: if $ is not the first character in your path, it will be added for backward-compatibility reason.
refreshInterval: 5 * 1000 * 60, // refresh every 5 minutes
debug: false,
skipPadding: false, // yo can un-comment this line if you want to display a related value below; using a second instance.
}
},
code snippet in config.js …
Gives you the windspeed on my weather station monitored by wunderground …
Thanks again !
Ralf