2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-16 10:46:03 +00:00

UConv.pm: add Kelvin shortnames

git-svn-id: https://svn.fhem.de/fhem/trunk@12456 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
jpawlowski 2016-10-28 16:14:44 +00:00
parent 6bd74ba2b9
commit b30390fc7a

View File

@ -464,6 +464,10 @@ my %weather_readings = (
"short" => "Df",
"unit" => "f",
},
"dewpoint_k" => {
"short" => "Dk",
"unit" => "k",
},
"humidity" => {
"short" => "H",
"unit" => "hg",
@ -479,6 +483,10 @@ my %weather_readings = (
"short" => "Haf",
"unit" => "f",
},
"humidityabs_k" => {
"short" => "Hak",
"unit" => "k",
},
"indoordewpoint" => {
"unified" => "indoordewpoint_c", # link only
},
@ -490,6 +498,10 @@ my %weather_readings = (
"short" => "Dif",
"unit" => "f",
},
"indoordewpoint_k" => {
"short" => "Dik",
"unit" => "k",
},
"indoorhumidity" => {
"short" => "Hi",
"unit" => "hg",
@ -505,6 +517,10 @@ my %weather_readings = (
"short" => "Haif",
"unit" => "f",
},
"indoorhumidityabs_k" => {
"short" => "Haik",
"unit" => "k",
},
"indoortemperature" => {
"unified" => "indoortemperature_c", # link only
},
@ -516,6 +532,10 @@ my %weather_readings = (
"short" => "Tf",
"unit" => "f",
},
"indoortemperature_k" => {
"short" => "Tk",
"unit" => "k",
},
"israining" => {
"short" => "IR",
},
@ -643,6 +663,9 @@ my %weather_readings = (
"temp_f" => {
"unified" => "temperature_f", # link only
},
"temp_k" => {
"unified" => "temperature_k", # link only
},
"temperature" => {
"unified" => "temperature_c", # link only
},
@ -654,8 +677,12 @@ my %weather_readings = (
"short" => "Tf",
"unit" => "f",
},
"temperature_k" => {
"short" => "Tk",
"unit" => "k",
},
"visibility" => {
"unified" => "visibility_km", # link only
"unified" => "visibility_km", # link only
},
"visibility_km" => {
"short" => "V",
@ -666,7 +693,7 @@ my %weather_readings = (
"unit" => "mi",
},
"wind_chill" => {
"unified" => "wind_chill_c", # link only
"unified" => "wind_chill_c", # link only
},
"wind_chill_c" => {
"short" => "Wc",
@ -676,6 +703,10 @@ my %weather_readings = (
"short" => "Wcf",
"unit" => "f",
},
"wind_chill_k" => {
"short" => "Wck",
"unit" => "k",
},
"wind_compasspoint" => {
"short" => "Wdc",
},