maasier/spinnyboy_rust/src/bin/peripherals/mod.rs
2026-01-23 21:28:46 +01:00

15 lines
220 B
Rust

pub mod nextion;
#[derive(Debug)]
pub enum Command {
SetRpm(u32),
SetTimer(u32),
Start,
Stop,
SendConfig,
CommandSuccess,
}
#[derive(Debug)]
pub enum ErrCommand {
NoValidCmd,
ReadError,
}