aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/extras/display.py
Commit message (Collapse)AuthorAgeFilesLines
* display: Round temperature and position to nearest whole numberKevin O'Connor2018-03-191-5/+5
| | | | | | | The "%d" formatting truncates a floating point number - use "%.0f" to show a rounded number. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* display: Remove unneeded semicolons from fileKevin O'Connor2018-03-191-7/+8
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* display: Use separate hd44780 screen drawingKevin O'Connor2018-03-081-48/+151
| | | | | | | | Separate out the hd44780 screen drawing from the st7920 code. Use a layout that takes advantage of the 20 columns. Add custom hd44780 fonts. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* display: Choose arrow character based on displayMarcio Teixeira2018-03-061-1/+3
| | | | | | | Choose the arrow character based on whether the display is ST7920 or HD44780. Signed-off-by: Marcio Teixeira <marcio@alephobjects.com>
* display: Add initial support for LCD screens attached to an MCUKevin O'Connor2018-03-061-0/+496
Add support for displaying basic status information on ST7920 and HD44780 based LCDs that are attached directly to a micro-controller. Signed-off-by: Marcio Teixeira <marcio@alephobjects.com> Signed-off-by: Kevin O'Connor <kevin@koconnor.net>