Compare commits

...

1 Commits

Author SHA1 Message Date
Paul Haywood
1457c32f20 MSA-2375: nest 2017-11-19 12:29:57 -08:00

View File

@@ -0,0 +1,41 @@
/**
* NST Manager
*
* Copyright 2017 @tonesto7
*
*/
definition(
name: "NST Manager",
namespace: "NST Manager",
author: "@tonesto7",
description: "nest",
category: "Convenience",
iconUrl: "https://s3.amazonaws.com/smartapp-icons/Convenience/Cat-Convenience.png",
iconX2Url: "https://s3.amazonaws.com/smartapp-icons/Convenience/Cat-Convenience@2x.png",
iconX3Url: "https://s3.amazonaws.com/smartapp-icons/Convenience/Cat-Convenience@2x.png")
preferences {
section("Title") {
// TODO: put inputs here
}
}
def installed() {
log.debug "Installed with settings: ${settings}"
initialize()
}
def updated() {
log.debug "Updated with settings: ${settings}"
unsubscribe()
initialize()
}
def initialize() {
// TODO: subscribe to attributes, devices, locations, etc.
}
// TODO: implement event handlers