mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-01-31 18:59:33 +00:00
sensor UPM WT450H added
git-svn-id: https://svn.fhem.de/fhem/trunk@1352 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
04e9fe088f
commit
d2d9cb65ae
@ -19,6 +19,7 @@
|
|||||||
# * "WTGR800_T" is WTGR800
|
# * "WTGR800_T" is WTGR800
|
||||||
# * "THGR918" is THGR918, THGRN228, THGN500
|
# * "THGR918" is THGR918, THGRN228, THGN500
|
||||||
# * "TFATS34C" is TFA TS34C
|
# * "TFATS34C" is TFA TS34C
|
||||||
|
# * "WT450H" is UPM WT450H
|
||||||
#
|
#
|
||||||
# temperature/humidity/pressure sensors (TEMPHYDROBARO):
|
# temperature/humidity/pressure sensors (TEMPHYDROBARO):
|
||||||
# * "BTHR918" is BTHR918
|
# * "BTHR918" is BTHR918
|
||||||
@ -320,7 +321,7 @@ sub common_anemometer {
|
|||||||
if (exists $devname{$bytes->[1]}) {
|
if (exists $devname{$bytes->[1]}) {
|
||||||
$dev_type = $devname{$bytes->[1]};
|
$dev_type = $devname{$bytes->[1]};
|
||||||
} else {
|
} else {
|
||||||
Log 1,"TRX_WEATHER: error undefined subtype=$subtype";
|
Log 1,"TRX_WEATHER: common_anemometer error undefined subtype=$subtype";
|
||||||
my @res = ();
|
my @res = ();
|
||||||
return @res;
|
return @res;
|
||||||
}
|
}
|
||||||
@ -392,7 +393,7 @@ sub common_temp {
|
|||||||
if (exists $devname{$bytes->[1]}) {
|
if (exists $devname{$bytes->[1]}) {
|
||||||
$dev_type = $devname{$bytes->[1]};
|
$dev_type = $devname{$bytes->[1]};
|
||||||
} else {
|
} else {
|
||||||
Log 1,"RFX_WEATHER: error undefined subtype=$subtype";
|
Log 1,"RFX_WEATHER: common_temp error undefined subtype=$subtype";
|
||||||
my @res = ();
|
my @res = ();
|
||||||
return @res;
|
return @res;
|
||||||
}
|
}
|
||||||
@ -441,12 +442,13 @@ sub common_temphydro {
|
|||||||
0x05 => "WTGR800_T",
|
0x05 => "WTGR800_T",
|
||||||
0x06 => "THGR918",
|
0x06 => "THGR918",
|
||||||
0x07 => "TFATS34C",
|
0x07 => "TFATS34C",
|
||||||
|
0x08 => "WT450H",
|
||||||
);
|
);
|
||||||
|
|
||||||
if (exists $devname{$bytes->[1]}) {
|
if (exists $devname{$bytes->[1]}) {
|
||||||
$dev_type = $devname{$bytes->[1]};
|
$dev_type = $devname{$bytes->[1]};
|
||||||
} else {
|
} else {
|
||||||
Log 1,"RFX_WEATHER: error undefined subtype=$subtype";
|
Log 1,"RFX_WEATHER: common_temp error undefined subtype=$subtype";
|
||||||
my @res = ();
|
my @res = ();
|
||||||
return @res;
|
return @res;
|
||||||
}
|
}
|
||||||
@ -493,7 +495,7 @@ sub common_temphydrobaro {
|
|||||||
if (exists $devname{$bytes->[1]}) {
|
if (exists $devname{$bytes->[1]}) {
|
||||||
$dev_type = $devname{$bytes->[1]};
|
$dev_type = $devname{$bytes->[1]};
|
||||||
} else {
|
} else {
|
||||||
Log 1,"RFX_WEATHER: error undefined subtype=$subtype";
|
Log 1,"RFX_WEATHER: common_temphydrobaro error undefined subtype=$subtype";
|
||||||
my @res = ();
|
my @res = ();
|
||||||
return @res;
|
return @res;
|
||||||
}
|
}
|
||||||
@ -543,7 +545,7 @@ sub common_rain {
|
|||||||
if (exists $devname{$bytes->[1]}) {
|
if (exists $devname{$bytes->[1]}) {
|
||||||
$dev_type = $devname{$bytes->[1]};
|
$dev_type = $devname{$bytes->[1]};
|
||||||
} else {
|
} else {
|
||||||
Log 1,"RFX_WEATHER: error undefined subtype=$subtype";
|
Log 1,"RFX_WEATHER: common_rain error undefined subtype=$subtype";
|
||||||
my @res = ();
|
my @res = ();
|
||||||
return @res;
|
return @res;
|
||||||
}
|
}
|
||||||
|
@ -33,7 +33,7 @@ my %flogpar = (
|
|||||||
"(THR128|THWR288A|THN132N).*"
|
"(THR128|THWR288A|THN132N).*"
|
||||||
=> { GPLOT => "temp4:Temp,", FILTER => "%NAME" },
|
=> { GPLOT => "temp4:Temp,", FILTER => "%NAME" },
|
||||||
# * temperature, humidity
|
# * temperature, humidity
|
||||||
"(THGR228N|THGR810|THGR918|THGR328N|RTGR328N|WTGR800_T).*"
|
"(THGR228N|THGR810|THGR918|THGR328N|RTGR328N|WTGR800_T|WT450H).*"
|
||||||
=> { GPLOT => "temp4hum4:Temp/Hum,", FILTER => "%NAME" },
|
=> { GPLOT => "temp4hum4:Temp/Hum,", FILTER => "%NAME" },
|
||||||
# * temperature, humidity, pressure
|
# * temperature, humidity, pressure
|
||||||
"(BTHR918N|BTHR918|BTHR918N).*"
|
"(BTHR918N|BTHR918|BTHR918N).*"
|
||||||
|
Loading…
Reference in New Issue
Block a user