SerialTest.java 文件源码

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

项目:lizard-enclosure 作者:
/**
 * Handle an event on the serial port. Read the data and print it.
 */
@Override
public synchronized void serialEvent(SerialPortEvent oEvent) 
{
        if (oEvent.getEventType() == SerialPortEvent.DATA_AVAILABLE) 
        {
                try 
                {
                        String inputLine = input.readLine();
                        System.out.println(inputLine);
                } catch (Exception e) {
                        System.err.println(e.toString());
                }
        }
        // Ignore all the other eventTypes, but you should consider the other ones.
}
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号