Convert kpH and mpH to kph and mph (#6316)

There is no reason for the H to be capitalized. Changing it to lowercase increases consistency with other components and allows for use of the min/max sensor, which throws an error if the units of measurement are not the same.
pull/6324/head
ericgingras 2017-02-28 22:34:40 -06:00 committed by Fabian Affolter
parent 41f558b181
commit 7bc2e1238d
1 changed files with 4 additions and 4 deletions

View File

@ -68,10 +68,10 @@ SENSOR_TYPES = {
'weather': ['Weather Summary', None], 'weather': ['Weather Summary', None],
'wind_degrees': ['Wind Degrees', None], 'wind_degrees': ['Wind Degrees', None],
'wind_dir': ['Wind Direction', None], 'wind_dir': ['Wind Direction', None],
'wind_gust_kph': ['Wind Gust', 'kpH'], 'wind_gust_kph': ['Wind Gust', 'kph'],
'wind_gust_mph': ['Wind Gust', 'mpH'], 'wind_gust_mph': ['Wind Gust', 'mph'],
'wind_kph': ['Wind Speed', 'kpH'], 'wind_kph': ['Wind Speed', 'kph'],
'wind_mph': ['Wind Speed', 'mpH'], 'wind_mph': ['Wind Speed', 'mph'],
'wind_string': ['Wind Summary', None], 'wind_string': ['Wind Summary', None],
} }