/**
* Handle an event on the serial port. Read the data and print it.
*/
public synchronized void serialEvent(SerialPortEvent oEvent) {
if (oEvent.getEventType() == SerialPortEvent.DATA_AVAILABLE) {
try {
String inputLine=input.readLine();
if (inputLine.length() > 0) {
for(SerialListener s : listeners) {
s.readPerformed(inputLine);
}
}
} catch (Exception e) {
System.err.println(e.toString());
}
}
// Ignore all the other eventTypes, but you should consider the other ones.
}
SerialInterface.java 文件源码
java
阅读 26
收藏 0
点赞 0
评论 0
项目:Dirigino
作者:
评论列表
文章目录