1//! Adapters between embedded-hal traits.
2
3mod blocking_async;
4mod yielding_async;
5
6pub use blocking_async::BlockingAsync;
7pub use yielding_async::YieldingAsync;
8