80ce59d66650bec55d312470c3cb7da5b4d4adbc
[smartthings-infrastructure.git] / NfcTouch / NfcTouch.groovy
1 //Create a class for Touch sensor
2 package NfcTouch
3 import SmartThing.SmartThing
4
5 public class NfcTouch extends SmartThing {
6         // id, label, and display name of the device
7         StringBuilder id = new StringBuilder()
8         StringBuilder label = new StringBuilder()
9         StringBuilder displayName = new StringBuilder()
10
11         NfcTouch(Closure sendEvent) {
12                 idSmartThing = id
13                 labelSmartThing = label
14                 displayNameSmartThing = displayName
15                 sendEventSmartThings = sendEvent
16
17                 // Initialization
18                 id.append("nfcSensorID0")
19                 label.append("nfcSensor")
20                 displayName.append("nfcSensor0")
21         }
22 }