From 988bf6eaf70fb9466941275bbc0b74c6b8d3852d Mon Sep 17 00:00:00 2001 From: Risiko <> Date: Sun, 3 Sep 2017 17:27:39 +0000 Subject: [PATCH] 10_pilight_ctrl: support protocol heitech git-svn-id: https://svn.fhem.de/fhem/trunk@14997 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/CHANGED | 1 + fhem/FHEM/10_pilight_ctrl.pm | 3 +++ 2 files changed, 4 insertions(+) diff --git a/fhem/CHANGED b/fhem/CHANGED index 9806481d0..4667a9f10 100644 --- a/fhem/CHANGED +++ b/fhem/CHANGED @@ -1,5 +1,6 @@ # Add changes at the top of the list. Keep it in ASCII, and 80-char wide. # Do not insert empty lines here, update check depends on it. + - feature: 10_pilight_ctrl: support protocol heitech - feature: 91_sequence: add delay and omit name options (Forum #75925) - bugfix: 74_AMADDevice: fix a lot of Bugs - feature: 93_Log2Syslog: V3.1.0, get certinfo added diff --git a/fhem/FHEM/10_pilight_ctrl.pm b/fhem/FHEM/10_pilight_ctrl.pm index 1e105c6a1..f4cd3000e 100644 --- a/fhem/FHEM/10_pilight_ctrl.pm +++ b/fhem/FHEM/10_pilight_ctrl.pm @@ -50,6 +50,7 @@ # V 1.23 2017-04-08 - NEW: support new temperature protocols bmp085 and bmp180 # V 1.24 2017-04-22 - FIX: GS-iwds07 support # V 1.25 2017-04-23 - FIX: react only of global::INITIALIZED m/^INITIALIZED$/ +# V 1.26 2017-09-03 - FIX: heitech support ############################################## package main; @@ -429,6 +430,7 @@ sub pilight_ctrl_Write($@) case m/mumbi/ {$code .= "\"systemcode\":$id,\"unitcode\":$unit,";} case m/brennenstuhl/ {$code .= "\"systemcode\":$id,\"unitcode\":$unit,";} case m/pollin/ {$code .= "\"systemcode\":$id,\"unitcode\":$unit,";} + case m/heitech/ {$code .= "\"systemcode\":$id,\"unitcode\":$unit,";} case m/impuls/ {$code .= "\"systemcode\":$id,\"programcode\":$unit,";} case m/rsl366/ {$code .= "\"systemcode\":$id,\"programcode\":$unit,";} case m/daycom/ { if (!defined($syscode)) { @@ -839,6 +841,7 @@ sub pilight_ctrl_Parse($$) case m/cleverwatts/ {$protoID = 1;} case m/intertechno_old/ {$protoID = 1;} case m/quigg_gt/ {$protoID = 1;} + case m/heitech/ {$protoID = 1;} case m/dimmer/ {$protoID = 2;}