X-Git-Url: http://plrg.eecs.uci.edu/git/?p=iot2.git;a=blobdiff_plain;f=benchmarks%2Fother%2FZigbeeTest%2FMultipurposeSensor.java;h=a21155fcd3e8423361efe013a16320b54dddb5f2;hp=0243091ededf3cabdbf26eed52bd406ed1ae7e8e;hb=29139245e9e467770431976dae4bab726f08ccd1;hpb=dc73888086445b67a93e0651199411fe4d8b1aa0 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();