pub trait ToggleableOutputSwitch {
type Error;
// Required method
fn toggle(&mut self) -> Result<(), Self::Error>;
}
Expand description
Toggles the switch from it’s current state to it’s opposite state.
§Notes
This is only available if the underlying hal has implemented ToggleableOutputPin