Thanks! It works!
Read the statement by Michael Teeuw here.
Posts
-
RE: Default Weather Module Time Incorrect
I should add that on openweathermap.org for that location, it shows Sunny.
-
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.
-
RE: No flights on map.
Since I have you, and now that I have a look at a populated display. Is there a section in the MMM-Flights.js where I can modify what prints regarding flight info.
I want to make things with a little more brevity, and maybe save some space. I would like to omit full airport names and full Airline names.
When a long string of text displays it expands the map onto other stuff on my display.
Thanks.
-
RE: No flights on map.
@karsten13 Sorry, I am sometimes wishing to be too anonymous. However, I was double checking my Min and Max values. I initially thought that because my map rendered that I had them correct; I swapped the values, and all is perfect.
I can now see flight numbers at a glance without having to pull out my phone. So good.
Thanks so much!
-
RE: No flights on map.
@karsten13
Thanks for looking into this for me. Here is my config:
{
disabled: false,
module: “MMM-Flights”,
position: “top_left”,
config: {
laMin: XX.XX,
laMax: XX.XX,
loMin: -YY.YY,
loMax: -YY.YY,
},
},My map draws correctly, but it just gives me “No flights in chosen area.” Comparison to same area on my flightradar24 app shows flights.
-
No flights on map.
Re: MMM-Flights
I got everything up and running; Map displays correctly, but there are not flights populating. I double checked from flightradar, and they are up there.
What are some things to check?
Thanks.