A Rust library for the Raspberry Pi Sense HAT LED Screen
The Raspberry Pi Sense HAT has an 8×8 RGB LED matrix that provides its own driver for the Linux framebuffer.
This library provides a thread-safe implementation for using the LED matrix by writing directly to the framebuffer.
Usage
Add this to your Cargo.toml:
[dependencies]
sensehat-screen = "0.1"
Then you can use it with your crate:
extern crate sensehat-screen
use ;
Examples
Features
default
By default, the fonts feature is included.
fonts
A collection of legacy 8x8 fonts, renderable on the LED matrix.
serde-support
Enables support for serialization/deserialization with serde.
Feature Wish List
-
fonts- A collection of legacy 8x8 fonts, renderable on the LED matrix. -
serde-support- Enables support for serialization/deserialization withserde. -
images- Load 8x8 images to the LED matrix withimage. -
cgmath- Computer-graphics utilities for manipulating the matrix mathematically.