From 5716c253310ceee6fb0e8c9eff53ef5afbb08006 Mon Sep 17 00:00:00 2001 From: Seyed Amir Hossein Aqajari Date: Sat, 10 Aug 2019 15:59:54 -0700 Subject: [PATCH] Update turn-off-with-motion.groovy --- official/turn-off-with-motion.groovy | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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 +} -- 2.34.1