- All Implemented Interfaces:
- Serializable
public class CCOBDataRead
extends Object
implements Serializable
Constructor CCOBDataRead(String ).
To use construct on String returned from CCOB (call it ccob_readback)
CCOBData mydata ccob_readback)
To get the original string readback from CCOB
String asString = mydata.getInputString();
To get readback from CCOB as an array of strings
String [] asStringArray = mydata.getInputStringAsArray();
To get readback from CCOB as an array of doubles
double [] asDoubletArray = mydata.getDoubleArray()
Instead or as well get the individual parameters
get the led current
double ledI = mydata.getLedCurrent();
get the photodiode current
double phdeI = mydata.getPhotodiodeCurrent();
get the sphere temperature
double tSph = mydata.getTempSphere();
get board temperature
double tBrd = mydata.getTempBrd();
get led1 temperature
double tLed1 = mydata.getTempLed1();
get led2 temperature
double tLed2 = mydata.getTempLed2();
get led voltage
double ledV = mydata.getLedVoltage();
get led reference voltate
double ledVref = mydata.getLedVref();
- Author:
- Farrukh Azfar.
- See Also:
- Serialized Form