Update auto-update.py for Bookworm

This commit is contained in:
Jeroen Oudshoorn
2024-01-05 15:53:52 +01:00
parent d721063073
commit f6a8407447
2 changed files with 8 additions and 4 deletions

View File

@ -16,7 +16,7 @@ from pwnagotchi.ui.components import *
from pwnagotchi.ui.state import State
from pwnagotchi.voice import Voice
WHITE = 0xff
WHITE = 0xFF
BLACK = 0x00
ROOT = None
@ -34,7 +34,10 @@ class View(object):
global WHITE
global BLACK
WHITE = 0x00
BLACK = 0xff
BLACK = 0xFF
WHITE = 0xFF
BLACK = 0x00
self._agent = None
self._render_cbs = []