Read the statement by Michael Teeuw here.
MMM-DarkSkyForecast - Yet ANOTHER weather module
-
@johans @hco125 i believe your issues are related. If the module runs in the web browser, but not on the mirror, then we’re seeing an issue with the difference in JavaScript syntax supported by Chrome versus Electron. I’ll need to debug your configs in Electron running on the Pi, as the errors will only be seen in the browser console.
Sorry I’ve been slow to respond. I just got back from visiting family for the holidays so I haven’t been checking this forum at all nor the issue list in my git repo. Will take a look and let you know if I find any problems.
-
Looks very nice. Is there a way to get the “feels like” temperature, too? I can’t find anything about it.
-
-
@djsunrise19 said in MMM-DarkSkyForecast - Yet ANOTHER weather module:
Looks very nice. Is there a way to get the “feels like” temperature, too? I can’t find anything about it.
I’m planning to add it. This is something I’d like as well.
-
@johans said in MMM-DarkSkyForecast - Yet ANOTHER weather module:
@j-e-f-f
No, It doesn’t come back.
I made a new installation on fresh SD card.
All works fine without installing your module, after that it’s not working anymore.Can you try something? Completely remove MMM-DarkSkyForecast (i.e.delete the directory with
rmdir -rf MMM-DarkSkyForecast
), and comment out the entry in the config. Restart MM. Does your player come back now? If so, try this:Reinstall my module using
git clone ...
but DON’T runnpm install
in theMMM-DarkSkyForecast
directory. All of the dependencies are currently included with Magic Mirror, so it should work as-is.Put the DarkSky entry back in your config and restart MM. If everything works then the issue is that my module is installing a different version of one of the dependencies than what is included in MM, and likely is causing the incompatibility with the MMM-Widget module.
-
@j-e-f-f Thank you for this nice weather module :)
I do have a strange occurrence happening however… no matter if i useca, us, si
for units in front of every high temperature number i get a square… the temperature is displayed along with that square … what is that??Oh another thing …how can i make the background of your module non transparent/black or semi transparent?? I am trying to use the @Sean MMM-WeatherBackground and the majority of pictures are too bright to read this module.
-
This post is deleted! -
Any ideas at what those squares are in front of my temperature numbers everybody ?? ;)
-
@richland007 said in MMM-DarkSkyForecast - Yet ANOTHER weather module:
how can i make the background of your module non transparent/black or semi transparent??
Try this in your
custom.css
file:.MMM-DarkSkyForecast .module-content { background-color: rgba(0,0,0,0.5); }
The first three parameters
0,0,0
are the color (in this case black), and the last parameter0.5
is the level of transparency. Adjust accordingly to suit your needs. -
@richland007 said in MMM-DarkSkyForecast - Yet ANOTHER weather module:
Any ideas at what those squares are in front of my temperature numbers everybody ?? ;)
No idea why this is happening, but it generally means that the browser is trying to render a character that is outside of the character set.
Can you PM me with your config? I wonder if the data is providing those characters.