Skip to content

Commit

Permalink
Merge branch 'main' into test
Browse files Browse the repository at this point in the history
  • Loading branch information
CFenner committed Jun 24, 2024
2 parents f7d385a + e9938f2 commit 701c7de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions netatmo.js
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ Module.register('netatmo', {
return value.toFixed(1)// + ' mm/h'
case this.measurement.WIND_STRENGTH:
case this.measurement.GUST_STRENGTH:
return value.toFixed(0)// + ' m/s'
return value.toFixed(0)// + ' km/h'
case this.measurement.WIND_ANGLE:
case this.measurement.GUST_ANGLE:
return `${this.getDirection(value)} | ${value}`// + '°'
Expand Down Expand Up @@ -317,7 +317,7 @@ Module.register('netatmo', {
return 'mm/h'
case this.measurement.WIND_STRENGTH:
case this.measurement.GUST_STRENGTH:
return 'm/s'
return 'km/h'
case this.measurement.WIND_ANGLE:
case this.measurement.GUST_ANGLE:
return '°'
Expand Down

0 comments on commit 701c7de

Please sign in to comment.