pub trait EspWifiTimerSource: Sealed {
// Required method
fn timer(self) -> PeriodicTimer<'static, AnyTimer>;
}
Expand description
A trait to allow better UX for initializing esp-wifi.
This trait is meant to be used only for the init
function.
Calling timers()
multiple times may panic.