mirror of
https://gitlab.com/asus-linux/asusctl.git
synced 2026-02-06 00:15:04 +01:00
- Add extra config options and dbus methods - Add power state signals for anime and led - Refactor to use channels for dbus signal handler send/recv - Split out profiles independant parts to a rog-profiles crate - Cleanup dependencies - Fix some dbus Supported issues
19 lines
346 B
Rust
19 lines
346 B
Rust
/// A container of images/grids/gifs/pauses which can be iterated over to generate
|
|
/// cool effects
|
|
mod sequencer;
|
|
pub use sequencer::*;
|
|
|
|
mod builtin_modes;
|
|
pub use builtin_modes::*;
|
|
|
|
mod per_key_rgb;
|
|
pub use per_key_rgb::*;
|
|
|
|
pub mod usb;
|
|
|
|
pub mod error;
|
|
|
|
pub const LED_MSG_LEN: usize = 17;
|
|
|
|
pub static VERSION: &str = env!("CARGO_PKG_VERSION");
|