Privacywonk / MMM-Surf

MagicMirror module that pulls in tide, water temp, and Magicseaweed data to show an at-a-glance surf report for your favorite spot.
Other
5 stars 2 forks source link

Humidity equiation #43

Closed Privacywonk closed 5 years ago

Privacywonk commented 5 years ago

Issue: Humidity would be displayed as "55.00000000000001"

old processing: this.Humidity = data.currently.humidity*100;

update: this.Humidty = Math.round(data.currently.humidity*100);