# usbserial
**Repository Path**: fwpz/usbserial
## Basic Information
- **Project Name**: usbserial
- **Description**: No description available
- **Primary Language**: Unknown
- **License**: BSD-3-Clause
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2024-09-14
- **Last Updated**: 2024-09-14
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
[](https://pub.dartlang.org/packages/usb_serial) [](https://github.com/altera2015/usbserial/actions/workflows/flutter.yml)
# usb_serial
An Android USB Serial Flutter Plugin
This plugin allows Flutter code to interact with USB serial devices connected to your Android device. For example an FTDI or CDC based USB device.
## Getting Started
Add a dependency to your pubspec.yaml
```dart
dependencies:
usb_serial: ^0.5.0
```
include the usbserial package at the top of your dart file.
```dart
import 'package:usb_serial/usb_serial.dart'
```
### Optional
Add
```xml
```
to your AndroidManifest.xml
and place device_filter.xml
```xml
```
in the res/xml directory. This will notify your app when one of the specified devices
is plugged in.
## Usage of Asynchronous API
```dart
...
onPressed: () async {
List devices = await UsbSerial.listDevices();
print(devices);
UsbPort port;
if (devices.length == 0) {
return;
}
port = await devices[0].create();
bool openResult = await port.open();
if ( !openResult ) {
print("Failed to open");
return;
}
await port.setDTR(true);
await port.setRTS(true);
port.setPortParameters(115200, UsbPort.DATABITS_8,
UsbPort.STOPBITS_1, UsbPort.PARITY_NONE);
// print first result and close port.
port.inputStream.listen((Uint8List event) {
print(event);
port.close();
});
await port.write(Uint8List.fromList([0x10, 0x00]));
}
...
```
## Usage of transaction API
This API is a layer on top of the asynchronous part of the library. It provides two
Stream Transformers and a Transaction helper based on the StreamQueue class.
1. Terminated Transformer, this splits incoming data based on a configurable end of message bytes "terminator".
2. Magic Header + Length byte, this splits incoming data based on a configurable header ( with wildcards! ) and a length byte directly following the header.
In case neither is a fit, you can use one of those Transformers to create you own that is specific
to the binary format you are dealing with.
```dart
...
Transaction transaction = Transaction.stringTerminated(port.inputStream, Uint8List.fromList([13,10]));
...
// While using transactions you can still listen to all
// incoming messages!
transaction.stream.listen( (String data) {
print(data);
});
// you can write asynchronous messages as before!
p.write(Uint8List.fromList([65,66,13,10]));
// BUT you can also write 'transactions'. This is a combination of a flush, write and wait for response
// with a timeout. If no response is received within the timeout a null value is returned.
// this sends "AB\r\n"
var response = await transaction.transaction(p, Uint8List.fromList([65,66,13,10]), Duration(seconds: 1) );
print("The response was $response");
```
## Upgrading from pre-0.3.0
In version 0.3.0 a resource bug was fixed (issue #35) which required signature
changes.
### Transformer Class changes
The Transformer classes previously inherited directly from StreamTransformer, this class
however has no dispose method. So a new abstract class was added to include dispose and
called by Transaction.dispose().
```dart
abstract class DisposableStreamTransformer implements StreamTransformer {
void dispose();
}
```
Steps:
* Change parent class to DisposableStreamTransformer
* Implement dispose class, and make sure to dispose of your StreamController
### Transaction Class changes
The Transaction class previously did not have access to the transformer, only the stream.
The signature of Transaction constructor changed from
```dart
Transaction(Stream);
```
to
```dart
Transaction(Stream stream, DisposableStreamTransformer transformer);
```
If you are using the static factory methods you should not have to make any changes to your
code. Only if you created your own Transformer/Transactions.
## FAQ
### Always ask permission to use USB port
https://github.com/altera2015/usbserial/issues/49
https://github.com/altera2015/usbserial/issues/38
## Dependencies
This library depends on:
https://github.com/felHR85/UsbSerial