mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-05-04 22:19:38 +00:00
MAX: replace == by eq
git-svn-id: https://svn.fhem.de/fhem/trunk/fhem@4293 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
1bc86f0575
commit
f1fe5051ab
@ -770,11 +770,11 @@ MAX_Parse($$)
|
|||||||
|
|
||||||
} elsif(grep /^$msgtype$/, ("AckConfigValve", "AckConfigTemperatures", "AckSetDisplayActualTemperature" )) {
|
} elsif(grep /^$msgtype$/, ("AckConfigValve", "AckConfigTemperatures", "AckSetDisplayActualTemperature" )) {
|
||||||
|
|
||||||
if($args[0] == "windowOpenTemperature"
|
if($args[0] eq "windowOpenTemperature"
|
||||||
|| $args[0] == "comfortTemperature"
|
|| $args[0] eq "comfortTemperature"
|
||||||
|| $args[0] == "ecoTemperature"
|
|| $args[0] eq "ecoTemperature"
|
||||||
|| $args[0] == "maximumTemperature"
|
|| $args[0] eq "maximumTemperature"
|
||||||
|| $args[0] == "minimumTemperature" ) {
|
|| $args[0] eq "minimumTemperature" ) {
|
||||||
readingsBulkUpdate($shash, $args[0], MAX_SerializeTemperature($args[1]));
|
readingsBulkUpdate($shash, $args[0], MAX_SerializeTemperature($args[1]));
|
||||||
} else {
|
} else {
|
||||||
#displayActualTemperature, boostDuration, boostValveSetting, maxValve, decalcification, valveOffset
|
#displayActualTemperature, boostDuration, boostValveSetting, maxValve, decalcification, valveOffset
|
||||||
|
Loading…
x
Reference in New Issue
Block a user