ArduinoSerialCommunication.java 文件源码

java
阅读 22 收藏 0 点赞 0 评论 0

项目:GazePlay 作者:
/**
 * 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.
}
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号