15 lines
220 B
Rust
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,
|
|
}
|