font8x14: Store font as strings instead of as bytearray
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
@@ -13,7 +13,7 @@ ST7920_CMD_DELAY = .000020
|
||||
ST7920_SYNC_DELAY = .000045
|
||||
|
||||
TextGlyphs = { 'right_arrow': '\x1a' }
|
||||
CharGlyphs = { 'degrees': font8x14.VGA_FONT[0xf8] }
|
||||
CharGlyphs = { 'degrees': bytearray(font8x14.VGA_FONT[0xf8]) }
|
||||
|
||||
class ST7920:
|
||||
def __init__(self, config):
|
||||
|
||||
Reference in New Issue
Block a user