diff options
author | le-Bark <43352109+le-Bark@users.noreply.github.com> | 2021-04-07 21:07:23 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-07 21:07:23 -0400 |
commit | 317402d5ba28fd5c57e8426a5f2661c811654f30 (patch) | |
tree | c2cb21cb2519c10214397fccef576e69dd5ba094 /klippy/extras/display/display.py | |
parent | 165d2fc2281798452c3f192b58fd2712e84bf1dd (diff) | |
download | kutter-317402d5ba28fd5c57e8426a5f2661c811654f30.tar.gz kutter-317402d5ba28fd5c57e8426a5f2661c811654f30.tar.xz kutter-317402d5ba28fd5c57e8426a5f2661c811654f30.zip |
hd44780_spi: added lcd support to the mightyboard (#4121)
Signed-off-by: Marc-André Denis <marcadenis@msn.com>
Diffstat (limited to 'klippy/extras/display/display.py')
-rw-r--r-- | klippy/extras/display/display.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/klippy/extras/display/display.py b/klippy/extras/display/display.py index e43d3307..b416d9d2 100644 --- a/klippy/extras/display/display.py +++ b/klippy/extras/display/display.py @@ -6,7 +6,7 @@ # # This file may be distributed under the terms of the GNU GPLv3 license. import logging, os, ast -from . import hd44780, st7920, uc1701, menu +from . import hd44780, hd44780_spi, st7920, uc1701, menu # Normal time between each screen redraw REDRAW_TIME = 0.500 @@ -17,6 +17,7 @@ LCD_chips = { 'st7920': st7920.ST7920, 'emulated_st7920': st7920.EmulatedST7920, 'hd44780': hd44780.HD44780, 'uc1701': uc1701.UC1701, 'ssd1306': uc1701.SSD1306, 'sh1106': uc1701.SH1106, + 'hd44780_spi': hd44780_spi.hd44780_spi } # Storage of [display_template my_template] config sections |