ssd1325

Crates.iossd1325
lib.rsssd1325
version0.1.0
sourcesrc
created_at2017-04-19 04:53:19.869579
updated_at2017-04-19 04:53:19.869579
descriptionAdafruit 2.7in Monochrome 128x64 OLED Driver
homepagehttps://github.com/martinmroz/ssd1325.git
repositoryhttps://github.com/martinmroz/ssd1325.git
max_upload_size
id11148
size28,800
Martin Mroz (martinmroz)

documentation

http://martinmroz.github.io/ssd1325

README

Adafruit 2.7" Monochrome 128x64 OLED Driver

Build Status Coverage Status

This is a platform-agnostic driver for the Solomon Systech SSD1325 OLED display driver IC in monochrome mode. This chip is used in the Adafruit 2.7" Monochrome 128x64 OLED Display Module. This library is transport-agnostic, in that it has no intrinsic dependencies. Supply an io::Write compatible object for transferring data, such as from rust-spidev. Then, implement a ssd1325::ControlChannel using, for instance, rust-sysfs-gpio for controlling side-band pins (D/NC and nRST). Finally, wire up your display and you should be all set.

Compatibility

Tested with the aforementioned module only. This should work with any SSD1325 display, however the initialization sequence may not be sufficient. Please submit an issue if you run into issues and I'll attempt to make the interface more generic to support your use case.

Usage

Add the following to your Cargo.toml:

[dependencies]
ssd1325 = "0.1"

In addition, and this to your crate root:

extern crate ssd1325;

License

Released under the MIT license. See LICENSE for full details.

Commit count: 22

cargo fmt