newer-android

Results 1 comments of newer-android

my codes final name = SerialPort.availablePorts[1]; final port = SerialPort(name); final serialPortConfig = SerialPortConfig(); serialPortConfig.baudRate = 9600; port.config = serialPortConfig; if (!port.openReadWrite()) { print(SerialPort.lastError); exit(-1); } final reader = SerialPortReader(port);...