Update turn-off-with-motion.groovy
[smartapps.git] / official / turn-off-with-motion.groovy
index 951db43902e00ed4c4ecd3738fe606a68b23e7d0..658dedea957ecb2ba123471b05079cbfc363d954 100755 (executable)
@@ -68,15 +68,15 @@ def motionHandler(evt) {
 def scheduleCheck() {
        log.debug "schedule check, ts = ${state.inactiveAt}"
        if (state.inactiveAt) {
-               def elapsed = now() - state.inactiveAt
-               def threshold = 1000 * 60 * minutes1
-               if (elapsed >= threshold) {
+               //def elapsed = now() - state.inactiveAt
+               //def threshold = 1000 * 60 * minutes1
+               if (/*elapsed >= threshold*/true) {
                        log.debug "turning off lights"
                        switches.on()
                        state.inactiveAt = null
                }
                else {
-                       log.debug "${elapsed / 1000} sec since motion stopped"
+                       log.debug "since motion stopped"
                }
        }
-}
\ No newline at end of file
+}