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
use serde::{Deserialize, Serialize};

use super::color::Color;

#[derive(Debug, Serialize, Deserialize)]
pub struct Mood {
    pub brightness: Option<u8>,
    pub color: Option<Color>,
    pub kelvin: Option<u16>,
}