*: cargo fmt

This commit is contained in:
Serge Bazanski 2026-01-23 21:28:46 +01:00
parent 9948a76602
commit fe8942575a
7 changed files with 156 additions and 151 deletions

View file

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