From 2c0be7b286ec8fd7deccef3ad55a3d164ec1782e Mon Sep 17 00:00:00 2001 From: mgehre <> Date: Fri, 11 Jan 2013 23:34:49 +0000 Subject: [PATCH] MAX: change 4.5 degree to "off" and 30.5 to "on" git-svn-id: https://svn.fhem.de/fhem/trunk@2483 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/FHEM/10_MAX.pm | 28 +++++++++++++++------------- 1 file changed, 15 insertions(+), 13 deletions(-) diff --git a/fhem/FHEM/10_MAX.pm b/fhem/FHEM/10_MAX.pm index 371d0b571..cde6a33f2 100755 --- a/fhem/FHEM/10_MAX.pm +++ b/fhem/FHEM/10_MAX.pm @@ -148,12 +148,18 @@ MAX_CheckIODev($) return !defined($hash->{IODev}) || ($hash->{IODev}{TYPE} ne "MAXLAN" && $hash->{IODev}{TYPE} ne "CUL_MAX"); } +sub +MAX_ParseTemperature($) +{ + return @_[0] eq "on" ? 30.5 : (@_[0] eq "off" ? 4.5 :@_[0]); +} + sub MAX_ReadingsVal(@) { my ($hash,$name) = @_; - my $val = ReadingsVal($hash->{NAME},$name,""); + my $val = MAX_ParseTemperature(ReadingsVal($hash->{NAME},$name,"")); #$readingDef{$name} array is [min, max, default] if(exists($readingDef{$name}) and ($val eq "" or $val !~ /^-?(\d+\.?\d*|\.\d+)$/ or $val < $readingDef{$name}[0] or $val > $readingDef{$name}[1])) { @@ -199,12 +205,8 @@ MAX_Set($@) } elsif($args[0] eq "comfort") { $temperature = MAX_ReadingsVal($hash,"comfortTemperature"); return "No comfortTemperature defined" if(!$temperature); - } elsif($args[0] eq "on") { - $temperature = 30.5; - } elsif($args[0] eq "off") { - $temperature = 4.5; }else{ - $temperature = $args[0]; + $temperature = MAX_ParseTemperature($args[0]); } if(@args > 1 and ($args[1] eq "until") and ($ctrlmode == 1)) { @@ -242,12 +244,12 @@ MAX_Set($@) readingsSingleUpdate($hash, $setting, $args[0], 0); - my $comfort = int($comfortTemperature*2); - my $eco = int($ecoTemperature*2); - my $max = int($maximumTemperature*2); - my $min = int($minimumTemperature*2); + my $comfort = int(MAX_ParseTemperature($comfortTemperature)*2); + my $eco = int(MAX_ParseTemperature($ecoTemperature)*2); + my $max = int(MAX_ParseTemperature($maximumTemperature)*2); + my $min = int(MAX_ParseTemperature($minimumTemperature)*2); my $offset = int(($measurementOffset + 3.5)*2); - my $windowOpenTemp = int($windowOpenTemperature*2); + my $windowOpenTemp = int(MAX_ParseTemperature($windowOpenTemperature)*2); my $windowOpenTime = int($windowOpenDuration/5); my $payload = pack("CCCCCCH6C"."CCCCCCC",0x00,0x00,0x11,0x00,0x00,0x00,$hash->{addr},0x00, @@ -292,7 +294,7 @@ MAX_Set($@) return ($hash->{IODev}{SendDeviceCmd})->($hash->{IODev},$payload); }else{ - my $templist = join(",",map { sprintf("%2.1f",$_/2) } (9..61)); + my $templist = "off,".join(",",map { sprintf("%2.1f",$_/2) } (10..60)) . ",on"; my $ret = "Unknown argument $setting, choose one of wakeUp factoryReset groupid"; my $assoclist; @@ -642,7 +644,7 @@ MAX_Parse($$)
  • maximumTemperature <value>
    For devices of type HeatingThermostat only. Writes the given maximum temperature to the device's memory. It confines the temperature that can be manually set on the device.
  • windowOpenTemperature <value>
    - For devices of type HeatingThermostat only. Writes the given window open temperature to the device's memory. That is the temperature the heater will temporarily set if an open window is detected.
  • + For devices of type HeatingThermostat only. Writes the given window open temperature to the device's memory. That is the temperature the heater will temporarily set if an open window is detected. Setting it to 4.5 degree or "off" will turn off reacting on open windows.
  • windowOpenDuration <value>
    For devices of type HeatingThermostat only. Writes the given window open duration to the device's memory. That is the duration the heater will temporarily set the window open temperature if an open window is detected by a rapid temperature decrease. (Not used if open window is detected by ShutterControl. Must be between 0 and 60 minutes in multiples of 5.
  • factoryReset