mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-03-10 03:06:37 +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.
|
# 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.
|
||||||
|
- 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_AutoShuttersControl: fix bug in privat Methode _averageBrightness
|
||||||
- bugfix: 73_DoorBird: Use of uninitialized value line 2398 & 2407
|
- bugfix: 73_DoorBird: Use of uninitialized value line 2398 & 2407
|
||||||
- feature: 93_Log2Syslog: Parser UniFi Controller Syslog and Netconsole
|
- feature: 93_Log2Syslog: Parser UniFi Controller Syslog and Netconsole
|
||||||
|
@ -663,7 +663,7 @@ sub Set {
|
|||||||
RenewSunRiseSetShuttersTimer($hash);
|
RenewSunRiseSetShuttersTimer($hash);
|
||||||
}
|
}
|
||||||
elsif ( lc $cmd eq 'renewtimer' ) {
|
elsif ( lc $cmd eq 'renewtimer' ) {
|
||||||
return "usage: $cmd" if ( scalar( @{$a} ) > 0 );
|
return "usage: $cmd" if ( scalar( @{$a} ) > 1 );
|
||||||
CreateSunRiseSetShuttersTimer( $hash, $a->[0] );
|
CreateSunRiseSetShuttersTimer( $hash, $a->[0] );
|
||||||
}
|
}
|
||||||
elsif ( lc $cmd eq 'scanforshutters' ) {
|
elsif ( lc $cmd eq 'scanforshutters' ) {
|
||||||
@ -1110,7 +1110,8 @@ sub EventProcessingWindowRec {
|
|||||||
)
|
)
|
||||||
{
|
{
|
||||||
if ( $shutters->getIfInShading
|
if ( $shutters->getIfInShading
|
||||||
&& $shutters->getShadingPos != $shutters->getStatus )
|
&& $shutters->getShadingPos != $shutters->getStatus
|
||||||
|
&& $shutters->getShadingMode ne 'absent' )
|
||||||
{
|
{
|
||||||
$shutters->setLastDrive('shading in');
|
$shutters->setLastDrive('shading in');
|
||||||
$shutters->setNoDelay(1);
|
$shutters->setNoDelay(1);
|
||||||
@ -8434,7 +8435,7 @@ sub getBlockAscDrivesAfterManual {
|
|||||||
],
|
],
|
||||||
"release_status": "testing",
|
"release_status": "testing",
|
||||||
"license": "GPL_2",
|
"license": "GPL_2",
|
||||||
"version": "v0.8.24",
|
"version": "v0.8.25",
|
||||||
"author": [
|
"author": [
|
||||||
"Marko Oldenburg <leongaultier@gmail.com>"
|
"Marko Oldenburg <leongaultier@gmail.com>"
|
||||||
],
|
],
|
||||||
|
Loading…
x
Reference in New Issue
Block a user