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 23/week @ 2024-10-29 18/week @ 2024-11-05 8/week @ 2024-11-19 17/week @ 2024-11-26 29/week @ 2024-12-03 66/week @ 2024-12-10 30/week @ 2024-12-17 1/week @ 2024-12-24 19/week @ 2024-12-31 36/week @ 2025-01-07 65/week @ 2025-01-14 39/week @ 2025-01-21 24/week @ 2025-01-28 61/week @ 2025-02-04 43/week @ 2025-02-11

176 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

~4–13MB
~144K SLoC