mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-01-31 06:39:11 +00:00
10_pilight_ctrl: support protocol heitech
git-svn-id: https://svn.fhem.de/fhem/trunk@14997 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
41665439f8
commit
988bf6eaf7
@ -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
|
||||
|
@ -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;}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user