2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-05 17:48:44 +00:00

templist updates

git-svn-id: https://svn.fhem.de/fhem/trunk@5342 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
martinp876 2014-03-27 19:21:03 +00:00
parent be190fe8a3
commit 86842a72d5
2 changed files with 34 additions and 32 deletions

View File

@ -1219,16 +1219,6 @@ sub CUL_HM_Parse($$) {#########################################################
} }
} }
} }
elsif($md eq "HM-SEN-EP") { #################################################
if ($mTp eq "40"){
my ($chn,$counter) = unpack 'A2A2',$p;
$shash = $modules{CUL_HM}{defptr}{$src.$chn}
if($modules{CUL_HM}{defptr}{$src.$chn});
# $counter = hex($counter);
push @evtEt,[$shash,1,"state:".$counter];
push @evtEt,[$shash,1,"trigger:Short_$counter"];
}
}
elsif($st eq "THSensor") { ################################################## elsif($st eq "THSensor") { ##################################################
if ($mTp eq "70"){ if ($mTp eq "70"){
my $chn; my $chn;
@ -1472,7 +1462,8 @@ sub CUL_HM_Parse($$) {#########################################################
} }
} }
} }
elsif($st =~ m /^(remote|pushButton|swi)$/) { ############################### elsif($st =~ m /^(remote|pushButton|swi)$/
||$md eq "HM-SEN-EP") { #################################################
if($mTp =~ m/^4./) { if($mTp =~ m/^4./) {
my ($chn, $bno) = map{hex($_)} ($mI[0],$mI[1]);# button/event count my ($chn, $bno) = map{hex($_)} ($mI[0],$mI[1]);# button/event count
my $buttonID = $chn&0x3f;# only 6 bit are valid my $buttonID = $chn&0x3f;# only 6 bit are valid
@ -1513,7 +1504,7 @@ sub CUL_HM_Parse($$) {#########################################################
push @evtEt,[$chnHash,1,"state:".$state.$target]; push @evtEt,[$chnHash,1,"state:".$state.$target];
push @evtEt,[$chnHash,1,"trigger:".$trigType."_".$bno]; push @evtEt,[$chnHash,1,"trigger:".$trigType."_".$bno];
push @evtEt,[$shash,1,"battery:". (($chn&0x80)?"low":"ok")]; push @evtEt,[$shash,1,"battery:". (($chn&0x80)?"low":"ok")];
push @evtEt,[$shash,1,"state:$btnName $state$target"]; push @evtEt,[$shash,1,"state:$btnName $state$target"] if ($shash ne $chnHash);
} }
} }
elsif($st eq "powerMeter") {################################################# elsif($st eq "powerMeter") {#################################################
@ -3934,8 +3925,7 @@ sub CUL_HM_Set($@) {#+++++++++++++++++ set command+++++++++++++++++++++++++++++
my $bStr = sprintf("%02X",$b); my $bStr = sprintf("%02X",$b);
CUL_HM_PushCmdStack($hash, CUL_HM_PushCmdStack($hash,
"++".$flag."01${id}${dst}${bStr}$cmdB${peerDst}${peerBtn}00"); "++".$flag."01${id}${dst}${bStr}$cmdB${peerDst}${peerBtn}00");
CUL_HM_pushConfig($hash,$id, $dst,$b,$peerDst, CUL_HM_pushConfig($hash,$id, $dst,$b,$peerDst,hex($peerBtn),4,$burst)
hex($peerBtn),4,$burst)
if($burst && $cmdB eq "01"); # only if set if($burst && $cmdB eq "01"); # only if set
CUL_HM_qAutoRead($name,3); CUL_HM_qAutoRead($name,3);
} }

View File

@ -553,7 +553,7 @@ sub HMinfo_tempList(@) { ######################################################
@el = (); @el = ();
foreach (split(",",$line)){ foreach (split(",",$line)){
if ($defs{$_}){ if ($defs{$_}){
push @el,$_ if ($defs{$_} && $_ =~ m/$filter/); push @el,$_ if ($_ =~ m/$filter/);
} }
else{ else{
push @entryNF,$_; push @entryNF,$_;
@ -598,7 +598,7 @@ sub HMinfo_tempList(@) { ######################################################
return $ret; return $ret;
} }
sub HMinfo_tempListTmpl(@) { ################################################## sub HMinfo_tempListTmpl(@) { ##################################################
my ($filter,$tmpl,$fName)=@_; my ($filter,$tmpl,$action,$fName)=@_;
$filter = "." if (!$filter); $filter = "." if (!$filter);
return "no template name given" if (!$tmpl); return "no template name given" if (!$tmpl);
my $ret; my $ret;
@ -620,16 +620,19 @@ sub HMinfo_tempListTmpl(@) { ##################################################
my @exec = (); my @exec = ();
while(<aSave>){ while(<aSave>){
chomp; chomp;
if($_ =~ m/^entities:/){ my $line = $_;
if($line =~ m/^entities:/){
last if ($found != 0); last if ($found != 0);
my $line = $_;
$line =~s/.*://; $line =~s/.*://;
foreach (split(",",$line)){ foreach my $eN (split(",",$line)){
$found = 1 if ($defs{$_} && $_ eq $tmpl); $eN =~ s/ //g;
$found = 1 if ($eN eq $tmpl);
} }
} }
elsif($found != 1 && $_ =~ m/R_(P[123])?_?._tempList[SMFWT].*\>/){ elsif($found == 1 && $_ =~ m/R_(P[123])?_?._tempList[SMFWT].*\>/){
my ($tln,$val) = ($1,$2)if($_ =~ m/(.*)>(.*)/); my $rn = $line;
$rn =~ s/(R_.*tempList...).*/$1/;
my ($tln,$val) = ($1,$2)if($line =~ m/(.*)>(.*)/);
$tln =~ s/ //g; $tln =~ s/ //g;
$val =~ tr/ +/ /; $val =~ tr/ +/ /;
$val =~ s/^ //; $val =~ s/^ //;
@ -640,9 +643,17 @@ sub HMinfo_tempListTmpl(@) { ##################################################
$val = lc($1)." ".$val; $val = lc($1)." ".$val;
} }
$tln =~ s/R_(P._)?._//; $tln =~ s/R_(P._)?._//;
my $x = CUL_HM_Set($defs{$eN},$eN,$tln,"prep",split(" ",$val)); if ($action eq "verify"){
push @entryFail,$eN." :".$tln." respose:$x" if ($x ne "1"); $val = join(" ",split(" ",$val));
push @exec,$eN." ".$tln." exec ".$val; my $nv = ReadingsVal($eN,$rn,"empty");
$nv = join(" ",split(" ",$nv));
push @entryFail,$eN." :".$tln." mismatch" if ($val ne $nv);
}
elsif($action eq "restore"){
my $x = CUL_HM_Set($defs{$eN},$eN,$tln,"prep",split(" ",$val));
push @entryFail,$eN." :".$tln." respose:$x" if ($x ne "1");
push @exec,$eN." ".$tln." exec ".$val;
}
} }
} }
$ret = "failed Entries:\n " .join("\n ",@entryFail) if (scalar@entryFail); $ret = "failed Entries:\n " .join("\n ",@entryFail) if (scalar@entryFail);
@ -1045,7 +1056,7 @@ sub HMinfo_GetFn($@) {#########################################################
."\n set loadConfig [<typeFilter>] <file> # restores register and peer readings if missing" ."\n set loadConfig [<typeFilter>] <file> # restores register and peer readings if missing"
."\n set autoReadReg [<typeFilter>] # trigger update readings if attr autoReadReg is set" ."\n set autoReadReg [<typeFilter>] # trigger update readings if attr autoReadReg is set"
."\n set tempList [<typeFilter>][save|restore|verify][<filename>]# handle tempList of thermostat devices" ."\n set tempList [<typeFilter>][save|restore|verify][<filename>]# handle tempList of thermostat devices"
."\n set tempListTmpl[<typeFilter>][templateName][<filename>]# program a templist from a template in the file to one or multiple devices" ."\n set tempListTmpl[<typeFilter>][templateName][verify|restore][<filename>]# program a templist from a template in the file to one or multiple devices"
."\n ---infos---" ."\n ---infos---"
."\n set update # update HMindfo counts" ."\n set update # update HMindfo counts"
."\n get register [<typeFilter>] # devicefilter parse devicename. Partial strings supported" ."\n get register [<typeFilter>] # devicefilter parse devicename. Partial strings supported"
@ -1183,9 +1194,10 @@ sub HMinfo_SetFn($@) {#########################################################
$ret = HMinfo_tempList($filter,$a[0],$fn); $ret = HMinfo_tempList($filter,$a[0],$fn);
} }
elsif($cmd eq "tempListTmpl"){##handle thermostat templist from file -------- elsif($cmd eq "tempListTmpl"){##handle thermostat templist from file --------
my $fn = $a[1]?$a[1]:"tempList.cfg"; my $fn = $a[2]?$a[2]:"tempList.cfg";
my $ac = $a[1]?$a[1]:"verify";
$fn = AttrVal($name,"configDir",".")."\/".$fn if ($fn !~ m/\//); $fn = AttrVal($name,"configDir",".")."\/".$fn if ($fn !~ m/\//);
$ret = HMinfo_tempListTmpl($filter,$a[0],$fn); $ret = HMinfo_tempListTmpl($filter,$a[0],$ac,$fn);
} }
elsif($cmd eq "loadConfig") {##action: loadConfig---------------------------- elsif($cmd eq "loadConfig") {##action: loadConfig----------------------------
my $fn = $a[0]?$a[0]:AttrVal($name,"configFilename","regSave.cfg"); my $fn = $a[0]?$a[0]:AttrVal($name,"configFilename","regSave.cfg");
@ -1229,8 +1241,8 @@ sub HMinfo_SetFn($@) {#########################################################
### redirect set commands to get - thus the command also work in webCmd ### redirect set commands to get - thus the command also work in webCmd
elsif(HMinfo_GetFn($hash,$name,"?") =~ m/\b$cmd\b/){##---------------- elsif(HMinfo_GetFn($hash,$name,"?") =~ m/\b$cmd\b/){##----------------
unshift @a,$filter if ($filter); unshift @a,"-f",$filter if ($filter);
unshift @a,$opt if ($opt); unshift @a,"-".$opt if ($opt);
$ret = HMinfo_GetFn($hash,$name,$cmd,@a); $ret = HMinfo_GetFn($hash,$name,$cmd,@a);
} }
@ -1920,8 +1932,8 @@ sub HMinfo_noDup(@) {#return list with no duplicates###########################
<li><B>tempList...</B> time and temp couples as used in the set tempList commands</li> <li><B>tempList...</B> time and temp couples as used in the set tempList commands</li>
<br> <br>
</li> </li>
<li><a name="#HMinfotempListTmpl">tempListTmpl</a> <a href="#HMinfoFilter">[filter]</a>[templateName] [&lt;file&gt;]</a><br> <li><a name="#HMinfotempListTmpl">tempListTmpl</a> <a href="#HMinfoFilter">[filter]</a>[templateName][verify|restore] [&lt;file&gt;]</a><br>
program one or more thermostat lists. The list of thermostats is selected by filter. <br> program one or more thermostat lists. The list of thermostats is selected by filter.<br>
<ul> <ul>
<li></B>templateName</B> is the name of the template as being named in the file. The file format ist <li></B>templateName</B> is the name of the template as being named in the file. The file format ist
identical to <a ref="#HMinfotempList">tempList</a>. If the entity in the file matches templateName the subsequent identical to <a ref="#HMinfotempList">tempList</a>. If the entity in the file matches templateName the subsequent