Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/qu1x/tokio-i2c
I²C API for Tokio
https://github.com/qu1x/tokio-i2c
async futures i2c i2cdev rust tokio
Last synced: 12 days ago
JSON representation
I²C API for Tokio
- Host: GitHub
- URL: https://github.com/qu1x/tokio-i2c
- Owner: qu1x
- Created: 2018-11-19T21:27:44.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-11-25T17:13:00.000Z (almost 6 years ago)
- Last Synced: 2024-10-31T11:34:29.151Z (20 days ago)
- Topics: async, futures, i2c, i2cdev, rust, tokio
- Language: Rust
- Size: 10.7 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# tokio-i2c
**I²C API for Tokio**
[![Build Status][]](https://travis-ci.org/qu1x/tokio-i2c)
[![Downloads][]](https://crates.io/crates/tokio-i2c)
[![Version][]](https://crates.io/crates/tokio-i2c)
[![Documentation][]](https://docs.rs/tokio-i2c)
[![License][]](https://opensource.org/licenses/Fair)[Build Status]: https://travis-ci.org/qu1x/tokio-i2c.svg
[Downloads]: https://img.shields.io/crates/d/tokio-i2c.svg
[Version]: https://img.shields.io/crates/v/tokio-i2c.svg
[Documentation]: https://docs.rs/tokio-i2c/badge.svg
[License]: https://img.shields.io/crates/l/tokio-i2c.svg## Contents
* [Usage](#usage)
* [License](#license)
* [Contribution](#contribution)## Usage
This crate is [on crates.io](https://crates.io/crates/tokio-i2c) and can be
used by adding `tokio-i2c` to the dependencies in your project's `Cargo.toml`:```toml
[dependencies]
tokio-i2c = "0.1"
```and this to your crate root:
```rust
extern crate tokio_i2c;
```## License
Copyright (c) 2018 Rouven Spreckels
Usage of the works is permitted provided that
this instrument is retained with the works, so that
any entity that uses the works is notified of this instrument.DISCLAIMER: THE WORKS ARE WITHOUT WARRANTY.
## Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in the works by you shall be licensed as above, without any
additional terms or conditions.