X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=benchmarks%2Fother%2FZigbeeTest%2FMultipurposeSensor.java;h=a21155fcd3e8423361efe013a16320b54dddb5f2;hb=29139245e9e467770431976dae4bab726f08ccd1;hp=0243091ededf3cabdbf26eed52bd406ed1ae7e8e;hpb=903f2886824222a912502db3fdf432e4351141e6;p=iot2.git diff --git a/benchmarks/other/ZigbeeTest/MultipurposeSensor.java b/benchmarks/other/ZigbeeTest/MultipurposeSensor.java index 0243091..a21155f 100644 --- a/benchmarks/other/ZigbeeTest/MultipurposeSensor.java +++ b/benchmarks/other/ZigbeeTest/MultipurposeSensor.java @@ -38,8 +38,6 @@ public class MultipurposeSensor implements IoTZigbeeCallback, SmartthingsSensor private List < SmartthingsSensorCallback > callbackList = new CopyOnWriteArrayList < SmartthingsSensorCallback > (); - private int sensorId = 0; - @config private IoTSet devUdpAddress; @config private IoTSet devZigbeeAddress; @@ -138,18 +136,6 @@ public class MultipurposeSensor implements IoTZigbeeCallback, SmartthingsSensor } } - public void setId(int id) { - - sensorId = id; - - } - - public int getId() { - - return sensorId; - - } - public int getValue() { int tmp = 0; @@ -212,7 +198,7 @@ public class MultipurposeSensor implements IoTZigbeeCallback, SmartthingsSensor gettingLatestDataMutex.release(); try { for (SmartthingsSensorCallback cb : callbackList) { - cb.newReadingAvailable(this.getId(), this.getValue(), this.isActiveValue()); + cb.newReadingAvailable(this.getValue(), this.isActiveValue()); } } catch (Exception e) { e.printStackTrace();