diff options
author | teeminus <32164856+teeminus@users.noreply.github.com> | 2021-03-02 00:23:06 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-01 18:23:06 -0500 |
commit | bc2096f543cd437591de7d038911c6c1139b5bd5 (patch) | |
tree | feed53c2d17342f409f5f344ab617c09e67bcb26 /klippy/extras/display/display.py | |
parent | 4d3d25b1f799e98e5c8a86b0a24e8507ecfb918e (diff) | |
download | kutter-bc2096f543cd437591de7d038911c6c1139b5bd5.tar.gz kutter-bc2096f543cd437591de7d038911c6c1139b5bd5.tar.xz kutter-bc2096f543cd437591de7d038911c6c1139b5bd5.zip |
st7920: Better support for emulated ST7920 displays (#3979)
Added new ST7920E display driver which is better suited for displays with emulated ST7920
Signed-off-by: Christian Kehe <teeminus@posteo.net>
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 |