trellis/
lib.rs

1//! The trellis lib provides functionality to control the Adafruit Trellis
2//! from Rust. It allows to control the LEDs and read button press events.
3//! For details have a look at the Trellis struct in the core package.
4#![crate_name = "trellis"]
5#![crate_type = "lib"]
6
7pub mod core;
8pub mod devices;
9pub mod mock;