From c5a70e3e367c92d5e506cee8129acbd7ef9c967c Mon Sep 17 00:00:00 2001 From: rudolfkoenig <> Date: Sun, 7 Nov 2021 13:19:34 +0000 Subject: [PATCH] 10_ZWave.pm: add missing reported values for THERMOSTAT_MODE (Forum #123932) git-svn-id: https://svn.fhem.de/fhem/trunk@25192 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/FHEM/10_ZWave.pm | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/fhem/FHEM/10_ZWave.pm b/fhem/FHEM/10_ZWave.pm index d98da96c7..5aac9ad2f 100644 --- a/fhem/FHEM/10_ZWave.pm +++ b/fhem/FHEM/10_ZWave.pm @@ -205,7 +205,7 @@ my %zwave_class = ( tmFurnace => "0107", tmDryAir => "0108", tmMoistAir => "0109", - tmaAuto => "010a", + tmAutoChange=> "010a", tmEnergySaveHeating => "010b", tmEnergySaveCooling => "010c", tmAway => "010d", @@ -216,8 +216,16 @@ my %zwave_class = ( "0.400301" => "thermostatMode:heating", "0.400302" => "thermostatMode:cooling", "0.400303" => "thermostatMode:auto", + "0.400304" => "thermostatMode:auxiliary", + "0.400305" => "thermostatMode:resume", "0.400306" => "thermostatMode:fanOnly", + "0.400307" => "thermostatMode:furnace", + "0.400308" => "thermostatMode:dryAir", + "0.400309" => "thermostatMode:moistAir", + "0.40030a" => "thermostatMode:autoChange", "0.40030b" => "thermostatMode:energySaveHeating", + "0.40030c" => "thermostatMode:energySaveCooling", + "0.40030d" => "thermostatMode:away", "0.40030f" => "thermostatMode:fullPower", "0.40031f" => "thermostatMode:manual", "0.400100" => "thermostatMode:setTmOff",