JohnDoneth / hd44780-driver

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

impl core::format::Write to allow writing formatted strings #49

Open gabevenberg opened 10 months ago

gabevenberg commented 10 months ago

Currently the api makes it hard to output dynamic data on platforms that do not have an allocator, (and thus no acess to the format!() macro). Allowing the use of the write!() and writeln!() macros on the lcd would go miles to making the api easier to use.