Unit should be mph as that is what the metoffices datapoint API returns (#11760)

pull/11774/head
Ioan Loosley 2018-01-18 21:03:01 +00:00 committed by Fabian Affolter
parent 46bbd78b23
commit 0859e38bd5
1 changed files with 2 additions and 2 deletions

View File

@ -64,9 +64,9 @@ SENSOR_TYPES = {
'weather': ['Weather', None],
'temperature': ['Temperature', TEMP_CELSIUS],
'feels_like_temperature': ['Feels Like Temperature', TEMP_CELSIUS],
'wind_speed': ['Wind Speed', 'm/s'],
'wind_speed': ['Wind Speed', 'mph'],
'wind_direction': ['Wind Direction', None],
'wind_gust': ['Wind Gust', 'm/s'],
'wind_gust': ['Wind Gust', 'mph'],
'visibility': ['Visibility', None],
'visibility_distance': ['Visibility Distance', 'km'],
'uv': ['UV', None],