mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 19:53:36 +00:00
Show humidity.
This commit is contained in:
parent
22a50b72fd
commit
16c887814e
@ -27,6 +27,9 @@
|
|||||||
</sup>
|
</sup>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</span>
|
</span>
|
||||||
|
{% if config.showHumidity and current.humidity %}
|
||||||
|
<span>{{ current.humidity }}</span><sup> <i class="wi wi-humidity humidityIcon"></i></sup>
|
||||||
|
{% endif %}
|
||||||
<span class="wi dimmed wi-{{current.nextSunAction()}}"></span>
|
<span class="wi dimmed wi-{{current.nextSunAction()}}"></span>
|
||||||
<span>
|
<span>
|
||||||
{% if current.nextSunAction() == "sunset" %}
|
{% if current.nextSunAction() == "sunset" %}
|
||||||
|
@ -20,9 +20,10 @@ class WeatherObject {
|
|||||||
this.sunrise = null
|
this.sunrise = null
|
||||||
this.sunset = null
|
this.sunset = null
|
||||||
this.temperature = null
|
this.temperature = null
|
||||||
this.minTemperature = null,
|
this.minTemperature = null
|
||||||
this.maxTemperature = null,
|
this.maxTemperature = null
|
||||||
this.weatherType = null
|
this.weatherType = null
|
||||||
|
this.humidity = null
|
||||||
}
|
}
|
||||||
|
|
||||||
cardinalWindDirection () {
|
cardinalWindDirection () {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user