/**
* 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.
}
SerialTest.java 文件源码
java
阅读 18
收藏 0
点赞 0
评论 0
项目:lizard-enclosure
作者:
评论列表
文章目录