-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add readme and some basic documentation
- Loading branch information
Showing
4 changed files
with
43 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# `embedded-hal` traits implementation by bit banging | ||
|
||
[![crates.io](https://img.shields.io/crates/v/bitbang-hal.svg)](https://crates.io/crates/bitbang-hal) | ||
[![Docs](https://docs.rs/bitbang-hal/badge.svg)](https://docs.rs/bitbang-hal) | ||
|
||
This is a [bit banging] implementation of the [`embedded-hal`] traits. | ||
|
||
[bit banging]: https://en.wikipedia.org/wiki/Bit_banging | ||
[`embedded-hal`]: https://github.com/rust-embedded/embedded-hal | ||
|
||
## Usage | ||
|
||
See example programs in the `examples` folder. | ||
|
||
## Support | ||
|
||
For questions, issues, feature requests, and other changes, please file an | ||
issue in the github project. | ||
|
||
## License | ||
|
||
Licensed under MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT) | ||
|
||
### Contributing | ||
|
||
Unless you explicitly state otherwise, any contribution intentionally submitted | ||
for inclusion in the work by you shall be licensed as above, without any | ||
additional terms or conditions. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,14 @@ | ||
//! This is a [bit banging] implementation of the [`embedded-hal`] traits. | ||
//! | ||
//! [bit banging]: https://en.wikipedia.org/wiki/Bit_banging | ||
//! [`embedded-hal`]: https://github.com/rust-embedded/embedded-hal | ||
//! | ||
//! ## Usage examples | ||
//! | ||
//! See usage examples in the examples folder in the crate sources | ||
#![no_std] | ||
|
||
pub mod i2c; | ||
pub mod spi; | ||
pub mod serial; | ||
pub mod spi; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters