diff --git a/netatmo.js b/netatmo.js index 8157fcd..d8bf289 100755 --- a/netatmo.js +++ b/netatmo.js @@ -286,7 +286,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}`// + '°' @@ -318,7 +318,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 '°'