mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-05-07 22:29:19 +00:00
73_AutoShuttersControl: Fix shutters drive then window open and shutter in brightness rage.
git-svn-id: https://svn.fhem.de/fhem/trunk/fhem@18234 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
c0fbd46ab3
commit
c5abc97bfc
2
CHANGED
2
CHANGED
@ -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 shutters drive then window open and
|
||||||
|
shutter in brightness rage.
|
||||||
- feature: 82_LGTV_WebOS: Support for SkyOnline App
|
- feature: 82_LGTV_WebOS: Support for SkyOnline App
|
||||||
- bugfix: 59_Weather: fix table bug in commandref
|
- bugfix: 59_Weather: fix table bug in commandref
|
||||||
- bugfix: 59_Weather: fix mor typo in Commandref
|
- bugfix: 59_Weather: fix mor typo in Commandref
|
||||||
|
@ -1214,7 +1214,13 @@ sub EventProcessingBrightness($@) {
|
|||||||
);
|
);
|
||||||
|
|
||||||
my $posValue;
|
my $posValue;
|
||||||
if ( CheckIfShuttersWindowRecOpen($shuttersDev) == 0
|
if ( CheckIfShuttersWindowRecOpen($shuttersDev) == 2
|
||||||
|
and $shutters->getSubTyp eq 'threestate'
|
||||||
|
and $ascDev->getAutoShuttersControlComfort eq 'on' )
|
||||||
|
{
|
||||||
|
$posValue = $shutters->getComfortOpenPos;
|
||||||
|
}
|
||||||
|
elsif ( CheckIfShuttersWindowRecOpen($shuttersDev) == 0
|
||||||
or $shutters->getVentilateOpen eq 'off' )
|
or $shutters->getVentilateOpen eq 'off' )
|
||||||
{
|
{
|
||||||
$posValue = $shutters->getClosedPos;
|
$posValue = $shutters->getClosedPos;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user