pub trait Modulation: ModulationProperty + Debug {
// Required method
fn calc(self) -> Result<Vec<u8>, AUTDDriverError>;
}Expand description
Trait for applying amplitude modulation.
See also Modulation derive macro.
pub trait Modulation: ModulationProperty + Debug {
// Required method
fn calc(self) -> Result<Vec<u8>, AUTDDriverError>;
}Trait for applying amplitude modulation.
See also Modulation derive macro.