st7567s 0.2.0

Driver for the ST7567S LCD controller
Documentation

ST7567S Display Controller Driver

Crates.io Docs.rs

This crate provides a driver for the ST7567S display controller that can be used with Rust embedded projects.

Features

  • Supports I2C and SPI communication protocols via the display_interface crate.
  • Provides two display modes:
    • Internal Buffer Mode: This mode allows you to modify an internal buffer by using methods like set_pixel, clear, or by using the embedded-graphics crate. Once you have made your changes, you can call the flush method to write the buffer to the display.
    • Direct Write Mode: This mode allows you to write directly to the display memory by calling the draw method.

Note: This driver is designed to work with a more generic 128x64 resolution, instead of the original 132x65 resolution of the ST7567S controller.
Note: SPI communication is not tested yet.

Thanks ssd1306 driver for served as an example.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.