jetsongpio 0.1.3

A Rust library for controlling GPIO pins on NVIDIA Jetson devices
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! # jetsongpio
//!
//! A Rust library that enables the use of Jetson's GPIOs.
//!
//! This is the Rust implementation of the Python library for controlling GPIO pins on NVIDIA Jetson devices.
//!
pub mod gpio;

// #[cfg(all(target_arch = "aarch64", target_os = "linux"))]
pub mod gpio_cdev;

pub mod gpio_pin_data;

pub use gpio::{Direction, GPIO, Level};
pub use gpio_pin_data::*;