sensehat-rs 0.1.2

A modern Rust library to control the Raspberry Pi Sense HAT LED matrix
Documentation
1
2
3
4
5
6
7
8
//! Library root for sensehat-rs.  
//! Re-exports LED matrix and joystick functionality.

pub mod led;
pub mod joystick;

pub use led::LedMatrix;
pub use joystick::{ Joystick, MovementMode, JoystickEvent };