From 061cfafaa47ee946e85eb8109e182ff64a88eb99 Mon Sep 17 00:00:00 2001 From: Kristopher Kubicki Date: Wed, 17 Feb 2016 23:58:51 -0600 Subject: [PATCH] Added actuator capability SmartApps need to know the actuator capability so that they can interact with this device --- nest.devicetype.groovy | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nest.devicetype.groovy b/nest.devicetype.groovy index a9335ef..d958467 100644 --- a/nest.devicetype.groovy +++ b/nest.devicetype.groovy @@ -80,6 +80,7 @@ metadata { capability "Temperature Measurement" capability "Presence Sensor" capability "Sensor" + capability "Actuator" command "away" command "present" @@ -597,4 +598,4 @@ def cToF(temp) { def fToC(temp) { return ((temp - 32) / 1.8).toDouble() -} \ No newline at end of file +}