mirror of
https://github.com/home-assistant/core.git
synced 2025-07-17 10:17:09 +00:00
Merge pull request #833 from eiaro/dev
Added more sensors to Telldus Live
This commit is contained in:
commit
cf1f9a29bf
@ -22,10 +22,22 @@ DEPENDENCIES = ['tellduslive']
|
|||||||
|
|
||||||
SENSOR_TYPE_TEMP = "temp"
|
SENSOR_TYPE_TEMP = "temp"
|
||||||
SENSOR_TYPE_HUMIDITY = "humidity"
|
SENSOR_TYPE_HUMIDITY = "humidity"
|
||||||
|
SENSOR_TYPE_RAINRATE = "rrate"
|
||||||
|
SENSOR_TYPE_RAINTOTAL = "rtot"
|
||||||
|
SENSOR_TYPE_WINDDIRECTION = "wdir"
|
||||||
|
SENSOR_TYPE_WINDAVERAGE = "wavg"
|
||||||
|
SENSOR_TYPE_WINDGUST = "wgust"
|
||||||
|
SENSOR_TYPE_WATT = "watt"
|
||||||
|
|
||||||
SENSOR_TYPES = {
|
SENSOR_TYPES = {
|
||||||
SENSOR_TYPE_TEMP: ['Temperature', TEMP_CELCIUS, "mdi:thermometer"],
|
SENSOR_TYPE_TEMP: ['Temperature', TEMP_CELCIUS, "mdi:thermometer"],
|
||||||
SENSOR_TYPE_HUMIDITY: ['Humidity', '%', "mdi:water"],
|
SENSOR_TYPE_HUMIDITY: ['Humidity', '%', "mdi:water"],
|
||||||
|
SENSOR_TYPE_RAINRATE: ['Rain rate', 'mm', "mdi:water"],
|
||||||
|
SENSOR_TYPE_RAINTOTAL: ['Rain total', 'mm', "mdi:water"],
|
||||||
|
SENSOR_TYPE_WINDDIRECTION: ['Wind direction', '', ""],
|
||||||
|
SENSOR_TYPE_WINDAVERAGE: ['Wind average', 'm/s', ""],
|
||||||
|
SENSOR_TYPE_WINDGUST: ['Wind gust', 'm/s', ""],
|
||||||
|
SENSOR_TYPE_WATT: ['Watt', 'W', ""],
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user