I’ll test the develop branch tomorrow.
Thanks for the quick reply.
@evroom I added updateInterval to my config.js only after the problem occurred, because I thought it might be causing the issue.
I’ll test the develop branch tomorrow.
Thanks for the quick reply.
@evroom I added updateInterval to my config.js only after the problem occurred, because I thought it might be causing the issue.
Is „retryDelay“ really working ? I can‘t find it in the documentation.
I have two modules where I request the API every 10 minutes. So it should be around 300 requests per day.
By far less than 1000.
Hello together,
Since the April update, I have an issue where the default weather module sends too many requests to the OpenWeathermap API. I reach the free limit of 1,000 requests after just a few hours.
Here’s an extract from my config.js:
{
module: "weather",
position: "top_right",
config: {
weatherProvider: "openweathermap",
apiVersion: "3.0",
weatherEndpoint: "/onecall",
lat: "XXXXXX",
lon: "XXXXXX",
location: "XXXXXX",
showSun: true,
type: "current",
appendLocationNameToHeader: false,
apiKey: "XXXXXXX",
updateInterval: 10*60*1000, // Update every 10 minutes
}
},
{
module: "weather",
position: "top_right",
header: "Wetter Vorschau",
config: {
weatherProvider: "openweathermap",
type: "forecast",
location: "XXXXXX",
apiVersion: "3.0",
weatherEndpoint: "/onecall",
lat: "XXXXXX",
lon: "XXXXX",
appendLocationNameToHeader: false,
apiKey: "XXXXX",
updateInterval: 10*60*1000, // Update every 10 minutes
fade: false,
roundTemp: true,
ignoreToday: true,
}
},
Has anyone a solution to solve this problem ?
Platform: Raspberry Pi 3 B+
Node Version: 12.16.1
MagicMirror Version: 2.13.0-develop and also the current master branch
Description: The calendar module shows 10 lines of the next dates. But in the config.js I have limited it to 5 entries.
module: "calendar",
header: "Kalender",
position: "top_left",
config: {
titleReplace: { "Aichach": "", "in": "" },
fade: false,
calendars: [
{
symbol: false,
maximumEntries: 5,
url: "https://calendar.google.com/......}
]
}
Is there any idea what is wrong ?