adds initial motor bravo implementation

This commit is contained in:
2026-08-19 19:24:28 -07:00
parent 47b1323af1
commit d9728b8680
25 changed files with 1081 additions and 123 deletions
+1
View File
@@ -5,6 +5,7 @@ use std::fmt::Debug;
pub mod set_pin;
pub mod set_rcs;
pub mod valid_priority_command;
pub mod set_pwm;
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct CommandHeader<'a> {
+9
View File
@@ -0,0 +1,9 @@
use crate::command::Command;
use serde::{Deserialize, Serialize};
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct SetPwm {
pub duty_cycle: u8
}
impl Command for SetPwm {}