This library has only been tested on an Arduino Nano (atmega328p). If you test it on other systems and find bugs please add issues to this project so that I can fix them.
This is a rust port of the LiquidCrystal library. LiquidCrystal is a standard C++ library that allows developers to control a HITACHI HD44780 LCD screen with one or two 16-character lines. Alternatives to this library (that I've investigated) are:
I decided to create a more comprehensive solution because existing libraries were either incomplete or somewhat complicated to use. This library uses traits from embedded-hal and should work with any hardware abstraction layer that uses the same types. Currently this crate has only been tested with avr-hal and all example code and comments assume you're using avr-hal as well.
You'll need to use nightly to compile this project- currently there is an issue (#124) in avr-hal that requires nightly-2021-01-07 or older.
``` use ag_lcd::{Display, Blink, Cursor, LcdDisplay};
let peripherals = arduinohal::Peripherals::take().unwrap(); let pins = arduinohal::pins!(peripherals); let delay = arduino_hal::Delay::new();
let rs = pins.d12.intooutput().downgrade(); let rw = pins.d11.intooutput().downgrade(); let en = pins.d10.intooutput().downgrade(); // let d0 = pins.d9.intooutput().downgrade(); // let d1 = pins.d8.intooutput().downgrade(); // let d2 = pins.d7.intooutput().downgrade(); // let d3 = pins.d6.intooutput().downgrade(); let d4 = pins.d5.intooutput().downgrade(); let d5 = pins.d4.intooutput().downgrade(); let d6 = pins.d3.intooutput().downgrade(); let d7 = pins.d2.into_output().downgrade();
let mut lcd: LcdDisplay<_,_> = LcdDisplay::new(rs, en, delay) // .withfullbus(d0, d1, d2, d3, d4, d5, d6, d7) .withhalfbus(d4, d5, d6, d7) .withdisplay(Display::On) .withblink(Blink::On) .withcursor(Cursor::On) .withrw(d10) // optional (set to GND if not provided) .build();
lcd.setcursor(Cursor::Off); lcd.setblink(Blink::Off);
lcd.print("Test message!"); ```