pcd8544-hal 0.1.0

A hardware abstraction layer for PCD8544 LCD controllers (mainly used in Nokia 5510 displays)
Documentation
  • Coverage
  • 0%
    0 out of 12 items documented0 out of 9 items with examples
  • Size
  • Source code size: 24.79 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.46 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 11s Average build duration of successful builds.
  • all releases: 11s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • n-eq/pcd8544-rs
    1 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • n-eq

PC8544

This Rust library provides embedded-hal support for PCD8544-based LCD displays, commonly used in Nokia 5110 and similar devices.
It is based on the work by Hannu Hartikainen.

Features

  • 100% safe
  • SPI support
  • GPIO support
  • ASCII characters
  • Bitmap drawing
  • Vertical scrolling (up/down)
  • Special characters support (line feed, carriage return)
  • Custom font configuration

Model support

Any microcontroller HAL with embedded-hal support should work with this driver.

Usage

Add this line to your Cargo.toml's [dependencies] section:

[dependencies]
pcd8544 = "0.1.0"

An example of using the library with an Arduino Uno is provided under examples/arduino-uno-pcd8544.