UsbSerial
UsbSerial copied to clipboard
Unhandled Exception: PlatformException(UsbSerialPortAdapter, Not an Serial device., null, null)
I can connect this device on windows but it gives me this error when I connect to android
[UsbDevice: /dev/bus/usb/002/003, 1ac2-f DESKO USB DEVICE, DESKO GmbH 00000017]
Unhandled Exception: PlatformException(UsbSerialPortAdapter, Not an Serial device., null, null)
Future.delayed(Duration.zero, () async { List<UsbDevice> devices = await UsbSerial.listDevices();
print(devices);
final port = await devices.first.create();
await port?.setDTR(true);
await port?.setRTS(true);
port?.setPortParameters(9600, UsbPort.DATABITS_8, UsbPort.STOPBITS_1, UsbPort.PARITY_NONE);
port?.setFlowControl(UsbPort.FLOW_CONTROL_OFF);
await port?.open();
port?.inputStream?.listen((event) {
print(event);
});
});
I want to receive data from a qr code scanning device but it displays the same error code. I don't know if it's due to the device or the way I installed it