lcd_display 0.1.0

A Rust library for controlling character LCD displays (HD44780 compatible) via GPIO pins on Linux systems
Documentation
1
2
3
4
5
6
7
8
9
/*
    lib.rs file!
*/

pub mod gpio_pin;
pub mod lcd;

pub use gpio_pin::GPIO_Pin;
pub use lcd::LCD;