From 4738b32715c8132437b87321dcd29916ea6b42d7 Mon Sep 17 00:00:00 2001 From: rudolfkoenig <> Date: Wed, 30 Dec 2015 10:08:15 +0000 Subject: [PATCH] 10_ZWave.pm: changes thermostatMode answer from state (Forum #46402) git-svn-id: https://svn.fhem.de/fhem/trunk@10307 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/FHEM/10_ZWave.pm | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/fhem/FHEM/10_ZWave.pm b/fhem/FHEM/10_ZWave.pm index 95558bb87..59258aa9f 100755 --- a/fhem/FHEM/10_ZWave.pm +++ b/fhem/FHEM/10_ZWave.pm @@ -155,14 +155,14 @@ my %zwave_class = ( tmCooling => "010b", tmManual => "011f" }, get => { thermostatMode => "02" }, - parse => { "03400300" => "state:off", - "0340030b" => "state:cooling", - "03400301" => "state:heating", - "0340031f" => "state:manual", - "03400100" => "state:setTmOff", - "03400101" => "state:setTmHeating", - "0340010b" => "state:setTmCooling", - "0340011f" => "state:setTmManual", + parse => { "03400300" => "thermostatMode:off", + "0340030b" => "thermostatMode:cooling", + "03400301" => "thermostatMode:heating", + "0340031f" => "thermostatMode:manual", + "03400100" => "thermostatMode:setTmOff", + "03400101" => "thermostatMode:setTmHeating", + "0340010b" => "thermostatMode:setTmCooling", + "0340011f" => "thermostatMode:setTmManual", } } , PREPAYMENT_ENCAPSULATION => { id => '41' }, THERMOSTAT_OPERATING_STATE=>{ id => '42' },