diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2019-12-18 12:23:09 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2019-12-18 12:30:20 -0500 |
commit | 0a86190bae46a22a493f447075ab7713fd6ae9ed (patch) | |
tree | 07457fbf365ac45598f0127c6e17c46ba68009d0 /klippy/extras/display/display.py | |
parent | 7532e4ccea6f89e31d0d2f7f2f7e8ddac64abd46 (diff) | |
download | kutter-0a86190bae46a22a493f447075ab7713fd6ae9ed.tar.gz kutter-0a86190bae46a22a493f447075ab7713fd6ae9ed.tar.xz kutter-0a86190bae46a22a493f447075ab7713fd6ae9ed.zip |
display: Revert "display: Add ST7567 display support (#1540)"
This reverts commit 1b92af60784ea811a7ca04dfbce75224874cf84a.
The standard "uc1701" lcd_type can now be used in place of the custom
"st7567" lcd_type.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/extras/display/display.py')
-rw-r--r-- | klippy/extras/display/display.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/klippy/extras/display/display.py b/klippy/extras/display/display.py index 908c89ab..c1a02725 100644 --- a/klippy/extras/display/display.py +++ b/klippy/extras/display/display.py @@ -11,8 +11,7 @@ import menu LCD_chips = { 'st7920': st7920.ST7920, 'hd44780': hd44780.HD44780, - 'uc1701': uc1701.UC1701, 'ssd1306': uc1701.SSD1306, - 'st7567': uc1701.ST7567, 'sh1106': uc1701.SH1106, + 'uc1701': uc1701.UC1701, 'ssd1306': uc1701.SSD1306, 'sh1106': uc1701.SH1106, } M73_TIMEOUT = 5. |