parent
6e047cce50
commit
cb9625b254
|
@ -12,10 +12,15 @@ public class SerialSandbox {
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
BinaryProtocol.tsOutputSize = 100;
|
BinaryProtocol.tsOutputSize = 100;
|
||||||
|
|
||||||
|
long startTime = System.currentTimeMillis();
|
||||||
|
|
||||||
String port = PortDetector.autoDetectSerial(callbackContext -> null).getSerialPort();
|
String port = PortDetector.autoDetectSerial(callbackContext -> null).getSerialPort();
|
||||||
System.out.println("Serial detected on " + port);
|
System.out.println("Serial detected on " + port);
|
||||||
|
|
||||||
HeartBeatListeners.INSTANCE.addListener(() -> System.out.println(new Date() + ": onDataArrival"));
|
HeartBeatListeners.INSTANCE.addListener(() -> {
|
||||||
|
int seconds = (int) ((System.currentTimeMillis() - startTime) / 1000);
|
||||||
|
System.out.println(new Date() + ": onDataArrival alive for " + seconds + " second(s)");
|
||||||
|
});
|
||||||
|
|
||||||
LinkManager linkManager = new LinkManager()
|
LinkManager linkManager = new LinkManager()
|
||||||
.setNeedPullText(false)
|
.setNeedPullText(false)
|
||||||
|
|
Loading…
Reference in New Issue