From: Seyed Amir Hossein Aqajari Date: Sat, 10 Aug 2019 22:59:54 +0000 (-0700) Subject: Update turn-off-with-motion.groovy X-Git-Url: http://plrg.eecs.uci.edu/git/?p=smartapps.git;a=commitdiff_plain;h=5716c253310ceee6fb0e8c9eff53ef5afbb08006;hp=2fb86c9352aec263be71c027f89398e293974027 Update turn-off-with-motion.groovy --- diff --git a/official/turn-off-with-motion.groovy b/official/turn-off-with-motion.groovy index 951db43..658dede 100755 --- a/official/turn-off-with-motion.groovy +++ b/official/turn-off-with-motion.groovy @@ -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 +}