//! A LED with all properties to send data to an actual lamp.
usesuper::color_channels::ColorChannels;useserde::{Deserialize, Serialize};#[derive(Debug, Serialize, Deserialize, PartialEq, Eq, Hash, Clone)]pubstructLed{pubuniverse:u16,
/// Nth LED in the universe (Address is `num * 3`).
pubnum:usize,
pubcolor_channels: ColorChannels,
}