prepare vor use of "id" sections in commandref

This commit is contained in:
rejoe2 2021-08-31 12:32:22 +02:00 committed by GitHub
parent f51cdf4943
commit 0b048e7dc0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -33,7 +33,7 @@
# GNU General Public License for more details.
#
#
# $Id$
# $Id: ShuttersControl.pm 24460 2021-05-17 12:51:14Z CoolTux $
#
###############################################################################
@ -365,7 +365,7 @@ sub Define {
$name . ' devStateIcon { ShuttersControl_DevStateIcon($name) }' )
if ( AttrVal( $name, 'devStateIcon', 'none' ) eq 'none' );
addToAttrList('ASC:0,1,2');
addToAttrList('ASC:0,1,2','AutoShuttersControl');
Log3( $name, 3, "AutoShuttersControl ($name) - defined" );
@ -828,7 +828,7 @@ sub UserAttributs_Readings_ForShutters {
while ( my ( $attrib, $attribValue ) = each %{userAttrList} ) {
for my $shuttersDev ( @{ $hash->{helper}{shuttersList} } ) {
addToDevAttrList( $shuttersDev, $attrib )
addToDevAttrList( $shuttersDev, $attrib, 'AutoShuttersControl' )
; ## fhem.pl bietet eine Funktion um ein userAttr Attribut zu befüllen. Wir schreiben also in den Attribut userAttr alle unsere Attribute rein. Pro Rolladen immer ein Attribut pro Durchlauf
## Danach werden die Attribute die im userAttr stehen gesetzt und mit default Werten befüllt
## CommandAttr hat nicht funktioniert. Führte zu Problemen
@ -2046,3 +2046,5 @@ sub RemoveShuttersTimer {
}
1;
__END__