From f27e8d42dd8cb3f8f48a1608d6dc53962a007f26 Mon Sep 17 00:00:00 2001 From: jamesgo Date: Fri, 29 Jan 2016 10:06:40 +0000 Subject: [PATCH] 93_PWMR.pm : commander added git-svn-id: svn://svn.code.sf.net/p/fhem/code/trunk@10655 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/contrib/93_PWMR.pm | 32 +++++++++++++++++++++++++++++--- 1 file changed, 29 insertions(+), 3 deletions(-) diff --git a/fhem/contrib/93_PWMR.pm b/fhem/contrib/93_PWMR.pm index 4d5139a96..ab4e32b4e 100644 --- a/fhem/contrib/93_PWMR.pm +++ b/fhem/contrib/93_PWMR.pm @@ -1224,7 +1224,7 @@ PWMR_Boost(@) Define
@@ -1266,6 +1276,7 @@ PWMR_Boost(@) define roomKitchen PWMR fh 1,0 tempKitchen relaisKitchen windowKitchen1,windowKitchen2
define roomKitchen PWMR fh 1,0 tempKitchen relaisKitchen windowKitchen1,windowKitchen2:.*Open.*
define roomKitchen PWMR fh 1,0 tempKitchen relaisKitchen windowKitchen1,windowKitchen2 0:0.8:1:0
+ define roomKitchen PWMR fh 1,0 tempKitchen relaisKitchen dummy 0:0.8:1:0
define roomKitchen PWMR fh 1,0 tempKitchen relaisKitchen dummy 1:0.8:1:0

@@ -1308,7 +1319,8 @@ PWMR_Boost(@)
  • autoCalcTemp
    - Switch on (1) of off (0) autoCalcMode. desired-temp will be set based on the below temperatures and rules in autoCalcMode. + Switch on (1) of off (0) autoCalcMode. desired-temp will be set based on the below temperatures and rules in autoCalcMode.
    + Default is on.

  • tempDay
    @@ -1344,6 +1356,20 @@ PWMR_Boost(@) This results in tempDay 6:00-22:00 from Monday to Friday and tempNight outside this time window.

  • +
  • desiredTempFrom
    + This can be used as an alternative to the calculation of desired-temp based on the tempRules when autoCalcTemp is set to '1'.
    + If set correctly the desired-temp will be read from a reading of another device.
    + Format is <device>[:<reading>[:<regexp>]]
    + device defines the reference to the other object.
    + reading defines the reading that contains the value for desired-temp. Default is 'desired-temp'.
    + regexp defines a regular expression to extract the value used for 'desired-temp'. Default is '(\d[\d\.]+)'. + If regexp does not match (e.g. reading is 'off') then tempFrostProtect is used.
    + Internals c_desiredTempFrom reflects the actual setting and d_name, d_reading und d_regexpTemp the values used.
    + If this attribute is used then state will change from "Calculating" to "From <device>".
    + Calculation of desired-temp is (like when using tempRules) based on the interval specified for this device (default is 300 seconds). +

  • + +