Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for embedded-hal 1.0.0 and async #5

Closed
wants to merge 9 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixed example to use the new crate name
bbustin committed Sep 29, 2024
commit edb7013821cf839e41a77f0d6ad0119b41f5fd75
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "sht4x-ng"
description = "Sensirion SHT4x Driver for Embedded HAL 1.0 with optional async support"
version = "0.2.1"
version = "0.2.2"
edition = "2021"

authors = [
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -42,7 +42,7 @@ tested with the SHT40-AD1B so far.

```rust ignore
use embedded_hal::delay::DelayNs;
use sht4x::Sht4x;
use sht4x_ng::Sht4x;
// Device-specific use declarations.

let mut delay = // Device-specific initialization of delay.