//Create a class for aeon key fob package AeonKeyFob import SmartThing.SmartThing public class AeonKeyFob extends SmartThing { // id, label, and display name of the device String id String label String displayName // Possible values for eventsSince method List possibleValues = new ArrayList() AeonKeyFob(Closure sendEvent, String id, String label, String displayName) { idSmartThing = id labelSmartThing = label displayNameSmartThing = displayName possibleValuesSmartThings = possibleValues sendEventSmartThings = sendEvent // Initialization this.id = id this.label = label this.displayName = displayName possibleValues.add("pushed") possibleValues.add("held") } }