2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 06:39:11 +00:00

14_SD_UT.pm: fixed Manax MX-RCS250 | mumbi button ALL

14_SD_BELL.pm: added model Grothe_Mistral_SE_03 | Grothe_Mistral_SE_01
               fixed repeats Heidemann_|_Heidemann_HX_|_VTX-BELL

git-svn-id: https://svn.fhem.de/fhem/trunk@20137 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
HomeAuto_User 2019-09-09 15:58:29 +00:00
parent 0caff8eeff
commit 438d8e7bd1
3 changed files with 98 additions and 47 deletions

View File

@ -1,5 +1,8 @@
# Add changes at the top of the list. Keep it in ASCII, and 80-char wide.
# Do not insert empty lines here, update check depends on it.
- feature: 14_SD_BELL: added model Grothe_Mistral_SE_03 | Grothe_Mistral_SE_01
fixed repeats Heidemann_|_Heidemann_HX_|_VTX-BELL
- bugfix: 14_SD_UT: fixed Manax MX-RCS250 | mumbi button ALL
- feature: 88_HMCCU: new rpc set command
- bugfix: 74_AMADautomagicFlowset: change Flowset Action TTS to use network
engine

View File

@ -3,7 +3,7 @@
#
# The file is part of the SIGNALduino project.
# The purpose of this module is to support many wireless BELL devices.
# 2018 - HomeAuto_User & elektron-bbs
# 2018 / 2019 - HomeAuto_User & elektron-bbs
#
####################################################################################################################################
# - wireless doorbell TCM_234759 Tchibo [Protocol 15] length 12-20 (3-5)
@ -35,6 +35,7 @@ package main;
use strict;
use warnings;
use lib::SD_Protocols;
### HASH for all modul models ###
my %models = (
@ -67,18 +68,26 @@ my %models = (
Protocol => "79",
doubleCode => "no"
},
"Grothe_Mistral_SE_01" => { hex_lengh => "6", # length of device def, not message!!! message length = "10"
Protocol => "96",
doubleCode => "no"
},
"Grothe_Mistral_SE_03" => { hex_lengh => "6", # length of device def, not message!!! message length = "12"
Protocol => "96",
doubleCode => "no"
},
);
sub SD_BELL_Initialize($) {
my ($hash) = @_;
$hash->{Match} = "^P(?:15|32|41|42|57|79)#.*";
$hash->{Match} = "^P(?:15|32|41|42|57|79|96)#.*";
$hash->{DefFn} = "SD_BELL::Define";
$hash->{UndefFn} = "SD_BELL::Undef";
$hash->{ParseFn} = "SD_BELL::Parse";
$hash->{SetFn} = "SD_BELL::Set";
$hash->{AttrFn} = "SD_BELL::Attr";
$hash->{AttrList} = "repeats:1,2,3,4,5,6,7,8,9,10,11,12,13,14,15 IODev do_not_notify:1,0 ignore:0,1 showtime:1,0 model:".join(",", sort keys %models) . " $main::readingFnAttributes";
$hash->{AttrList} = "repeats:1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,20,25,30 IODev do_not_notify:1,0 ignore:0,1 showtime:1,0 model:".join(",", sort keys %models) . " $main::readingFnAttributes";
$hash->{AutoCreate} = {"SD_BELL.*" => {FILTER => "%NAME", autocreateThreshold => "4:180", GPLOT => ""}};
}
@ -128,7 +137,7 @@ sub Define($$) {
# Argument 0 1 2 3 4
return "SD_BELL: wrong syntax: define <name> SD_BELL <Protocol> <HEX-Value> <optional IODEV>" if(int(@a) < 3 || int(@a) > 5);
### checks - doubleCode yes ###
return "SD_BELL: wrong <protocol> $a[2]" if not($a[2] =~ /^(?:15|32|41|42|57|79)/s);
return "SD_BELL: wrong <protocol> $a[2]" if not($a[2] =~ /^(?:15|32|41|42|57|79|96)/s);
return "SD_BELL: wrong HEX-Value! Protocol $a[2] HEX-Value <$a[3]> not HEX (0-9 | a-f | A-F)" if (($protocol != 41) && not $a[3] =~ /^[0-9a-fA-F]*$/s);
return "SD_BELL: wrong HEX-Value! Protocol $a[2] HEX-Value <$a[3]> not HEX (0-9 | a-f | A-F) or length wrong!" if (($protocol == 41) && not $a[3] =~ /^[0-9a-fA-F]{8}_[0-9a-fA-F]{8}$/s);
@ -166,9 +175,26 @@ sub Set($$$@) {
if ($cmd eq "?") {
$ret .= "ring:noArg";
$ret .= " Alarm:noArg" if ($protocol == 96); # only Grothe_Mistral_SE
} else {
my $rawDatasend = $split[1]; # hex value from def without protocol
if ($rawDatasend =~ /[0-9a-fA-F]_[0-9a-fA-F]/s) { # check doubleCode in def
if ($protocol == 96) {; # only Grothe_Mistral_SE
# set sduino434 raw SC;;R=5;;SR;;R=1;;P0=1500;;P1=-215;;D=01;;SM;;R=1;;C=215;;D=47104762003F;;
my $msg = "SC;;R=";
$msg .= $repeats;
$msg .= ";SR;R=1;P0=1500;P1=-215;D=01;SM;R=1;C=215;D=47";
my $id = $split[1];
$id = sprintf('%06X', hex(substr($id,0,6)) | 0x800000) if ($cmd eq "Alarm"); # set alarm bit
$msg .= $id;
my $checksum = sprintf('%02X', ((0x47 + hex(substr($id,0,2)) + hex(substr($id,2,2)) + hex(substr($id,4,2))) & 0xFF));
$msg .= $checksum;
my $model = AttrVal($name,'model', 'Grothe_Mistral_SE_01');
$msg .= "3F" if ($model eq "Grothe_Mistral_SE_03"); # only Grothe_Mistral_SE_03
$msg .= ";";
IOWrite($hash, 'raw', $msg);
Log3 $name, 4, "$ioname: $name $msg";
} else {
my $rawDatasend = $split[1]; # hex value from def without protocol
if ($rawDatasend =~ /[0-9a-fA-F]_[0-9a-fA-F]/s) { # check doubleCode in def
$doubleCodeCheck = 1;
@splitCode = split("_", $rawDatasend);
$rawDatasend = $splitCode[0];
@ -181,20 +207,19 @@ sub Set($$$@) {
my $hlen = length($rawDatasend);
my $blen = $hlen * 4;
my $bitData = unpack("B$blen", pack("H$hlen", $rawDatasend));
my $msg = "P$protocol#" . $bitData;
$msg .= "#R$repeats";
Log3 $name, 3, "$ioname: $name sendMsg=$msg";
if ($cmd ne "?") {
$cmd = "ring";
if ($model eq "Heidemann_|_Heidemann_HX_|_VTX-BELL") {
$msg .= "#R135";
} else {
$msg .= "#R$repeats";
}
Log3 $name, 3, "$ioname: $name set $cmd" if ($cmd ne "?");
IOWrite($hash, 'sendMsg', $msg);
Log3 $name, 3, "$ioname: $name sendMsg=$msg";
IOWrite($hash, 'sendMsg', $msg);
}
}
Log3 $name, 3, "$ioname: $name set $cmd" if ($cmd ne "?");
readingsSingleUpdate($hash, "state" , $cmd, 1) if ($cmd ne "?");
return $ret;
}
@ -222,6 +247,8 @@ sub Parse($$) {
my ($hash_name) = grep { $models{$_}{Protocol} eq $protocol } keys %models; # search protocol --> model
my $deviceCode = $rawData;
my $devicedef;
my $state = "ring";
my $bat;
Log3 $iohash, 4, "$ioname: SD_BELL_Parse protocol $protocol $hash_name doubleCode=".$models{$hash_name}{doubleCode}." rawData=$rawData";
@ -312,6 +339,7 @@ sub Parse($$) {
$devicedef = $protocol . " " .$doubleCode_known; # variant two, RAWMSG in a different order
Log3 $iohash, 4, "$ioname: SD_BELL_Parse Check P$protocol doubleCode - $devicedef ready to define!"; # Error detections, another bit
}
### doubleCode no - P42 must be cut manually because message has no separator ###
} elsif ($protocol == 42) {
## only for RAWMSG receive from device
@ -321,6 +349,20 @@ sub Parse($$) {
## if RAWMSG send from nano, not cut
$devicedef = $protocol . " " .$deviceCode;
Log3 $iohash, 4, "$ioname: SD_BELL_Parse Check P$protocol - $rawData alone";
### Grothe_Mistral_SE 01 or 03 length 10 or 12 nibble ###
} elsif ($protocol == 96) {
my $checksum = ((hex(substr($rawData,0,2)) + hex(substr($rawData,2,2)) + hex(substr($rawData,4,2)) + hex(substr($rawData,6,2))) & 0xFF);
if ($checksum != hex(substr($rawData,8,2))) {
Log3 $iohash, 3, "$ioname: SD_BELL_Parse Grothe_Mistral_SE $deviceCode - ERROR checksum $checksum";
return "";
}
$deviceCode = sprintf('%06X', hex(substr($rawData,2,6)) & 0x7FFFFF); # mask alarm bit
$devicedef = $protocol . " " .$deviceCode;
$state = "Alarm" if (substr($bitData,8,1) eq "1");
$bat = substr($bitData,41,1) eq "0" ? "ok" : "low" if ($hlen == 12); # only Grothe_Mistral_SE_03
Log3 $iohash, 4, "$ioname: SD_BELL_Parse Grothe_Mistral_SE P$protocol - $rawData";
### doubleCode no without P41 ###
} else {
$devicedef = $protocol . " " .$deviceCode;
@ -340,12 +382,18 @@ sub Parse($$) {
$hash->{lastMSG} = $rawData;
$hash->{bitMSG} = $bitData;
### Grothe_Mistral_SE 01 or 03 length 10 or 12 nibble (only by first message) ###
if ($protocol == 96 && $hash->{STATE} eq "???") {
$attr{$name}{model} = "Grothe_Mistral_SE_01" if ($hlen == 10);
$attr{$name}{model} = "Grothe_Mistral_SE_03" if ($hlen == 12);
}
my $model = AttrVal($name, "model", "unknown");
my $state = "ring";
Log3 $name, 4, "$ioname: SD_BELL_Parse $name model=$model state=$state ($rawData)";
readingsBeginUpdate($hash);
readingsBulkUpdate($hash, "state", $state);
readingsBulkUpdate($hash, "batteryState", $bat) if (defined($bat) && length($bat) > 0) ;
readingsEndUpdate($hash, 1); # Notify is done by Dispatch
return $name;
@ -366,15 +414,13 @@ sub Attr(@) {
#Log3 $name, 3, "SD_BELL_Attr cmd=$cmd attrName=$attrName attrValue=$attrValue oldmodel=$oldmodel";
if ($cmd eq "set" && $attrName eq "model" && $attrValue ne $oldmodel) { ### set new attr
$check_ok = 1 if ($models{$attrValue}{hex_lengh} =~ /($hex_lengh)/);
return "SD_BELL: ERROR! You want to choose the $oldmodel model to $attrValue.\nPlease check your selection. Your HEX-Value in DEF with a length of " .$hex_lengh. " are not allowed on this model!" if ($check_ok != 1 && $hex_lengh != 0);
Log3 $name, 3, "SD_BELL_Attr $cmd $attrName to $attrValue from $oldmodel";
}
if ($cmd eq "del" && $attrName eq "model") { ### delete readings
readingsDelete($hash, "LastAction") if(defined(ReadingsVal($hash->{NAME},"LastAction",undef)));
readingsDelete($hash, "state") if(defined(ReadingsVal($hash->{NAME},"state",undef)));
readingsSingleUpdate($hash, "state" , "Please define a model for the correct processing",1);
}
return undef;
@ -398,6 +444,7 @@ sub Attr(@) {
<li>Pollin 551227 [Protocol 42]</li>
<li>m-e doorbell fuer FG- and Basic-Serie [Protocol 57]</li>
<li>Heidemann | Heidemann HX | VTX-BELL_Funkklingel [Protocol 79]</li>
<li>Grothe Mistral SE 01.1 (40 bit), 03.1 (48 bit) [Protocol 96]</li>
<br>
<u><i>Special feature Protocol 41, 2 different codes will be sent one after the other!</u></i>
</ul><br>
@ -426,7 +473,8 @@ sub Attr(@) {
<li>model<br>
The attribute indicates the model type of your device.<br></li></ul>
<ul><li><a name="repeats"></a>repeats<br>
This attribute can be used to adjust how many repetitions are sent. Default is 5.</li></ul><br>
This attribute can be used to adjust how many repetitions are sent. Default is 5.<br>
<i>(For the model Heidemann_|_Heidemann_HX_|_VTX-BELL, the value repeats is fixed at 135!)</i></li></ul><br>
<br>
</ul>
=end html
@ -443,6 +491,7 @@ sub Attr(@) {
<li>Pollin 551227 [Protokoll 42]</li>
<li>m-e doorbell f&uuml;r FG- und Basic-Serie [Protokoll 57]</li>
<li>Heidemann | Heidemann HX | VTX-BELL_Funkklingel [Protokoll 79]</li>
<li>Grothe Mistral SE 01.1 (40 bit), 03.1 (48 bit) [Protokoll 96]</li>
<br>
<u><i>Besonderheit Protokoll 41, es sendet 2 verschiedene Codes nacheinader!</u></i>
</ul><br>
@ -471,7 +520,8 @@ sub Attr(@) {
<li>model<br>
Das Attribut bezeichnet den Modelltyp Ihres Ger&auml;tes.<br></li></ul>
<ul><li><a name="repeats"></a>repeats<br>
Mit diesem Attribut kann angepasst werden, wie viele Wiederholungen sendet werden. Standard ist 5.</li></ul><br>
Mit diesem Attribut kann angepasst werden, wie viele Wiederholungen gesendet werden. Standard ist 5.<br>
<i>(Bei dem Model Heidemann_|_Heidemann_HX_|_VTX-BELL ist der Wert repeats fest auf 135 gesetzt unabhäning vom eingestellten Attribut!)</i></li></ul><br>
<br>
</ul>
=end html_DE

View File

@ -1093,20 +1093,14 @@ sub SD_UT_Parse($$) {
### Manax MX-RCS250 | mumbi [P90] ###
if (!$def && $protocol == 90) {
$deviceCode = substr($rawData,0,4);
my $button = substr($bitData,20,3);
my $button = $models{RC_10}{buttons}{substr($bitData,20,3)};
$devicedef = "RC_10 ".$deviceCode."_".$button;
$def = $modules{SD_UT}{defptr}{$devicedef};
foreach my $keys (sort keys %{$models{RC_10}{buttons}}) {
if ($keys eq $button) {
$devicedef = "RC_10 " . $deviceCode ."_".$models{RC_10}{buttons}{$keys};
$button = $models{RC_10}{buttons}{$keys};
last;
}
}
$def = $modules{SD_UT}{defptr}{$devicedef};
$state = substr($bitData,23,1);
$state = $state eq "1" ? "on" : "off" if ($button ne "all");
if ($button eq "all") {
if ($button ne "all")
{
$state = substr($bitData,23,1) eq "1" ? "on" : "off"
} else {
$state = substr($bitData,20,4);
if ($state eq "0100") {
$state = "on";
@ -1117,11 +1111,16 @@ sub SD_UT_Parse($$) {
$def = undef;
}
### if receive device _all, set A | B | C | D ###
readingsSingleUpdate($defs{"RC_10_" . $deviceCode ."_A"}, "state" , $state , 1) if (defined $defs{"RC_10_" . $deviceCode ."_A"});
readingsSingleUpdate($defs{"RC_10_" . $deviceCode ."_B"}, "state" , $state , 1) if (defined $defs{"RC_10_" . $deviceCode ."_B"});
readingsSingleUpdate($defs{"RC_10_" . $deviceCode ."_C"}, "state" , $state , 1) if (defined $defs{"RC_10_" . $deviceCode ."_C"});
readingsSingleUpdate($defs{"RC_10_" . $deviceCode ."_D"}, "state" , $state , 1) if (defined $defs{"RC_10_" . $deviceCode ."_D"});
### if received data from device _all, set cannels A | B | C | D to state and trigger event ###
for ( "A" .. "D" ) {
my $defPtr = $modules{SD_UT}{defptr}{"RC_10 ".$deviceCode."_$_"};
if (defined $defPtr) {
readingsSingleUpdate($defPtr, "state" , $state , 1);
DoTrigger($defPtr->{NAME}, undef, 0);
Log3 $iohash, 5, "$ioname: SD_UT device - RC_10 devicedef: $defPtr->{NAME}";
Log3 $iohash, 5, "$ioname: SD_UT device - RC_10 button: $_ | state: $state";
}
}
}
Log3 $iohash, 4, "$ioname: SD_UT device - RC_10 devicedef: $devicedef";
Log3 $iohash, 4, "$ioname: SD_UT device - RC_10 button: $button | state: $state";
@ -1193,8 +1192,10 @@ sub SD_UT_Parse($$) {
$model = AttrVal($name, "model", "unknown");
Log3 $name, 5, "$ioname: SD_UT_Parse devicedef=$devicedef attr_model=$model protocol=$protocol state=$state (before check)";
readingsBeginUpdate($hash);
############ Westinghouse_Delancey RH787T ############ Protocol 83 or 30 ############
if ($model eq "RH787T" && ($protocol == 83 || $protocol == 30)) {
if ($model eq "RH787T" && ($protocol == 83 || $protocol == 30)) {
$state = substr($bitData,6,6);
$deviceCode = substr($bitData,1,4);
@ -1360,11 +1361,9 @@ sub SD_UT_Parse($$) {
my $nibble5 = substr($bitData,20,4); # Button and State
my $nibble6to8 = substr($bitData,24,9); # unknown crc ? | SIGNALduino added to full nibble
readingsBeginUpdate($hash);
readingsBulkUpdate($hash, "x_n4" , $nibble4, 0);
readingsBulkUpdate($hash, "x_n5-8_on" , $nibble5.$nibble6to8, 0) if ($state eq "on");
readingsBulkUpdate($hash, "x_n5-8_off" , $nibble5.$nibble6to8, 0) if ($state eq "off");
readingsEndUpdate($hash, 1);
$deviceCode = substr($bitData,0,16);
} elsif ($model eq "KL_RF01" && $protocol == 93) {
@ -1389,8 +1388,8 @@ sub SD_UT_Parse($$) {
$deviceCode = substr($rawData,0,8);
############ unknown ############
} else {
readingsSingleUpdate($hash, "state", "???", 0);
readingsSingleUpdate($hash, "unknownMSG", $bitData." (protocol: ".$protocol.")", 1) if (AttrVal($name, "model", "unknown") eq "unknown");
readingsBulkUpdate($hash, "state", "???");
readingsBulkUpdate($hash, "unknownMSG", $bitData." (protocol: ".$protocol.")") if (AttrVal($name, "model", "unknown") eq "unknown");
Log3 $name, 3, "$ioname: SD_UT Please define your model of Device $name in Attributes!" if (AttrVal($name, "model", "unknown") eq "unknown");
Log3 $name, 5, "$ioname: SD_UT_Parse devicedef=$devicedef attr_model=$model protocol=$protocol rawData=$rawData, bitData=$bitData";
}
@ -1409,7 +1408,6 @@ sub SD_UT_Parse($$) {
}
}
readingsBeginUpdate($hash);
readingsBulkUpdate($hash, "deviceCode", $deviceCode, 0) if (defined($deviceCode) && $models{$model}{Typ} eq "remote");
readingsBulkUpdate($hash, "unknown_bits", $unknown_bits, 0) if (defined($unknown_bits) && $models{$model}{Typ} eq "remote");
readingsBulkUpdate($hash, "contact", $contact) if (defined($contact) && ($model eq "MD_210R" || $model eq "MD_2018R" || $model eq "MD_2003R"));
@ -1582,7 +1580,7 @@ sub SD_UT_Attr(@) {
readingsSingleUpdate($hash, "state", $state, 0);
DoTrigger ("global","UNDEFINED unknown_please_select_model SD_UT unknown") if ($devicename eq "unknown_please_select_model"); # if user push attr return to unknown
DoTrigger ("global","UNDEFINED unknown_please_select_model SD_UT unknown") if ($devicename eq "unknown_please_select_model"); # if user push attr return to unknown
DoTrigger ("global","UNDEFINED $devicename SD_UT $devicemodel $deviceCode") if ($devicename ne "unknown_please_select_model"); # create new device
#CommandAttr( undef, "$devicename model $attrValue" ) if ($devicename ne "unknown_please_select_model"); # set model | Function not reliable !!!