/**
* 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();
log.info("Reçoit : " + inputLine);
} catch (Exception e) {
log.error("error 2 " + e.toString());
}
}
// Ignore all the other eventTypes, but you should consider the other ones.
}
ArduinoSerialCommunication.java 文件源码
java
阅读 22
收藏 0
点赞 0
评论 0
项目:GazePlay
作者:
评论列表
文章目录