From 9f7dc6557dde968b22a5df459bbec1186d8f189d Mon Sep 17 00:00:00 2001
From: rudolfkoenig <>
Date: Fri, 9 May 2014 13:55:15 +0000
Subject: [PATCH] ZWave: Protection class by hschmitt (forum #23405)
git-svn-id: https://svn.fhem.de/fhem/trunk/fhem@5796 2b470e98-0d58-463d-a4d8-8e2adae1ed80
---
FHEM/10_ZWave.pm | 24 +++++++++++++++++++++++-
1 file changed, 23 insertions(+), 1 deletion(-)
diff --git a/FHEM/10_ZWave.pm b/FHEM/10_ZWave.pm
index 3a3707366..65b43d24d 100755
--- a/FHEM/10_ZWave.pm
+++ b/FHEM/10_ZWave.pm
@@ -168,7 +168,14 @@ my %zwave_class = (
parse => { "..7105(..)(..)" => '"alarm_type_$1:level $2"',}, },
MANUFACTURER_SPECIFIC => { id => '72', },
POWERLEVEL => { id => '73', },
- PROTECTION => { id => '75', },
+ PROTECTION => { id => '75',
+ set => { protectionOff => "0100",
+ protectionSeq => "0101",
+ protectionOn => "0102", },
+ get => { protection => "02", },
+ parse => { "032600" => "protection:off",
+ "032601" => "protection:seq",
+ "032602" => "protection:on", }, },
LOCK => { id => '76', },
NODE_NAMING => { id => '77', },
FIRMWARE_UPDATE_MD => { id => '7a', },
@@ -840,6 +847,14 @@ s2Hex($)
Reset the configuration parameter for the cfgAddress parameter to its
default value. See the device documentation to determine this value.
+
Class PROTECTION
+