From: Seyed Amir Hossein Aqajari Date: Tue, 6 Aug 2019 20:10:02 +0000 (-0700) Subject: Update sunrise-sunset.groovy X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=a25cd5cdc4ca15d8eb233ae7d34b2d345a87010d;p=smartapps.git Update sunrise-sunset.groovy --- diff --git a/official/sunrise-sunset.groovy b/official/sunrise-sunset.groovy index 3e4fd1f..f1d88e7 100755 --- a/official/sunrise-sunset.groovy +++ b/official/sunrise-sunset.groovy @@ -71,18 +71,22 @@ def initialize() { subscribe(location, "position", locationPositionChange) subscribe(location, "sunriseTime", sunriseSunsetTimeHandler) subscribe(location, "sunsetTime", sunriseSunsetTimeHandler) - - astroCheck() + + //astroCheck() } def locationPositionChange(evt) { log.trace "locationChange()" - astroCheck() + schedule("someTime", sunriseHandler) + schedule("someTime", sunsetHandler) + //astroCheck() } def sunriseSunsetTimeHandler(evt) { log.trace "sunriseSunsetTimeHandler()" - astroCheck() + schedule("someTime", sunriseHandler) + schedule("someTime", sunsetHandler) + //astroCheck() } def astroCheck() {