我有一个简单的声纳arduino项目,所以它每秒打印一次距离。 我使用UsbSerial实现了一个Android应用程序来与我的arduino进行通信。到目前为止一切顺利,我能够接收数据并且我收到的数据是正确的,但问题是这些值有时候没有正确发送。 以下是我收到的示例输出:
data: 7
data: 1
data:
data: 71
以下是生成输出的代码:
private UsbSerialInterface.UsbReadCallback mCallback = new UsbSerialInterface.UsbReadCallback() {
@Override
public void onReceivedData(byte[] arg0)
{
try {
String data = new String(arg0, "UTF-8");
System.out.println("data: " + data);
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
}
};
所以在我看来这里有两个问题:
71
onReceivedData
并且arduino总是发送一些内容。非常感谢任何帮助。
答案 0 :(得分:1)
我找到了解决问题的方法。通过阅读this link我注意到我需要对我在onReceivedData
方法中收到的数据进行一些操作。
所以我更改了mCallBack
如下:
private UsbSerialInterface.UsbReadCallback mCallback = new UsbSerialInterface.UsbReadCallback() {
@Override
public void onReceivedData(byte[] arg0)
{
if(arg0!= null && arg0.length > 0){
if (isStartByte(arg0[0])) {
printData();
clearBytes();
}
appendBytes(arg0);
}
}
};
以下是我添加的其他方法:
private void clearBytes(){
buffer=new byte[8];
bufferSize = 0;
}
private void appendBytes(byte[] buf){
System.arraycopy(buf, 0, buffer, bufferSize, buf.length);
bufferSize += buf.length;
}
private void printData() {
if (bufferSize == 0) {
return;
}
byte[] buf = new byte[bufferSize];
System.arraycopy(buffer, 0, buf, 0, bufferSize);
String data = null;
try {
data = new String(buf, "UTF-8");
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
if (null != data && !data.isEmpty()) {
System.out.println("data: " + data);
}
}
public boolean isStartByte(byte firstChar){
return firstChar=='A';
}
我还修改了Arduino代码并在串行输出的开头添加了字符A
。
这解决了这个问题,但我认为这不是最好的做法。我认为UsbSerial库应该提供更好的输出处理(或者我错了,这是使用串行通信的本质)。