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