JohnDoneth / hd44780-driver

Implementation of the embedded-hal traits for the HD44780.
MIT License
37 stars 40 forks source link

Reading from the LCD #58

Open ColinTimBarndt opened 16 hours ago

ColinTimBarndt commented 16 hours ago

I'm working on the implementations for reading data from the display. For now, I've only implemented it for blocking I2C. To do this, I split DataBus into two traits for reading and writing because depending on the pin configuration, reading may not be possible (and is not required for basic operation).

Notable Changes

ColinTimBarndt commented 2 hours ago

This PR is ready for review. Should we support reading back character data from the display? I don't really see a reason for doing so, but it would be trivial to implement