Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 636 Bytes

README.md

File metadata and controls

21 lines (16 loc) · 636 Bytes

razer-chroma-rs docs

The razer_chroma crate provides Razer Chroma SDK functionality in a safe and simple API.

You can initialize the SDK like so:

let sdk = match razer_chroma::SDK::new() {
    Some(sdk) => sdk,
    None => { warn!("razer drivers not installed or supported"); return },
}

Once you have the SDK instance, you can create and activate effects like so:

let effect = sdk.create_keyboard_effect(razer_chroma::KeyboardEffect::Static{
    color: razer_chroma::Color::from_rgb(0, 0, 255),
})?;
sdk.set_effect(&effect)?;