3 releases

0.1.2 May 14, 2022
0.1.1 Jan 19, 2022
0.1.0 Jan 6, 2022

#21 in #rgb-led

Download history 9/week @ 2024-11-20 16/week @ 2024-11-27 33/week @ 2024-12-04 69/week @ 2024-12-11 23/week @ 2024-12-18 24/week @ 2025-01-01 32/week @ 2025-01-08 66/week @ 2025-01-15 37/week @ 2025-01-22 32/week @ 2025-01-29 53/week @ 2025-02-05 46/week @ 2025-02-12 24/week @ 2025-02-19 57/week @ 2025-02-26 19/week @ 2025-03-05

146 downloads per month
Used in 2 crates

GPL-2.0 license

96KB
2K SLoC

openrgb-rs crates.io tests

Rust client library for OpenRGB SDK.

See documentation and examples.


lib.rs:

Client library for OpenRGB SDK server.

This client is async and requires a tokio runtime to run.

Example

use openrgb::OpenRGB;
use std::error::Error;

#[tokio::main]
async fn main() -> Result<(), Box<dyn Error>> {

    // connect to default server at localhost
    let client = OpenRGB::connect().await?;

    Ok(())
}

See examples, and [OpenRGB] for client API.

Dependencies

~3–12MB
~120K SLoC