diff options
Diffstat (limited to 'klippy/extras/display/display.py')
-rw-r--r-- | klippy/extras/display/display.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/klippy/extras/display/display.py b/klippy/extras/display/display.py index bd34f4c5..e43d3307 100644 --- a/klippy/extras/display/display.py +++ b/klippy/extras/display/display.py @@ -14,8 +14,9 @@ REDRAW_TIME = 0.500 REDRAW_MIN_TIME = 0.100 LCD_chips = { - 'st7920': st7920.ST7920, 'hd44780': hd44780.HD44780, - 'uc1701': uc1701.UC1701, 'ssd1306': uc1701.SSD1306, 'sh1106': uc1701.SH1106, + 'st7920': st7920.ST7920, 'emulated_st7920': st7920.EmulatedST7920, + 'hd44780': hd44780.HD44780, 'uc1701': uc1701.UC1701, + 'ssd1306': uc1701.SSD1306, 'sh1106': uc1701.SH1106, } # Storage of [display_template my_template] config sections |