move terrace block code in ShuttersControl.pm

This commit is contained in:
Marko Oldenburg 2020-09-14 08:26:05 +02:00
parent 61d9f29ad7
commit 7b55671166
3 changed files with 9 additions and 9 deletions

View File

@ -1258,7 +1258,7 @@ sub Initialize {
],
"release_status": "testing",
"license": "GPL_2",
"version": "v0.10.9",
"version": "v0.10.10",
"author": [
"Marko Oldenburg <leongaultier@gmail.com>"
],

View File

@ -1,15 +1,15 @@
UPD 2020-09-07_09:17:28 97596 FHEM/73_AutoShuttersControl.pm
UPD 2020-09-07_09:05:48 74104 lib/FHEM/Automation/ShuttersControl.pm
UPD 2020-09-14_08:23:50 97597 FHEM/73_AutoShuttersControl.pm
UPD 2020-09-14_08:25:53 74112 lib/FHEM/Automation/ShuttersControl.pm
UPD 2020-06-22_09:41:40 2657 lib/FHEM/Automation/ShuttersControl/Dev.pm
UPD 2020-07-26_17:36:29 2496 lib/FHEM/Automation/ShuttersControl/Roommate.pm
UPD 2020-08-12_11:00:05 31376 lib/FHEM/Automation/ShuttersControl/Shutters.pm
UPD 2020-09-04_14:29:40 24589 lib/FHEM/Automation/ShuttersControl/Shading.pm
UPD 2020-09-07_09:12:08 109379 lib/FHEM/Automation/ShuttersControl/EventProcessingFunctions.pm
UPD 2020-09-07_09:25:45 24589 lib/FHEM/Automation/ShuttersControl/Shading.pm
UPD 2020-09-07_09:25:45 109379 lib/FHEM/Automation/ShuttersControl/EventProcessingFunctions.pm
UPD 2020-08-18_08:40:35 45518 lib/FHEM/Automation/ShuttersControl/Helper.pm
UPD 2020-06-22_09:41:40 2175 lib/FHEM/Automation/ShuttersControl/Window.pm
UPD 2020-07-26_17:36:29 11569 lib/FHEM/Automation/ShuttersControl/Dev/Attr.pm
UPD 2020-07-03_11:29:10 7251 lib/FHEM/Automation/ShuttersControl/Dev/Readings.pm
UPD 2020-09-07_09:10:40 52429 lib/FHEM/Automation/ShuttersControl/Shutters/Attr.pm
UPD 2020-09-07_09:25:45 52429 lib/FHEM/Automation/ShuttersControl/Shutters/Attr.pm
UPD 2020-06-22_09:41:40 2903 lib/FHEM/Automation/ShuttersControl/Shutters/Readings.pm
UPD 2020-06-22_09:41:40 3972 lib/FHEM/Automation/ShuttersControl/Window/Attr.pm
UPD 2020-06-22_09:41:40 2288 lib/FHEM/Automation/ShuttersControl/Window/Readings.pm

View File

@ -985,8 +985,6 @@ sub ShuttersCommandSet {
(
CheckIfShuttersWindowRecOpen($shuttersDev) == 2
&& $shutters->getShuttersPlace eq 'terrace'
&& ( $shutters->getLockOut eq 'soft'
|| $shutters->getLockOut eq 'hard' )
&& !$shutters->getQueryShuttersPos($posValue)
)
|| (
@ -1017,7 +1015,9 @@ sub ShuttersCommandSet {
)
|| ( CheckIfShuttersWindowRecOpen($shuttersDev) == 2
&& $shutters->getShuttersPlace eq 'terrace'
&& !$shutters->getQueryShuttersPos($posValue) )
&& !$shutters->getQueryShuttersPos($posValue)
&& ( $shutters->getLockOut eq 'soft'
|| $shutters->getLockOut eq 'hard' ) )
|| ( $shutters->getRainProtectionStatus eq 'protected'
|| $shutters->getWindProtectionStatus eq 'protected' )
)