Read the statement by Michael Teeuw here.
MMM-DarkSkyForecast - Yet ANOTHER weather module
-
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.
-
@j-e-f-f Thank you for your reply.
Do you want my entire MM config.js file or just the MMM-DarkSkyForecast part of it??
D -
EDIT: SORRY, nevermind… small mistake in my latitude gave wrong values…
-
@j-e-f-f any way I can see the wind direction too?
-
@cr4z33 it is shown if you include
concise: false
into the config.
That’s the way to show more info.
If you want to ONLY show the wind direction you would have to manipulate the .js file manually in line 429windSpeed: Math.round(speed) + " " + this.getUnit("windSpeed") + (!this.config.concise ? " " + this.getOrdinal(bearing) : ""),
into
windSpeed: Math.round(speed) + " " + this.getUnit("windSpeed") + " " + this.getOrdinal(bearing),
In my case this unfortunately messes up the layout a bit. But it seems to work.
-
@lavolp3 said in MMM-DarkSkyForecast - Yet ANOTHER weather module:
@cr4z33 it is shown if you include
concise: false
into the config.
That’s the way to show more info.That’s already perfect thanks! :thumbs_up_medium-light_skin_tone:
-
@richland007 said in MMM-DarkSkyForecast - Yet ANOTHER weather module:
@j-e-f-f Thank you for your reply.
Do you want my entire MM config.js file or just the MMM-DarkSkyForecast part of it??
DJust the dark sky portion.
-
Hey i have your module working but when i also add the MMM-Awsome-alexa module it moves to this location even though ive set it to display in the top_right. It goes into the right location when mmm-awesome-alexa is removed. Any ideas ?