Read the statement by Michael Teeuw here.
MMM-forecast-io -- Localized up to the minute weather
-
@12wsx Did you try using Chromium as a browser? Midori may have a hard time rendering the page.
-
Hi this is this module in my config.js.
I simply put the “MMM-forecast-io-master” folder in /modules/default, I have also put my actual api key, latitude and longtitude values also in MMM-forecast-io.js. But no weather is showing, other modules working fine. Can anyone help please?{ module: 'MMM-forecast-io', position: 'top_right', config: { apiKey: 'MYAPIKEY', latitude: 53.4839, longitude: -2.2446 } },
-
@henryluyu said in MMM-forecast-io -- Localized up to the minute weather:
I simply put the “MMM-forecast-io-master” folder in /modules/default
- Folder name should just be MMM-forecast-io
- Goes in modules folder, not the default folder
I have also put my actual api key, latitude and longtitude values also in MMM-forecast-io.js.
That is not recommended. Putting those in your config.js will suffice.
-
Hi, is possible add “C” in all temperatures? Like 21 °C
and for wind add “km/h” like 8 km/h -
Hey all, anyone know how to get rid of the round bar in between the temps?
Thanks in advance.
-
@code999 you can comment out this line
forecastBar.appendChild(bar);
but it will look kind of bad. Those bars are sort of a default look that you get from darksky/forecast UI. -
@morozgrafix what file do I edit? I can not find that line to comment it out. Thanks.
-
@code999 it’s line 397 in MMM-fotecast-io.js https://github.com/dmcinnes/MMM-forecast-io/blob/77075e1c9011336f044d35f1c964fc93789a4201/MMM-forecast-io.js#L397
-
@code999 it’s in the MMM-forecast-io.js file.
You can either try to comment out (//) or delete line 397
forecastBar.appendChild(bar);
(only the bar)
or line 402forecastBarWrapper.appendChild(forecastBar);
(with temps)
But why are you trying to delete it? It really doesn’t make sense to me and will look kind of ugly I guess.
-
@lavolp3 @morozgrafix Thank you both. I like an even look and the bar IMO is unless. when there is a large difference in temp it looks ridiculous. I might add something between numbers to give it some space and cleaner look. I did it mainly for space. I have it on the right side with my calendar taking up most of the screen. Anyway thanks again.