mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-04-06 12:18:46 +00:00
CUL_MAX: fix default configuration after pairing
git-svn-id: https://svn.fhem.de/fhem/trunk@2506 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
9704c53279
commit
4c83b9be1f
@ -26,6 +26,8 @@ my $resendRetries = 0; #how often resend before giving up?
|
|||||||
|
|
||||||
my $ackTimeout = 3; #seconds
|
my $ackTimeout = 3; #seconds
|
||||||
|
|
||||||
|
my $defaultWeekprofile = "444855084520452045204520452045204520452045204520452044485508452045204520452045204520452045204520452045204448546c44cc55144520452045204520452045204520452045204448546c44cc55144520452045204520452045204520452045204448546c44cc55144520452045204520452045204520452045204448546c44cc55144520452045204520452045204520452045204448546c44cc5514452045204520452045204520452045204520";
|
||||||
|
|
||||||
sub
|
sub
|
||||||
CUL_MAX_Initialize($)
|
CUL_MAX_Initialize($)
|
||||||
{
|
{
|
||||||
@ -228,15 +230,16 @@ CUL_MAX_Parse($$)
|
|||||||
if($shash->{pairmode}) {
|
if($shash->{pairmode}) {
|
||||||
Log 3, "CUL_MAX_Parse: Pairing device $src of type $device_types{$type} with serial $serial";
|
Log 3, "CUL_MAX_Parse: Pairing device $src of type $device_types{$type} with serial $serial";
|
||||||
CUL_MAX_Send($shash, "PairPong", $src, "00");
|
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});
|
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"]) {
|
} elsif($msgType ~~ ["ShutterContactState", "WallThermostatState", "ThermostatState", "PushButtonState"]) {
|
||||||
Dispatch($shash, "MAX,$isToMe,$msgType,$src,$payload", {RAWMSG => $rmsg});
|
Dispatch($shash, "MAX,$isToMe,$msgType,$src,$payload", {RAWMSG => $rmsg});
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user