2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 12:49:34 +00:00

19_Revolt: add std attributes ignore, showtime etc (Forum #122471)

git-svn-id: https://svn.fhem.de/fhem/trunk@24864 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
gernot-h 2021-08-22 05:57:16 +00:00
parent 5e2f2592d6
commit 598e0a3218
2 changed files with 8 additions and 1 deletions

View File

@ -1,5 +1,6 @@
# Add changes at the top of the list. Keep it in ASCII, and 80-char wide. # 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. # Do not insert empty lines here, update check depends on it.
- feature: 19_Revolt: add standard attributes ignore, showtime etc.
- feature: 23_LUXTRONIK2: new set parameter ventBOSUPCircPumpDeaerate - feature: 23_LUXTRONIK2: new set parameter ventBOSUPCircPumpDeaerate
- bugfix: 73_DoorBird: Firmware update parsing fixed - bugfix: 73_DoorBird: Firmware update parsing fixed
- change: 70_VIERA: changed Commandref - change: 70_VIERA: changed Commandref

View File

@ -22,7 +22,9 @@ sub Revolt_Initialize($)
$hash->{DefFn} = "Revolt_Define"; $hash->{DefFn} = "Revolt_Define";
$hash->{UndefFn} = "Revolt_Undef"; $hash->{UndefFn} = "Revolt_Undef";
$hash->{ParseFn} = "Revolt_Parse"; $hash->{ParseFn} = "Revolt_Parse";
$hash->{AttrList} = "IODev ". $hash->{AttrList} = "IODev ignore:1,0 ".
"do_not_notify:0,1 ".
"showtime:0,1 ".
"EnergyAdjustValue ". "EnergyAdjustValue ".
$readingFnAttributes; $readingFnAttributes;
} }
@ -187,6 +189,10 @@ sub Revolt_Parse($$)
<a name="RevoltAttributes"></a> <a name="RevoltAttributes"></a>
<b>Attributes</b> <b>Attributes</b>
<ul> <ul>
<li><a href="#ignore">ignore</a></li>
<li><a href="#IODev">IODev</a></li>
<li><a href="#do_not_notify">do_not_notify</a></li>
<li><a href="#showtime">showtime</a></li>
<li>EnergyAdjustValue: adjust the energy reading (energy = energy - EnergyAdjustValue)</li> <li>EnergyAdjustValue: adjust the energy reading (energy = energy - EnergyAdjustValue)</li>
</ul> </ul>
<br> <br>