From: Rahmadi Trimananda <rahmadi.trimananda@uci.edu>
Date: Fri, 16 Aug 2019 22:44:38 +0000 (-0700)
Subject: Update thermostat.groovy
X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=05acbbcf15be0ea7cdbab246fa70158fca373400;p=smartapps.git

Update thermostat.groovy
---

diff --git a/official/thermostat.groovy b/official/thermostat.groovy
index 88dd566..88501dd 100644
--- a/official/thermostat.groovy
+++ b/official/thermostat.groovy
@@ -76,13 +76,13 @@ def updated() {
 }
 
 def subscribeToEvents() {
-	subscribe(smokeDevices, "smoke.detected", eventHandler1)
-	subscribe(smokeDevices, "smoke.tested", eventHandler1)
-	subscribe(smokeDevices, "carbonMonoxide.detected", eventHandler1)
- 	subscribe(carbonMonoxideDevices, "carbonMonoxide.detected", eventHandler1)
+	subscribe(smokeDevices, "smoke.detected", eventHandler)
+	subscribe(smokeDevices, "smoke.tested", eventHandler)
+	subscribe(smokeDevices, "carbonMonoxide.detected", eventHandler)
+ 	subscribe(carbonMonoxideDevices, "carbonMonoxide.detected", eventHandler)
 }
 
-def eventHandler1(evt) {
+def eventHandler(evt) {
 	log.debug "Notify got evt ${evt}"
 	// Turn off thermostat
 	thermostatDevices*.setThermostatMode("off")