kdeconnect-embassy 0.1.1

An implementation of the IO abstraction required to run kdeconnect-proto on embedded devices using embassy
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! A crate providing an IO implementation for embedded devices using `embassy`.
//!
//! If you use this crate, you likely want to use the `embedded` feature of `kdeconnect-proto` as
//! well, while deactivating the default features of it.
#![no_std]

extern crate alloc;

pub mod io_impl;
mod slot_list;

pub use io_impl::EmbassyIoImpl;