//Create a class for Touch sensor package appTouch import SmartThing.SmartThing public class Touched extends SmartThing { // id, label, and display name of the device String id String label String displayName Touched(Closure sendEvent) { id = "appTouchID0" label = "appTouch" displayName = "appTouchSensor" idSmartThing = id labelSmartThing = label displayNameSmartThing = displayName sendEventSmartThings = sendEvent } }