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 23/week @ 2024-03-12 25/week @ 2024-03-19 41/week @ 2024-03-26 87/week @ 2024-04-02 22/week @ 2024-04-09 23/week @ 2024-04-16 22/week @ 2024-04-23 23/week @ 2024-04-30 22/week @ 2024-05-07 25/week @ 2024-05-14 32/week @ 2024-05-21 23/week @ 2024-05-28 23/week @ 2024-06-04 20/week @ 2024-06-11 26/week @ 2024-06-18 18/week @ 2024-06-25

90 downloads per month
Used in dmxvis

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–15MB
~150K SLoC