Divoom

Rust Library for controlling divoom devices that support REST APIs, such as pixoo-64 (and from how divoom's api/doc organizes, maybe more in the future).

Documentation License: Apache 2.0

```rust use divoom::*;

// Output: Clock println!("{:?}", PixooClient::new("192.168.0.123").getcurrentchannel().await?); ```

How to use

The library contains 2 major parts:

Divoom service APIs

To discover all devices in your LAN, we can use the get_same_lan_devices API to get all devices from Divoom's backend service.

```rust use divoom::*;

let divoom = DivoomServiceClient::new(); let devices = divoom.getsamelandevices().await?; devices.iter().foreach(|x| println!("{:?}", x)); ```

This will output:

text DivoomDeviceInfo { device_name: "Pixoo", device_id: 300000001, device_private_ip: "192.168.0.123" }

Pixoo device APIs

Once we get the device ip, we can use it to create a pixoo client and start talking to it:

```rust use divoom::*;

let pixoo = PixooClient::new("192.168.0.123"); let result = pixoo.getcurrentchannel().await?; println!("{:?}", result); ```

This will output: text Clock

Currently, we have these APIs supported:

Image Animation

Devices like Pixoo-64 supports play GIF file from file or even Internet directly, all we need is to specify a URL as below:

```rust use divoom::*;

let pixoo = PixooClient::new("192.168.0.123"); pixoo.playgiffile(DivoomFileAnimationSourceType::Url, "").await?; ```

Text Animation

To create a text animation, we can use DivoomTextAnimation structure and send_text_animation API to help us:

```rust use divoom::*;

let pixoo = PixooClient::new("192.168.0.123"); let animation = DivoomTextAnimation::default(); animation.textstring = "Foo".tostring(); pixoo.sendtextanimation(animation).await?; ```

Command batching

In certain cases, we might want to run a lot of commands at the same time, such as initialize the settings. Pixoo devices supports batching all commands into a single request, but with only 1 single result being returned for indicating if everything succeeded or not.

Under development.

Debugging

The debug logs are logged at debug level. Once we set the log level to debug, we will be able to start see it:

rust env_logger::Builder::from_env(env_logger::Env::default().default_filter_or("debug")).init();

Or we can use RUST_LOG environment variable to change the level and enable the logs:

With the command tool (covered below soon), on windows:

```powershell

$env:RUST_LOG="debug"; .\divoom-cli.exe 192.168.0.123 channel get ```

And on linux:

bash RUST_LOG=debug .\divoom-cli.exe 192.168.0.123 channel get

Then we will see the output log like below:

text [2022-07-10T00:33:50Z DEBUG divoom::clients::common::divoom_rest_client] Sending request: Url = "http://192.168.0.123/post", Body = "{"Command":"Channel/GetIndex"}" [2022-07-10T00:33:50Z DEBUG reqwest::connect] starting new connection: http://192.168.0.123/ [2022-07-10T00:33:50Z DEBUG hyper::client::connect::http] connecting to 192.168.0.123:80 [2022-07-10T00:33:50Z DEBUG hyper::client::connect::http] connected to 192.168.0.123:80 [2022-07-10T00:33:50Z DEBUG hyper::proto::h1::io] flushed 107 bytes [2022-07-10T00:33:50Z DEBUG hyper::proto::h1::io] parsed 2 headers [2022-07-10T00:33:50Z DEBUG hyper::proto::h1::conn] incoming body is chunked encoding [2022-07-10T00:33:50Z DEBUG hyper::proto::h1::decode] incoming chunked header: 0x22 (34 bytes) [2022-07-10T00:33:50Z DEBUG reqwest::async_impl::client] response '200 OK' for http://192.168.0.123/post [2022-07-10T00:33:50Z DEBUG divoom::clients::common::divoom_rest_client] Response header received: StatusCode = 200 [2022-07-10T00:33:50Z DEBUG hyper::proto::h1::conn] incoming body completed [2022-07-10T00:33:50Z DEBUG hyper::client::pool] pooling idle connection for ("http", 192.168.0.123) [2022-07-10T00:33:50Z DEBUG divoom::clients::common::divoom_rest_client] Response received: Body = "{"error_code": 0, "SelectIndex":3}" CustomPage

To revert it back: ```powershell

$env:RUST_LOG="warn"; .\divoom-cli.exe 192.168.0.123 channel get CustomPage ```

Command line tool

In order to help quickly give the APIs a try, we have also developed a command line tool. It also serves as an example on how to uses these APIs.

This tool is currently under construction and doesn't have all API covered yet.

Device discovery

```bash

divoom-cli.exe discover 1 devices are found: - Id = 300000001, Name = Pixoo, IP = 192.168.0.123 ```

Devices APIs

```bash

Check current channel

.\divoom-cli.exe 192.168.0.123 channel get Clock

Check current clock

.\divoom-cli.exe 192.168.0.123 channel get-clock DivoomSelectedClockInfo { clock_id: 168, brightness: 67 }

Create a text animation

.\divoom-cli.exe 192.168.0.123 animation text set 1 "The gray fox jumped over the lazy dog" ```

Help

```bash

.\divoom-cli.exe divoom-cli 0.1.0 r12f https://github.com/r12f/divoom

USAGE: divoom-cli.exe [device-ip]

FLAGS: -h, --help Prints help information -V, --version Prints version information

ARGS: Device IP. Required when using device APIs, such as "channel get".

SUBCOMMANDS: animation Animation related APIs batch Batch related APIs channel Channel related APIs discover Discover divoom devices by calling into divoom service API help Prints this message or the help of the given subcommand(s) system System/device related APIs tool APIs to launch some tools ```

License

Apache-2.0: https://www.apache.org/licenses/LICENSE-2.0