MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. Perilax
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    P
    Online
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 3
    • Groups 0

    Perilax

    @Perilax

    0
    Reputation
    3
    Profile views
    3
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    Perilax Unfollow Follow

    Latest posts made by Perilax

    • RE: Too many API calls in default weather module after update

      @stephanvdplas

      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.

      posted in Troubleshooting
      P
      Perilax
    • 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 ?

      posted in Troubleshooting
      P
      Perilax
    • 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 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 ?

      posted in Bug Hunt
      P
      Perilax