mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-03-09 20:57:11 +00:00
73_AutoShuttersControl: fix set command in Set Fn and bug in WindowRec shading mode absent
git-svn-id: https://svn.fhem.de/fhem/trunk@21605 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
9a42cd921a
commit
f265bd3903
@ -1,5 +1,7 @@
|
||||
# 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.
|
||||
- bugfix: 73_AutoShuttersControl: fix set command in Set Fn and bug in
|
||||
WindowRec shading mode absent
|
||||
- bugfix: 73_AutoShuttersControl: fix bug in privat Methode _averageBrightness
|
||||
- bugfix: 73_DoorBird: Use of uninitialized value line 2398 & 2407
|
||||
- feature: 93_Log2Syslog: Parser UniFi Controller Syslog and Netconsole
|
||||
|
@ -663,7 +663,7 @@ sub Set {
|
||||
RenewSunRiseSetShuttersTimer($hash);
|
||||
}
|
||||
elsif ( lc $cmd eq 'renewtimer' ) {
|
||||
return "usage: $cmd" if ( scalar( @{$a} ) > 0 );
|
||||
return "usage: $cmd" if ( scalar( @{$a} ) > 1 );
|
||||
CreateSunRiseSetShuttersTimer( $hash, $a->[0] );
|
||||
}
|
||||
elsif ( lc $cmd eq 'scanforshutters' ) {
|
||||
@ -1110,7 +1110,8 @@ sub EventProcessingWindowRec {
|
||||
)
|
||||
{
|
||||
if ( $shutters->getIfInShading
|
||||
&& $shutters->getShadingPos != $shutters->getStatus )
|
||||
&& $shutters->getShadingPos != $shutters->getStatus
|
||||
&& $shutters->getShadingMode ne 'absent' )
|
||||
{
|
||||
$shutters->setLastDrive('shading in');
|
||||
$shutters->setNoDelay(1);
|
||||
@ -8434,7 +8435,7 @@ sub getBlockAscDrivesAfterManual {
|
||||
],
|
||||
"release_status": "testing",
|
||||
"license": "GPL_2",
|
||||
"version": "v0.8.24",
|
||||
"version": "v0.8.25",
|
||||
"author": [
|
||||
"Marko Oldenburg <leongaultier@gmail.com>"
|
||||
],
|
||||
|
Loading…
x
Reference in New Issue
Block a user