From fe9cde905d6064a6711ca54d3f0dd2d1acad1675 Mon Sep 17 00:00:00 2001 From: wherzig <> Date: Sun, 24 Feb 2013 20:38:06 +0000 Subject: [PATCH] add new protocols for init display git-svn-id: https://svn.fhem.de/fhem/trunk@2801 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/FHEM/45_TRX.pm | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/fhem/FHEM/45_TRX.pm b/fhem/FHEM/45_TRX.pm index 4c8d1fcd8..2764321d7 100755 --- a/fhem/FHEM/45_TRX.pm +++ b/fhem/FHEM/45_TRX.pm @@ -284,7 +284,16 @@ TRX_DoInit($) $status .= $freq; $status .= ", " . sprintf "firmware=%d",$msg2; $status .= ", protocols enabled: "; - $status .= sprintf "undecoded, " if ($msg3 & 0x80); + $status .= "undecoded " if ($msg3 & 0x80); + $status .= "RFU6 " if ($msg3 & 0x40); + $status .= "RFU5 " if ($msg3 & 0x20); + $status .= "RFU4 " if ($msg3 & 0x10); + $status .= "Lighting4 " if ($msg3 & 0x08); + $status .= "FineOffset/Viking " if ($msg3 & 0x04); + $status .= "Rubicson " if ($msg3 & 0x02); + $status .= "AE/Blyss " if ($msg3 & 0x01); + $status .= "BlindsT1/T2/T3/T4 " if ($msg4 & 0x80); + $status .= "BlindsT0 " if ($msg4 & 0x40); $status .= "ProGuard " if ($msg4 & 0x20); $status .= "FS20 " if ($msg4 & 0x10); $status .= "LaCrosse " if ($msg4 & 0x08);