mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-04-22 08:11:44 +00:00
73_AutoShuttersControl: fix little winrec bug then state opened (max winrec sensors)
git-svn-id: https://svn.fhem.de/fhem/trunk@18750 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
8ea6ae5b71
commit
b663f7fc24
@ -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 little winrec bug then state opened
|
||||||
|
(max winrec sensors)
|
||||||
- feature: DarkSkyAPI: add demo support for FHEM demo konfiguration
|
- feature: DarkSkyAPI: add demo support for FHEM demo konfiguration
|
||||||
- bugfix: 88_HMCCU: set/get config bug fixed
|
- bugfix: 88_HMCCU: set/get config bug fixed
|
||||||
- feature: 49_SSCam: support of genericStrmHtmlTag attr in streaming devices
|
- feature: 49_SSCam: support of genericStrmHtmlTag attr in streaming devices
|
||||||
|
@ -41,7 +41,7 @@ package main;
|
|||||||
use strict;
|
use strict;
|
||||||
use warnings;
|
use warnings;
|
||||||
|
|
||||||
my $version = '0.4.0.7';
|
my $version = '0.4.0.8';
|
||||||
|
|
||||||
sub AutoShuttersControl_Initialize($) {
|
sub AutoShuttersControl_Initialize($) {
|
||||||
my ($hash) = @_;
|
my ($hash) = @_;
|
||||||
@ -843,7 +843,7 @@ sub EventProcessingWindowRec($@) {
|
|||||||
elsif (
|
elsif (
|
||||||
(
|
(
|
||||||
$1 eq 'tilted'
|
$1 eq 'tilted'
|
||||||
or ( $1 eq 'open' and $shutters->getSubTyp eq 'twostate' )
|
or ( ($1 eq 'open' or $1 eq 'opened') and $shutters->getSubTyp eq 'twostate' )
|
||||||
)
|
)
|
||||||
and $shutters->getVentilateOpen eq 'on'
|
and $shutters->getVentilateOpen eq 'on'
|
||||||
and $queryShuttersPosWinRecTilted
|
and $queryShuttersPosWinRecTilted
|
||||||
|
Loading…
x
Reference in New Issue
Block a user