@RedNax
You, sir, are amazing :). Thanks, man, I just checked this thread to see if there were any more ideas on how to get night-time weather icons to appear and have only just now seen that you have already fixed my problem!! Thanks for this amazing update, at this stage I’m only good at fiddling with code that has already been written, but I’m not good enough myself to add in an icon table change based on the time of day.
For some weird reason, in the css file the night-time clear icon is defined as “wi-nt-clear” and not as wi-night-clear" , you need to change that in your code to make the night-time clear icon appear (or change it in the css file, which is what I did in my configuration).
Funnily enough, this is what happens now once you change that and check out the mirror after sundown (the forecast starts using the night icons):
![]()
I was able to fix this behaviour myself, first I attacked line 461
this.iconTableHeader = (sunrise < now && sunset > now) ? this.config.iconTableDay : this.config.iconTableNight;
this.iconTable = this.config.iconTableDay;
This is what I did to line 490:
this.weatherTypeHeader = this.iconTableHeader[data.current_observation.icon];
this.weatherType = this.iconTable[data.current_observation.icon];
Finally, I changed line 178 to:
weatherIcon.className = "wi weathericon " + this.weatherTypeHeader;
Not sure if this is the best way of implementing a fix, but this seems to have resolved the issues I was facing :).
![]()
I’m all happy now, thanks again, love your modifications to the module which have allowed me to add in some modifications of my own. I suppose there is a way to somehow upload my changes to github to suggest some changes to the developer but since I’m pretty much a newbie at this stage, I have no idea how ^^.
So, all’s well, right? Well… :D
I noticed that the weather-icons set has different icons depending on the current moon phase. Could you point me in the right direction as to what code I would have to add in to pull this information from the wunderground.com API?Maybe I could manage to have the mirror only show the full-moon night-time icons when there actually is a full moon outside.
EDIT:
I realized there are more icons that I would change in the icon table, here’s my version:
iconTableNight: {
"chanceflurries": "wi-night-snow-wind",
"chancerain": "wi-night-showers",
"chancesleet": "wi-night-sleet",
"chancesnow": "wi-night-alt-snow",
"chancetstorms": "wi-night-alt-storm-showers",
"clear": "wi-stars",
"cloudy": "wi-night-alt-cloudy",
"flurries": "wi-night-alt-snow-wind",
"fog": "wi-night-fog",
"haze": "wi-night-alt-cloudy-windy",
"mostlycloudy": "wi-night-alt-cloudy",
"mostlysunny": "wi-night-alt-partly-cloudy",
"partlycloudy": "night-alt-partly-cloudy",
"partlysunny": "wi-night-alt-partly-cloudy",
"rain": "wi-night-alt-rain",
"sleet": "wi-night-alt-sleet",
"snow": "wi-night-alt-snow",
"tstorms": "wi-night-alt-thunderstorm"
},
