mirror of
https://github.com/Feliix42/ssd1675.git
synced 2024-11-23 11:16:30 +00:00
Initial commit
This commit is contained in:
commit
cea8858596
4 changed files with 44 additions and 0 deletions
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
/target
|
||||||
|
**/*.rs.bk
|
||||||
|
Cargo.lock
|
6
Cargo.toml
Normal file
6
Cargo.toml
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
[package]
|
||||||
|
name = "ssd1675"
|
||||||
|
version = "0.1.0"
|
||||||
|
authors = ["Wesley Moore <wes@wezm.net>"]
|
||||||
|
|
||||||
|
[dependencies]
|
28
README.md
Normal file
28
README.md
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
# SSD1675 EPD dislpay driver
|
||||||
|
|
||||||
|
[Insert picture of Inky pHAT here]
|
||||||
|
|
||||||
|
Rust driver for the [Solomon Systech SSD1675][SSD1675] e-Paper display (EPD)
|
||||||
|
controller, for use with [embedded-hal].
|
||||||
|
|
||||||
|
## Description
|
||||||
|
|
||||||
|
This driver is intended to work on embedded platforms using the `embedded-hal`
|
||||||
|
trait library. It is `no_std`, contains no added `unsafe`, and does not require
|
||||||
|
an allocator. It supports the 4-wire SPI interface.
|
||||||
|
|
||||||
|
## Tested Devices
|
||||||
|
|
||||||
|
The library has been tested and confirmed working on these devices:
|
||||||
|
|
||||||
|
* Red/Black/White [Inky pHAT] version 2 on Raspberry Pi Zero
|
||||||
|
|
||||||
|
## Credits
|
||||||
|
|
||||||
|
* [SSD1306 OLED display driver](https://github.com/jamwaffles/ssd1306)
|
||||||
|
* [SSD1322 OLED display driver](https://github.com/edarc/ssd1322)
|
||||||
|
* [Pimoroni Python library for the Inky pHAT and Inky wHAT e-paper displays](https://github.com/pimoroni/inky)
|
||||||
|
|
||||||
|
[SSD1675]: http://www.solomon-systech.com/en/product/advanced-display/bistable-display-driver-ic/SSD1675/
|
||||||
|
[embedded-hal]: https://crates.io/crates/embedded-hal
|
||||||
|
[Inky pHat]: https://shop.pimoroni.com/products/inky-phat
|
7
src/lib.rs
Normal file
7
src/lib.rs
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
#[cfg(test)]
|
||||||
|
mod tests {
|
||||||
|
#[test]
|
||||||
|
fn it_works() {
|
||||||
|
assert_eq!(2 + 2, 4);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue