From 4c83b9be1fd4811d46e9ae761499b4f3b02045b6 Mon Sep 17 00:00:00 2001 From: mgehre <> Date: Sun, 13 Jan 2013 15:50:41 +0000 Subject: [PATCH] CUL_MAX: fix default configuration after pairing git-svn-id: https://svn.fhem.de/fhem/trunk@2506 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/FHEM/14_CUL_MAX.pm | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/fhem/FHEM/14_CUL_MAX.pm b/fhem/FHEM/14_CUL_MAX.pm index 65d65e226..a5721c643 100644 --- a/fhem/FHEM/14_CUL_MAX.pm +++ b/fhem/FHEM/14_CUL_MAX.pm @@ -26,6 +26,8 @@ my $resendRetries = 0; #how often resend before giving up? my $ackTimeout = 3; #seconds +my $defaultWeekprofile = "444855084520452045204520452045204520452045204520452044485508452045204520452045204520452045204520452045204448546c44cc55144520452045204520452045204520452045204448546c44cc55144520452045204520452045204520452045204448546c44cc55144520452045204520452045204520452045204448546c44cc55144520452045204520452045204520452045204448546c44cc5514452045204520452045204520452045204520"; + sub CUL_MAX_Initialize($) { @@ -228,15 +230,16 @@ CUL_MAX_Parse($$) if($shash->{pairmode}) { Log 3, "CUL_MAX_Parse: Pairing device $src of type $device_types{$type} with serial $serial"; CUL_MAX_Send($shash, "PairPong", $src, "00"); - #TODO: wait for Ack Dispatch($shash, "MAX,$isToMe,define,$src,$device_types{$type},$serial,0,0", {RAWMSG => $rmsg}); - if($device_types{$type} eq "HeatingThermostat") { - #This are the default values that a device has after factory reset or pairing - Dispatch($shash, "MAX,$isToMe,HeatingThermostatConfig,$src,17,21,80,5,0,30.5,4.5,12,15", {RAWMSG => $rmsg}); - } - #TODO: send TimeInformation - } + #This are the default values that a device has after factory reset or pairing + if($device_types{$type} eq "HeatingThermostat") { + Dispatch($shash, "MAX,$isToMe,HeatingThermostatConfig,$src,17,21,30.5,4.5,80,5,0,12,15,100,0,0,12,$defaultWeekprofile", {RAWMSG => $rmsg}); + } elsif($device_types{$type} eq "WallMountedThermostat") { + Dispatch($shash, "MAX,$isToMe,WallThermostatConfig,$src,17,21,30.5,4.5,$defaultWeekprofile", {RAWMSG => $rmsg}); + } + #Todo: CUL_MAX_SendTimeInformation($shash, $src); on Ack for our PairPong + } } elsif($msgType ~~ ["ShutterContactState", "WallThermostatState", "ThermostatState", "PushButtonState"]) { Dispatch($shash, "MAX,$isToMe,$msgType,$src,$payload", {RAWMSG => $rmsg}); } else {