awtrix3 0.0.2

Awtrix3 types and API (mqtt/http), from https://blueforcer.github.io/awtrix3/#/api
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Power
//!
//!

use serde::{Deserialize, Serialize};

#[derive(Debug, Serialize, Deserialize)]
pub struct Power {
    pub power: bool,
}

#[derive(Debug, Serialize, Deserialize)]
pub struct Sleep {
    pub sleep: u32,
}