Files
asusctl/rog-core/src/lib.rs
2020-06-02 11:37:41 +12:00

21 lines
453 B
Rust

#![deny(unused_must_use)]
///
mod animatrix_control;
/// Configuration loading, saving
mod config;
/// Start the daemon loop
pub mod daemon;
/// Laptop matching to determine capabilities
mod laptops;
///
mod led_control;
///
mod rog_dbus;
/// The core module which allows writing to LEDs or polling the
/// laptop keyboard attached devices
pub mod rogcore;
/// A virtual "consumer device" to help emit the correct key codes
mod virt_device;
mod error;