2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 06:39:11 +00:00

74_AutoShuttersControl: fix shading drive if current position under shading position

git-svn-id: https://svn.fhem.de/fhem/trunk@21631 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
LeonGaultier 2020-04-09 07:25:28 +00:00
parent a51e34fbe7
commit 0601d837fe
2 changed files with 6 additions and 4 deletions

View File

@ -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 shading drive if current position under
shading position
- feature: 37_echodevice.pm - feature: 37_echodevice.pm
CHANGE: Keepalive aktiviert CHANGE: Keepalive aktiviert
BUG: set "NPM_login new" BUG: set "NPM_login new"

View File

@ -2511,11 +2511,11 @@ sub ShadingProcessingDriveCommand {
&& $getShadingPos != $getStatus ) && $getShadingPos != $getStatus )
{ {
if ( if (
!$shutters->getQueryShuttersPos($getShadingPos) # !$shutters->getQueryShuttersPos($getShadingPos)
&& !( # && !(
CheckIfShuttersWindowRecOpen($shuttersDev) == 2 CheckIfShuttersWindowRecOpen($shuttersDev) == 2
&& $shutters->getShuttersPlace eq 'terrace' && $shutters->getShuttersPlace eq 'terrace'
) # )
) )
{ {
$shutters->setLastDrive('shading in'); $shutters->setLastDrive('shading in');
@ -8435,7 +8435,7 @@ sub getBlockAscDrivesAfterManual {
], ],
"release_status": "testing", "release_status": "testing",
"license": "GPL_2", "license": "GPL_2",
"version": "v0.8.25", "version": "v0.8.26",
"author": [ "author": [
"Marko Oldenburg <leongaultier@gmail.com>" "Marko Oldenburg <leongaultier@gmail.com>"
], ],