Changes between Version 6 and Version 7 of WikiStart
- Timestamp:
- 2013-08-09 09:43:14 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WikiStart
v6 v7 16 16 ---- 17 17 18 === Variables === 18 19 19 Here are the variables that the plugin will expose after it initializes:20 The following variables are exposed once the plugin has initialized: 20 21 21 22 '''Sensors''' = a list of Sensors that will be checked.[[BR]] 22 23 [[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]] 24 25 Example: 25 26 {{{ … … 30 31 '''Thermostats''' = a list of thermostats that will be controlled by this plugin.[[BR]] 31 32 [[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]] 33 34 Example: 34 35 … … 40 41 '''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. 41 42 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) 43 44 44 45 Valid modes are:[[BR]] … … 52 53 '''!OffMode''' = What mode should thermostats be set to when sensors are open (tripped) 53 54 54 Valid modes are: 55 Valid modes are:[[BR]] 55 56 0 = Off[[BR]] 56 57 1 = !HeatOn[[BR]] … … 61 62 '''!NotifyMode''' = Toggles use of Twilio Plugin to send SMS message 62 63 63 Valid modes are: 64 64 Valid modes are:[[BR]] 65 65 0 = Disabled[[BR]] 66 66 1 = Use Twilio Plugin to send SMS[[BR]] … … 73 73 '''!VerboseDebug''' - Turns on the logging of additional messages for troubleshooting 74 74 75 Valid values are:[[BR]] 75 76 0 = Off (default)[[BR]] 76 77 1 = On[[BR]] … … 82 83 '''!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. 83 84 85 Valid values are:[[BR]] 84 86 0 = Off (default)[[BR]] 85 87 1 = On … … 88 90 ---- 89 91 90 91 Functions exposed: 92 === Functions === 92 93 93 94 '''!ForcePoll''' = Allows for you to call the polling/checking option in your own scripts/scenes … … 150 151 151 152 152 Bug fixes: 153 === Pre-SVN Repository Bug fixes === 153 154 154 155 1. Made a fix to the string 2 table code and added in a verbose debug flag for troubleshooting.