display: Add support for AIP31068 based displays (#6639)
display: Add support for `AIP31068` based displays
This commit is contained in:
committed by
GitHub
parent
9ce631e8d1
commit
aecb29d2b0
@@ -6,7 +6,7 @@
|
||||
#
|
||||
# This file may be distributed under the terms of the GNU GPLv3 license.
|
||||
import logging, os, ast
|
||||
from . import hd44780, hd44780_spi, st7920, uc1701, menu
|
||||
from . import aip31068_spi, hd44780, hd44780_spi, st7920, uc1701, menu
|
||||
|
||||
# Normal time between each screen redraw
|
||||
REDRAW_TIME = 0.500
|
||||
@@ -17,7 +17,8 @@ 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
|
||||
'hd44780_spi': hd44780_spi.hd44780_spi,
|
||||
'aip31068_spi':aip31068_spi.aip31068_spi
|
||||
}
|
||||
|
||||
# Storage of [display_template my_template] config sections
|
||||
|
||||
Reference in New Issue
Block a user