Removing getXXX methods + properties. Adding getProperty feature to SmartThing(s)
[smartthings-infrastructure.git] / ContactSensor / ContactSensor.groovy
1 //Create a class for contact sensor
2 package ContactSensor
3 import SmartThing.SmartThing
4
5 public class ContactSensor extends SmartThing {
6         // id, label, and display name of the device
7         String id
8         String label
9         String displayName
10         // Maps from features to values
11         HashMap<String, String> deviceValuesMap = new HashMap<String, String>()
12         // Possible values for eventsSince method
13         List<String> possibleValues = new ArrayList<String>();
14
15         ContactSensor(Closure sendEvent, String id, String label, String displayName, String currentContact) {
16                 deviceValueSmartThing = deviceValuesMap
17                 idSmartThing = id
18                 labelSmartThing = label
19                 displayNameSmartThing = displayName
20                 sendEventSmartThings = sendEvent
21                 possibleValuesSmartThings = possibleValues
22
23                 // Initialization
24                 this.id = id
25                 this.label = label
26                 this.displayName = displayName
27                 possibleValues.add("closed")
28                 possibleValues.add("open")
29
30                 deviceValuesMap.put("contact", currentContact)
31         }
32 }