diff options
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 |