2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-03 16:56:54 +00:00

73_AutoShuttersControl: fix little typo

git-svn-id: https://svn.fhem.de/fhem/trunk@19914 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
LeonGaultier 2019-07-29 11:54:41 +00:00
parent ec271d0e9a
commit 95ef9e32bd

View File

@ -3986,7 +3986,7 @@ sub getFreezeStatus {
sub getShuttersPosCmdValueNegate {
my $self = shift;
return ( $shutters->getOpenPos > $shutters->getClosedPos ? 1 : 0 );
return ( $shutters->getOpenPos < $shutters->getClosedPos ? 1 : 0 );
}
sub getQueryShuttersPos