Skip to main content

kdeconnect_embassy/
lib.rs

1//! A crate providing an IO implementation for embedded devices using `embassy`.
2//!
3//! If you use this crate, you likely want to use the `embedded` feature of `kdeconnect-proto` as
4//! well, while deactivating the default features of it.
5#![no_std]
6
7extern crate alloc;
8
9pub mod io_impl;
10mod slot_list;
11
12pub use io_impl::EmbassyIoImpl;