can_usb 0.1.0
can_usb: ^0.1.0 copied to clipboard
A Flutter package for communicating with a USB-CANFD adapter over serial. Provides a serial transport layer, binary frame builder/parser, and a high-level CanusbDevice API for sending and receiving CAN frames.
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add can_usbWith Flutter:
$ flutter pub add can_usbThis will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get):
dependencies:
can_usb: ^0.1.0Alternatively, your editor might support dart pub get or flutter pub get. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:can_usb/can_usb.dart';