A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
Default Weather Module Time Incorrect
-
I have the default module up and running, but the time appears to be off. For example, my local time currently is 1500 and the Current Weather shows the moon and the sunrise/sunset display is showing the next sunrise time. The header also says ETC/GMT (which I do not have set in my config.js).
// Current Weather Module { disabled: false, module: "weather", position: "top_right", header: "Current Weather", config: { weatherProvider: "openweathermap", type: "current", location: "Norwich", locationID: "4839843", apiKey: "XXXX" } }, // 5-Day Weather Forecast Module { disabled: false, module: "weather", position: "top_right", header: "5-Day Weather Forecast", config: { weatherProvider: "openweathermap", type: "forecast", // Use "forecast" for the 5-day forecast location: "Norwich", locationID: "4839843", apiKey: "XXXXX", colored: true } },
My clock module is set to correct time, and my pi is also set correctly.
Any where else I should check? Thanks.
-
@MikeTheYeti the settings for open weather use the lat/lon
Properties now, w endpoint /onecall as the default -
I should add that on openweathermap.org for that location, it shows Sunny.
-
@MikeTheYeti the settings for open weather use the lat/lon
Properties now, w endpoint /onecall as the default -
-
Thanks! It works!
-