3 releases

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

#20 in #rgb-led

Download history 19/week @ 2024-07-15 48/week @ 2024-07-22 23/week @ 2024-07-29 23/week @ 2024-08-05 30/week @ 2024-08-12 18/week @ 2024-08-19 58/week @ 2024-08-26 20/week @ 2024-09-02 15/week @ 2024-09-09 20/week @ 2024-09-16 41/week @ 2024-09-23 29/week @ 2024-09-30 14/week @ 2024-10-14 13/week @ 2024-10-21 24/week @ 2024-10-28

56 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–11MB
~117K SLoC