Skip to content

Commit dc896ee

Browse files
author
Adrian Caramaliu
committed
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
1 parent dc958d2 commit dc896ee

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

smartapps/ady624/core.src/core.groovy

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,9 @@
1818
*
1919
* Version history
2020
*/
21-
def version() { return "v0.3.167.20161206" }
21+
def version() { return "v0.3.168.20161220" }
2222
/*
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
2324
* 12/06/2016 >>> v0.3.167.20161206 - RC - Added some capabilities back - Light Bulb - removed Step Sensor as there is no more room :(
2425
* 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
2526
* 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) {
89548955
}
89558956
private timeOptions(trigger = false) {
89568957
def result = ["1 minute"]
8957-
for (def i =2; i <= (trigger ? 360 : 60); i++) {
8958+
for (def i =2; i <= (trigger ? 360 : 360); i++) {
89588959
result.push("$i minutes")
89598960
}
89608961
return result
@@ -10595,8 +10596,8 @@ private commands() {
1059510596
[ name: "thermostat.emergencyHeat", category: "Comfort", group: defGroup, display: "Set to Emergency Heat", attribute: "thermostatMode", value: "emergencyHeat", ],
1059610597
[ name: "thermostat.quickSetHeat", category: "Comfort", group: defGroup, display: "Quick set heating point", parameters: ["Desired temperature:thermostatSetpoint"], description: "Set quick heating point at {0}$tempUnit", ],
1059710598
[ 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", ],
1060010601
[ name: "thermostat.setThermostatMode", category: "Comfort", group: defGroup, display: "Set thermostat mode", parameters: ["Mode:thermostatMode"], description: "Set thermostat mode to {0}", attribute: "thermostatMode", value: "*|string", ],
1060110602
[ name: "fanOn", category: "Comfort", group: defGroup, display: "Set fan to On", ],
1060210603
[ name: "fanCirculate", category: "Comfort", group: defGroup, display: "Set fan to Circulate", ],

0 commit comments

Comments
 (0)