Package com.caen.RFIDLibrary
Class IDSTagData
- java.lang.Object
-
- com.caen.RFIDLibrary.IDSTagData
-
public class IDSTagData extends Object
This class represents data returned by tags based on IDS Chip SL900A.
-
-
Constructor Summary
Constructors Constructor Description IDSTagData()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleangetADError()This method returns if an A/D error is raised.intgetRangeLimit()This method returns the range limit set on sensor.intgetSensorValue()This method returns the sensor value.voidsetADError(boolean value)voidsetRangeLimit(int value)voidsetSensorValue(int value)
-
-
-
Method Detail
-
getADError
public boolean getADError()
This method returns if an A/D error is raised.- Returns:
- True if an A/D error occurs, false otherwise.
-
setADError
public void setADError(boolean value)
-
getRangeLimit
public int getRangeLimit()
This method returns the range limit set on sensor.- Returns:
- A bitmask representing the range limit.
-
setRangeLimit
public void setRangeLimit(int value)
-
getSensorValue
public int getSensorValue()
This method returns the sensor value.- Returns:
- A bitmask representing the value obtained by the sensor.
-
setSensorValue
public void setSensorValue(int value)
-
-