Changes between Version 6 and Version 7 of WikiStart


Ignore:
Timestamp:
2013-08-09 09:43:14 (11 years ago)
Author:
solivas
Comment:

Fixes

Legend:

Unmodified
Added
Removed
Modified
  • WikiStart

    v6 v7  
    1616---- 
    1717 
     18=== Variables === 
    1819 
    19 Here are the variables that the plugin will expose after it initializes: 
     20The following variables are exposed once the plugin has initialized: 
    2021 
    2122'''Sensors''' = a list of Sensors that will be checked.[[BR]] 
    2223[[BR]] 
    23 '''''* Format:'''  Needs to be entered in the format of [sensor id#]="name''"[[BR]] 
     24'''''* Format:'''  Needs to be entered in the format of [sensor id#]="name''"[[BR]][[BR]] 
    2425Example: 
    2526{{{ 
     
    3031'''Thermostats''' = a list of thermostats that will be controlled by this plugin.[[BR]] 
    3132[[BR]] 
    32 '''''* Format:'''  Needs to be entered in the format of [thermostat id#]="name"''[[BR]] 
     33'''''* Format:'''  Needs to be entered in the format of [thermostat id#]="name"''[[BR]][[BR]] 
    3334Example: 
    3435 
     
    4041'''Refresh''' = number of seconds to wait between checking the sensors and controlling the thermostats.  Default is set to 300 seconds (5 minutes).  Min = 300, Max = 86400.  Anything set/passed outside the min/max range will be ignored, and the default of 300 will be used.  Setting this to 0 will disable the automatic polling. 
    4142 
    42 !OnMode = What mode should thermostats be restored to when sensors are closed (no longer tripped) 
     43'''!OnMode''' = What mode should thermostats be restored to when sensors are closed (no longer tripped) 
    4344 
    4445Valid modes are:[[BR]] 
     
    5253'''!OffMode''' = What mode should thermostats be set to when sensors are open (tripped) 
    5354 
    54 Valid modes are: 
     55Valid modes are:[[BR]] 
    55560  = Off[[BR]] 
    56571  = !HeatOn[[BR]] 
     
    6162'''!NotifyMode''' = Toggles use of Twilio Plugin to send SMS message 
    6263 
    63 Valid modes are: 
    64  
     64Valid modes are:[[BR]] 
    65650 = Disabled[[BR]] 
    66661 = Use Twilio Plugin to send SMS[[BR]] 
     
    7373'''!VerboseDebug''' - Turns on the logging of additional messages for troubleshooting 
    7474 
     75Valid values are:[[BR]] 
    75760 = Off (default)[[BR]] 
    76771 = On[[BR]] 
     
    8283'''!StartupCheck''' - Normally, the plugin will wait 300 seconds (5 minutes) when it starts before doing a check of the sensors.  You can set this variable to run a check right after it has finished initializing. 
    8384 
     85Valid values are:[[BR]] 
    84860 = Off (default)[[BR]] 
    85871 = On 
     
    8890---- 
    8991 
    90  
    91 Functions exposed: 
     92=== Functions === 
    9293 
    9394'''!ForcePoll''' = Allows for you to call the polling/checking option in your own scripts/scenes 
     
    150151 
    151152 
    152 Bug fixes: 
     153=== Pre-SVN Repository Bug fixes === 
    153154 
    1541551. Made a fix to the string 2 table code and added in a verbose debug flag for troubleshooting.