X-Git-Url: http://plrg.eecs.uci.edu/git/?p=iot2.git;a=blobdiff_plain;f=others%2Ftutorial%2Fbenchmarks%2Fdrivers%2FSmartLightBulb%2FDeviceStateHostInfo.java;fp=others%2Ftutorial%2Fbenchmarks%2Fdrivers%2FSmartLightBulb%2FDeviceStateHostInfo.java;h=a10213de3461d3ab927b4f898096dd00d0b758e1;hp=0000000000000000000000000000000000000000;hb=c237c320de0460665d2adf13fc24034398a2d9c9;hpb=da6d0d112a9658557ea500805ba0dc2c4c51cde4 diff --git a/others/tutorial/benchmarks/drivers/SmartLightBulb/DeviceStateHostInfo.java b/others/tutorial/benchmarks/drivers/SmartLightBulb/DeviceStateHostInfo.java new file mode 100644 index 0000000..a10213d --- /dev/null +++ b/others/tutorial/benchmarks/drivers/SmartLightBulb/DeviceStateHostInfo.java @@ -0,0 +1,25 @@ +package iotcode.LifxLightBulb; + +public class DeviceStateHostInfo { + final long signal; + final long tx; + final long rx; + + public DeviceStateHostInfo(long _signal, long _tx, long _rx) { + signal = _signal; + tx = _tx; + rx = _rx; + } + + public long getSignal() { + return signal; + } + + public long getTx() { + return tx; + } + + public long getRx() { + return rx; + } +}