linux_spidev 0.2.1+5 copy "linux_spidev: ^0.2.1+5" to clipboard
linux_spidev: ^0.2.1+5 copied to clipboard

Dart package for accessing SPI on Linux using the spidev interface and dart:ffi.

example/lib/main.dart

import 'package:linux_spidev/linux_spidev.dart';

void main() {
  final spidev = Spidev.fromBusDevNrs(0, 0);

  final handle = spidev.open();

  print("mode: ${handle.mode}");
  print("bitsPerWord: ${handle.bitsPerWord}");
  print("maxSpeed: ${handle.maxSpeed}");

  handle.close();
}
0
likes
130
pub points
35%
popularity

Publisher

verified publisherardera.dev

Dart package for accessing SPI on Linux using the spidev interface and dart:ffi.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

_ardera_common_libc_bindings, ffi, meta, path, tuple

More

Packages that depend on linux_spidev