Hello all,
I use the default Weather module in MM three times, one current, the other two for hourly and for daily forecasts:
{
module: "weather",
position: "top_right",
config: {
weatherProvider: "openweathermap",
type: "current",
location: "Zwolle",
locationID: "2743476",
apiKey: "******",
showPrecipitationAmount: true,
appendLocationNameToHeader: false,
roundTemp: true,
windUnits: "beaufort",
}
},
{
module: "weather",
position: "top_right",
header: "komende uren",
config: {
weatherProvider: "openweathermap",
type: "hourly",
weatherEndpoint: "/onecall",
lat: 52.5125,
lon: 6.09444,
apiKey: "******",
maxEntries: 16,
showPrecipitationAmount: true,
colored: true,
appendLocationNameToHeader: false,
roundTemp: true,
}
},
{
module: "weather",
position: "top_right",
header: "komende dagen",
config: {
weatherProvider: "openweathermap",
type: "daily",
location: "Zwolle",
locationID: "2743476",
apiKey: "*******",
maxNumberOfDays : 11,
showPrecipitationAmount: true,
colored: false,
appendLocationNameToHeader: false,
roundTemp: true,
}
},
This worked like a charme, until last week, where the hourly forecast is shown empty:
![Schermafbeelding 2024-10-27 135201.png](/assets/uploads/files/1730033634713-schermafbeelding-2024-10-27-135201.png)
I see no log message in the mm logs regarding this.
What can I do to troubleshoot?
Regards,
Stephan