corsairctl/src/lib.rs
nevaforget c5f8625345 feat: initiale Implementierung von corsairctl
Rust CLI-Tool für Corsair Bragi-Geräte (HS80 RGB Wireless, etc.).
Implementiert Protokoll-Kern, HID-Kommunikation, BragiDevice mit
RAII-Lifecycle, CLI-Subcommands (battery, sidetone, led, info, json,
udev), ALSA-Sidetone-Steuerung und Waybar-JSON-Output.

24 Unit-Tests für Packet-Bau, Response-Parsing und Property-Enums.
2026-03-27 17:34:37 +01:00

9 lines
227 B
Rust

// ABOUTME: Library-Crate für corsairctl — ermöglicht Zugriff aus Integration-Tests.
// ABOUTME: Re-exportiert alle Module für externe Nutzung.
pub mod bragi;
pub mod error;
pub mod hid;
pub mod output;
pub mod sidetone;