alienrgb 0.1.0

A library for Alienware RGB Controller device communication
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use alienrgb::{Commands, Elc};

/*
 * Copyright (c) 2025 Matteo Franceschini
 * All rights reserved.
 *
 * Use of this source code is governed by BSD-3-Clause-Clear
 * license that can be found in the LICENSE file
 */
fn main() {
    let mut elc = Elc::new();
    let status = elc.execute(&Commands::EraseFlash);
    println!("{status:#?}");
}