I can´t use your update script, because I installed my MM with the proxmox helper script.
Read the statement by Michael Teeuw here.
Posts
-
RE: Too many API calls in default weather module after update
-
RE: Too many API calls in default weather module after update
The develop branch is working. API requests are back to normal.
Can I make this change manually on the master branch for now, or do I need to let the develop branch run until the next update ?
Thanks again for the quick help.
Also to @sdetweil -
RE: Too many API calls in default weather module after update
I’ll test the develop branch tomorrow.
Thanks for the quick reply.@evroom I added
updateIntervalto my config.js only after the problem occurred, because I thought it might be causing the issue. -
RE: Too many API calls in default weather module after update
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. -
Too many API calls in default weather module after update
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 ?
-
Too many dates shown in calendar module.
Platform: Raspberry Pi 3 B+
Node Version: 12.16.1
MagicMirror Version: 2.13.0-develop and also the current master branchDescription: 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 ?