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

    Posts

    Recent Best Controversial
    • RE: Weather module with openmeteo sends wrong Data

      Hi,
      I just checked the Github issue that you created and it seems like the problem has been solved.
      Thank you very much for your help :).

      Just another question as you seem to know a lot more about MagicMirror than I do:
      Is there some kind of fix for the punycode problem that I can do, or can I just ignore it as it seems to work fine the way it is.

      Additional modules that I am using are:
      https://github.com/ZachR19/MMM-Todoist2
      https://github.com/LukeSkywalker92/MMM-Globe
      https://github.com/fewieden/MMM-Fuel

      Thanks in advance.

      posted in Troubleshooting
      T
      TiLow
    • RE: Weather module with openmeteo sends wrong Data

      Sure, here is the weather part of my config.js file (I just redacted some personal information).
      I have three different parts of this module (Current, hourly and daily).
      The one with the problem (Feels like temperature wrong) is the first instance (current).

      	{
      		module: "weather",
      		position: "top_right",
      		config: {
      			weatherProvider: "openmeteo",
      			type: "current",
      			appendLocationNameToHeader: false,
      			lat: ,
      			lon: ,
      			degreeLabel: true,
      			updateInterval: 300000,
      			showPrecipitationProbability: true,
      			showPrecipitationAmount: true,
      			showUVIndex: true,
      			showFeelsLike: true	
      		}
      	},
      	{
      		module: "weather",
      		position: "bottom_right",
      		config: {
      			weatherProvider: "openmeteo",
      			type: "hourly",
      			appendLocationNameToHeader: false,
      			lat: ,
      			lon: ,
      			degreeLabel: true,
      			updateInterval: 300000,
      			fade: false,
      			maxEntries: 12,
      			showPrecipitationProbability: true,
      			showPrecipitationAmount: true,
      			showUVIndex: true
      		}
      	},
      	{
      		module: "weather",
      		position: "bottom_right",
      		config: {
      			weatherProvider: "openmeteo",
      			type: "daily",
      			appendLocationNameToHeader: false,
      			lat: ,
      			lon: ,
      			degreeLabel: true,
      			updateInterval: 300000,
      			fade: false,
      			maxEntries: 5,
      			ignoreToday: false,
      			showPrecipitationProbability: true,
      			showPrecipitationAmount: true
      		}
      	},
      
      posted in Troubleshooting
      T
      TiLow
    • RE: Weather module with openmeteo sends wrong Data

      I am using version 2.35.0 on a Raspberry Pi 3B+.

      I have just found another Error Message that is being created in the Terminal Logs when starting up the MagicMirror: [ERROR] [unknown] (node:8839) [DEP0040] DeprecationWarning: The punycode module is deprecated. Please use a userland alternative instead. (Use electron --trace-deprecation … to show where the warning was created).
      But i doubt that this has anything to do with the weather module not showing the correct Data.

      Thanks in advance :)

      posted in Troubleshooting
      T
      TiLow
    • Weather module with openmeteo sends wrong Data

      TLDR: Weather module using openmeteo as provider randomly starts throwing the Error: “[openmeteo] Could not find current time in hourly data, using index 0” and then displays wrong Data.

      Hello everyone,

      since some time I have a problem that my weather Data (especially the Feels Like Temperature) is completely wrong.
      The error only comes up sometimes, but I have not figured out a pattern yet, it seems to be random.

      I have looked a little bit into it and found that sometimes there is a debug message in my Logs saying: “[openmeteo] Could not find current time in hourly data, using index 0”.

      I am guessing that this is the reason for the wrong data, but I have no Idea how to fix this.
      I hope some of you are smarter than I am :)

      posted in Troubleshooting
      T
      TiLow
    • 1 / 1