mirror of
https://gitlab.com/asus-linux/asusctl.git
synced 2026-02-06 00:15:04 +01:00
18 lines
467 B
Rust
18 lines
467 B
Rust
/// The main data conversion for transfering in shortform over dbus or other,
|
|
/// or writing directly to the USB device
|
|
mod anime_data;
|
|
pub use anime_data::*;
|
|
|
|
/// Useful for specialised effects that required a grid of data
|
|
mod anime_grid;
|
|
pub use anime_grid::*;
|
|
|
|
/// Transform a PNG image for displaying on AniMe matrix display
|
|
mod anime_image;
|
|
pub use anime_image::*;
|
|
|
|
mod anime_diagonal;
|
|
pub use anime_diagonal::*;
|
|
|
|
/// Base errors that are possible
|
|
pub mod error; |