ri-esp-display 0.1.1

no_std display drivers for ESP32: HD44780+PCF8574 I2C LCD and ILI9341 bit-bang SPI TFT
Documentation

ri-esp-display

Display primitives for ESP32/S3 firmware.

ri-esp-display architecture

What it provides

HD44780+PCF8574 I2C LCD and ILI9341 bit-bang SPI display pieces.

It is dependency-light and designed for embedded reuse.

Install

[dependencies]
ri-esp-display = "0.1"

Quick start

// See crate docs/tests for complete examples.

API shape

  • no_std by default
  • fixed-capacity data structures where strings/payloads are needed
  • explicit receipt/schema constants where the crate crosses firmware/host boundaries
  • small public API intended to be readable in firmware reviews

Verification

From the workspace root:

cargo test -p ri-esp-display
cargo +esp check -p ri-esp-display --target xtensa-esp32s3-none-elf -Z build-std=core,alloc

This crate is also covered by the workspace gate:

cargo test --workspace

Integration path

Use this crate as one boundary in the larger ESP32 physical-AI stack:

sensor reading -> deterministic policy -> local-language receipt -> proof receipt -> display/log/optional escalation

Claim boundary

This crate is a reusable building block. It does not certify physical wiring, safety-critical behavior, production deployment, or model quality outside tests/receipts stated in the repository.

License

MIT OR Apache-2.0