Crate lcd1602_driver

source ·
Expand description

§LCD 1602 Driver

Basic Usage:

  1. Initialize a “sender”
    This crate include 2 drvier:

    You can choose either of it, or you can use any driver implemented sender::SendCommand.

  2. Use lcd::Lcd::new() to create a lcd::Lcd, and initialize LCD1602 hardware

  3. use any methods provide by lcd::Lcd to control LCD1602

Modules§

  • Command to control LCD
  • Lcd is the main driver for LCD1602
  • Built-in sender
    If you want to create a new sender, you will need to implement SendCommand trait
  • Common tools