mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-05-04 22:19:38 +00:00
reduce events, correct spelling
git-svn-id: https://svn.fhem.de/fhem/trunk/fhem@3513 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
bfc21c226a
commit
e63419a86e
@ -1410,7 +1410,7 @@ sub CUL_HM_parseCommon(@){#####################################################
|
|||||||
$success = "yes";
|
$success = "yes";
|
||||||
$reply = "ACK";
|
$reply = "ACK";
|
||||||
}
|
}
|
||||||
readingsSingleUpdate($chnhash,"CommandAccepted",$success,1);
|
readingsSingleUpdate($chnhash,"CommandAccepted",$success,0);
|
||||||
CUL_HM_ProcessCmdStack($shash)
|
CUL_HM_ProcessCmdStack($shash)
|
||||||
if($dhash->{DEF} && (CUL_HM_IOid($shash) eq $dhash->{DEF}));
|
if($dhash->{DEF} && (CUL_HM_IOid($shash) eq $dhash->{DEF}));
|
||||||
$ret = $reply;
|
$ret = $reply;
|
||||||
@ -2963,7 +2963,7 @@ sub CUL_HM_protState($$){
|
|||||||
my ($hash,$state) = @_;
|
my ($hash,$state) = @_;
|
||||||
$hash->{protState} = $state;
|
$hash->{protState} = $state;
|
||||||
my $name = $hash->{NAME};
|
my $name = $hash->{NAME};
|
||||||
readingsSingleUpdate($hash,"state",$state,1)if (!$hash->{helper}{role}{chn});
|
readingsSingleUpdate($hash,"state",$state,0)if (!$hash->{helper}{role}{chn});
|
||||||
Log GetLogLevel($name,6),"CUL_HM $name protEvent:$state".
|
Log GetLogLevel($name,6),"CUL_HM $name protEvent:$state".
|
||||||
($hash->{cmdStack}?" pending:".scalar @{$hash->{cmdStack}}:"");
|
($hash->{cmdStack}?" pending:".scalar @{$hash->{cmdStack}}:"");
|
||||||
|
|
||||||
|
@ -985,21 +985,21 @@ sub HMinfo_cpRegs(@){#########################################################
|
|||||||
<h3>HMinfo</h3>
|
<h3>HMinfo</h3>
|
||||||
<ul>
|
<ul>
|
||||||
<tr><td>
|
<tr><td>
|
||||||
HMinfo is a module that shall support in getting an overview of
|
HMinfo is a module to support getting an overview of
|
||||||
eQ-3 HomeMatic devices as defines in <a href="#CUL_HM">CUL_HM</a>. <br><br>
|
eQ-3 HomeMatic devices as defines in <a href="#CUL_HM">CUL_HM</a>. <br><br>
|
||||||
<B>Status information and counter</B><br>
|
<B>Status information and counter</B><br>
|
||||||
hminfo tries to give an overview on the CUL_HM installed base including current conditions.
|
HMinfo gives an overview on the CUL_HM installed base including current conditions.
|
||||||
Readings and counter will not be updates automatically due to performance issues. <br>
|
Readings and counter will not be updated automatically due to performance issues. <br>
|
||||||
Command <a href="#HMinfoupdate">update</a> must be used to refresh the values.
|
Command <a href="#HMinfoupdate">update</a> must be used to refresh the values.
|
||||||
<ul><code>
|
<ul><code>
|
||||||
set hm update<br>
|
set hm update<br>
|
||||||
</code></ul>
|
</code></ul>
|
||||||
Webview of HMinfo will provide details, mainly based counter drivern, on how
|
Webview of HMinfo will provide details, basically counter about how
|
||||||
many CUL_HM entities experience certain conditions. Areas provided are
|
many CUL_HM entities experience exceptional conditions. Areas provided are
|
||||||
<li>Action Detector status</li>
|
<li>Action Detector status</li>
|
||||||
<li>CUL_HM related IO devices with their condition</li>
|
<li>CUL_HM related IO devices and condition</li>
|
||||||
<li>Device protocol events which are related to communication errors</li>
|
<li>Device protocol events which are related to communication errors</li>
|
||||||
<li>count of certain readings (e.g. batterie) with their condition - <a href="HMinfoattr">attribut controlled</a></li>
|
<li>count of certain readings (e.g. batterie) and conditions - <a href="HMinfoattr">attribut controlled</a></li>
|
||||||
<li>count of error condition in readings (e.g. overheat, motorError) - <a href="HMinfoattr">attribut controlled</a></li>
|
<li>count of error condition in readings (e.g. overheat, motorError) - <a href="HMinfoattr">attribut controlled</a></li>
|
||||||
|
|
||||||
<br>
|
<br>
|
||||||
@ -1009,8 +1009,7 @@ sub HMinfo_cpRegs(@){#########################################################
|
|||||||
|
|
||||||
Commands will be executed on all HM entities of the installation.
|
Commands will be executed on all HM entities of the installation.
|
||||||
If applicable and evident execution is restricted to related entities.
|
If applicable and evident execution is restricted to related entities.
|
||||||
This means that rssi is executed only on devices, never channels since
|
In fact, rssi is executed on devices only because channels do not support rssi values.<br><br>
|
||||||
they never have support rssi values.<br><br>
|
|
||||||
<a name="HMinfoFilter"><b>Filter</b></a>
|
<a name="HMinfoFilter"><b>Filter</b></a>
|
||||||
<ul> can be applied as following:<br><br>
|
<ul> can be applied as following:<br><br>
|
||||||
<code>set <name> <cmd> <filter> [<param>]</code><br>
|
<code>set <name> <cmd> <filter> [<param>]</code><br>
|
||||||
@ -1041,7 +1040,7 @@ sub HMinfo_cpRegs(@){#########################################################
|
|||||||
<a name="HMinfodefine"><b>Define</b></a>
|
<a name="HMinfodefine"><b>Define</b></a>
|
||||||
<ul>
|
<ul>
|
||||||
<code>define <name> HMinfo</code><br>
|
<code>define <name> HMinfo</code><br>
|
||||||
Just one entity needs to be defines, no parameter are necessary.<br>
|
Just one entity needs to be defined without any parameter.<br>
|
||||||
</ul>
|
</ul>
|
||||||
<br>
|
<br>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user