Update notify-me-with-hue.groovy
[smartapps.git] / official / notify-me-with-hue.groovy
index 3bbfda7ce65409d96a0e0312ef090a0dc6e47aca..1416478518b33eb5a23b0c172b00690f060cb500 100755 (executable)
@@ -50,7 +50,7 @@ preferences {
        section("Choose light effects...")
                {
                        input "color", "enum", title: "Hue Color?", required: false, multiple:false, options: ["Red","Green","Blue","Yellow","Orange","Purple","Pink"]
-                       input "lightLevel", "enum", title: "Light Level?", required: false, options: [[10:"10%"],[20:"20%"],[30:"30%"],[40:"40%"],[50:"50%"],[60:"60%"],[70:"70%"],[80:"80%"],[90:"90%"],[100:"100%"]]
+                       input "lightLevel", "enum", title: "Light Level?", required: false, options: [10,20,30,40,50,60,70,80,90,100]
                        input "duration", "number", title: "Duration Seconds?", required: false
                        //input "turnOn", "enum", title: "Turn On when Off?", required: false, options: ["Yes","No"]
                }
@@ -63,6 +63,8 @@ preferences {
 def installed() {
        log.debug "Installed with settings: ${settings}"
        subscribeToEvents()
+       // Initialize input value
+       color = "Pink"
 }
 
 def updated() {
@@ -73,7 +75,7 @@ def updated() {
 }
 
 def subscribeToEvents() {
-       subscribe(app, appTouchHandler1)
+       subscribe(app, appTouchHandler)
        subscribe(contact, "contact.open", eventHandler1)
        subscribe(contactClosed, "contact.closed", eventHandler1)
        subscribe(acceleration, "acceleration.active", eventHandler1)
@@ -117,7 +119,7 @@ def modeChangeHandler(evt) {
 }
 
 def scheduledTimeHandler() {
-       eventHandler1(null)
+       //eventHandler1(null)
 }
 
 def appTouchHandler(evt) {