wasi-embedded-hal

Crates.iowasi-embedded-hal
lib.rswasi-embedded-hal
version0.2.1
sourcesrc
created_at2024-03-16 22:10:50.972026
updated_at2024-06-11 19:15:39.77087
descriptionImplementation of the `embedded-hal` traits for Wasm components
homepage
repositoryhttps://github.com/Zelzahn/wasi-embedded-hal
max_upload_size
id1176020
size22,992
Merlijn Sebrechts (merlijn-sebrechts)

documentation

README

wasi-embedded-hal

Implementation of the embedded-hal traits for Webassembly components

Status

Currently only support for I2C and Delay is provided, but more is planned.

Note that only embedded-hal version 1.O is supported.

Usage

Simply use this crate and then add add_i2c_hal!(i2c) in your file. Where i2c is the module from bindings.rs generated by cargo-component.

Why the need for this crate

The generated bindings and the embedded-hal API differ slightly, e.g. &[...] vs. Vec<...>. This crate defines methods that follow the embedded-hal API, and that underneath call those from the generated bindings. Effectively allowing one to very easily use crates that adhere to embedded-hal inside Wasm.

Minimum Supported Rust Version (MSRV)

This crate is guaranteed to compile on stable Rust 1.76.0 and up. It might compile with older versions but that may change in any new patch release.

Commit count: 7

cargo fmt