我试图从连续报告体重的量表中读取体重。即,它不断发送=000.000=001.100=001.100
等等。我可以使用this generic serial port reader来阅读它。
但它不知道如何仅以双倍的方式获得重量。
=
仅001.100
为双倍。=000.999
之前,比例报告其他权重=001.100
。我该如何解决这个问题?
case SerialPortEvent.DATA_AVAILABLE:
byte[] readBuffer = new byte[20];
try {
// read data
int numBytes = inputStream.read(readBuffer);
inputStream.close();
String strWeight = new String(readBuffer, 0, numBytes, "UTF-8");
Weight=Double.parseDouble(strWeight);
答案 0 :(得分:0)