flserial 0.2.0
flserial: ^0.2.0 copied to clipboard
Flutter Serial Port Plugin FFI based on great C library. Useful to communicate with RS232 devices.
0.2.0 #
- New event model
- Cleaning up unnecessary libs
- Performance improvements
- Api changes, main functions:
Stream based events, before:
serial.onSerialData.subscribe(
to:
serial.onSerialData.stream.listen(
Write serial port, before:
serial.write(data.length, data);
to:
serial.write(data);
0.1.2 #
- Android compilation
0.1.1 #
- Initial beta version