2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-05 11:38:47 +00:00

10_EnOcean: subType roomCtrlPanel.01 corrected

git-svn-id: https://svn.fhem.de/fhem/trunk@11260 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
klaus-schauer 2016-04-17 08:57:16 +00:00
parent 7a4c149e2c
commit 2d66ba7451

View File

@ -1,7 +1,7 @@
##############################################
# $Id$
# 2016-04-16
# 2016-04-17
# PID V1.0.0.9
# EnOcean Security in Perl, teach-in, VAES, MAC and message handling
@ -9596,7 +9596,7 @@ sub EnOcean_Parse($$)
my $msgType = hex(substr($data, 1, 1));
my $setpointType = ReadingsVal($name, "setpointType", 'setpointShift');
my $waitingCmds = ReadingsVal($name, "waitingCmds", 0);
if (! $waitingCmds & 0x80) {
if (($waitingCmds & 0x80) == 0) {
$setpointType = hex(substr($data, 0, 1)) & 8 ? 'setpointTemp' : 'setpointShift';
push @event, "3:setpointType:$setpointType";
}