Ok, I found out what was wrong, despite the confusion with the ’ or " use.
It’s the appid, it’s called apiKey in the weather module.
So after changing that (and also changing all ’ to " in the config), removing quotes around numbers, only have the locationID instead of both location and locationID and other cleanup stuff, it is shows properly :-)
So I replaced both my currentweather and YrThen modules with two weather modules:
{
module: "weather",
position: "top_right",
classes: "day_schedule",
config: {
weatherProvider: "openweathermap",
type: "current",
units: "metric",
timeFormat: 24,
decimalSymbol: ",",
initialLoadDelay: 0,
onlyTemp: false,
locationID: 2621215,
apiKey: "xxx"
}
},
{
module: "weather",
position: "top_right",
classes: "day_schedule",
config: {
weatherProvider: "openweathermap",
type: "forecast",
units: "metric",
timeFormat: 24,
decimalSymbol: ",",
initialLoadDelay: 0,
onlyTemp: true,
maxNumberOfDays: 7,
colored: true,
appendLocationNameToHeader: false,
locationID: 2621215,
apiKey: "xxx"
}
},
Looks very nice indeed
72f6ceb8-742c-4a07-8b3f-61bb47375ee4-image.png