|
18 | 18 | *
|
19 | 19 | * Version history
|
20 | 20 | */
|
21 |
| -def version() { return "v0.3.167.20161206" } |
| 21 | +def version() { return "v0.3.168.20161220" } |
22 | 22 | /*
|
| 23 | + * 12/20/2016 >>> v0.3.168.20161220 - RC - Fixed a bug with loading attributes coolingSetpoint and heatingSetpoint from variables, thank you @bridaus for pointing it out, also extended conditional time options to 360 minutes |
23 | 24 | * 12/06/2016 >>> v0.3.167.20161206 - RC - Added some capabilities back - Light Bulb - removed Step Sensor as there is no more room :(
|
24 | 25 | * 11/21/2016 >>> v0.3.166.20161120 - RC - Added some capabilities back - had to remove some to make room for EchoSistant - CoRE is now reaching the max code base limit
|
25 | 26 | * 11/20/2016 >>> v0.3.165.20161120 - RC - DO NOT UPGRADE TO THIS UNLESS REQUESTED TO - Added support for EchoSistant, also fixed some bug with httpRequest (and added some extra logs)
|
@@ -8954,7 +8955,7 @@ private getThreeAxisOrientation(value, getIndex = false) {
|
8954 | 8955 | }
|
8955 | 8956 | private timeOptions(trigger = false) {
|
8956 | 8957 | def result = ["1 minute"]
|
8957 |
| - for (def i =2; i <= (trigger ? 360 : 60); i++) { |
| 8958 | + for (def i =2; i <= (trigger ? 360 : 360); i++) { |
8958 | 8959 | result.push("$i minutes")
|
8959 | 8960 | }
|
8960 | 8961 | return result
|
@@ -10595,8 +10596,8 @@ private commands() {
|
10595 | 10596 | [ name: "thermostat.emergencyHeat", category: "Comfort", group: defGroup, display: "Set to Emergency Heat", attribute: "thermostatMode", value: "emergencyHeat", ],
|
10596 | 10597 | [ name: "thermostat.quickSetHeat", category: "Comfort", group: defGroup, display: "Quick set heating point", parameters: ["Desired temperature:thermostatSetpoint"], description: "Set quick heating point at {0}$tempUnit", ],
|
10597 | 10598 | [ name: "thermostat.quickSetCool", category: "Comfort", group: defGroup, display: "Quick set cooling point", parameters: ["Desired temperature:thermostatSetpoint"], description: "Set quick cooling point at {0}$tempUnit", ],
|
10598 |
| - [ name: "thermostat.setHeatingSetpoint", category: "Comfort", group: defGroup, display: "Set heating point", parameters: ["Desired temperature:thermostatSetpoint"], description: "Set heating point at {0}$tempUnit", attribute: "thermostatHeatingSetpoint", value: "*|decimal", ], |
10599 |
| - [ name: "thermostat.setCoolingSetpoint", category: "Comfort", group: defGroup, display: "Set cooling point", parameters: ["Desired temperature:thermostatSetpoint"], description: "Set cooling point at {0}$tempUnit", attribute: "thermostatCoolingSetpoint", value: "*|decimal", ], |
| 10599 | + [ name: "thermostat.setHeatingSetpoint", category: "Comfort", group: defGroup, display: "Set heating point", parameters: ["Desired temperature:thermostatSetpoint"], description: "Set heating point at {0}$tempUnit", attribute: "heatingSetpoint", value: "*|decimal", ], |
| 10600 | + [ name: "thermostat.setCoolingSetpoint", category: "Comfort", group: defGroup, display: "Set cooling point", parameters: ["Desired temperature:thermostatSetpoint"], description: "Set cooling point at {0}$tempUnit", attribute: "coolingSetpoint", value: "*|decimal", ], |
10600 | 10601 | [ name: "thermostat.setThermostatMode", category: "Comfort", group: defGroup, display: "Set thermostat mode", parameters: ["Mode:thermostatMode"], description: "Set thermostat mode to {0}", attribute: "thermostatMode", value: "*|string", ],
|
10601 | 10602 | [ name: "fanOn", category: "Comfort", group: defGroup, display: "Set fan to On", ],
|
10602 | 10603 | [ name: "fanCirculate", category: "Comfort", group: defGroup, display: "Set fan to Circulate", ],
|
|
0 commit comments