Remove char that the display driver doesn't like

This commit is contained in:
Stefan Bethke 2025-06-01 19:39:10 +02:00
commit 95d335db99
2 changed files with 2 additions and 2 deletions

View file

@ -40,7 +40,7 @@ class BubaCharset(BubaAnimation):
def run(self):
self.buba.simple_text(page=0, row=0, col=0, text=" !\"#$%&'()*+,-./0123456789:;<=>?")
self.buba.simple_text(page=0, row=1, col=0, text="@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_")
self.buba.simple_text(page=0, row=2, col=0, text="`abcdefghijklmnopqrstuvwxyz{|}~\u2302")
self.buba.simple_text(page=0, row=2, col=0, text="`abcdefghijklmnopqrstuvwxyz{|}~") # ignore until we fix the mapping \u2302
self.buba.simple_text(page=0, row=3, col=0, text="That's all, folks!")
sleep(10)

View file

@ -25,8 +25,8 @@ TEMPLATE_PATH.insert(0, config.templatepath)
websocket_clients = WebSocketClients()
buba = BubaCmd(config.serial, websocket_clients.send)
animator = BubaAnimator(buba)
animator.add(BubaTime)
animator.add(BubaCharset)
animator.add(BubaTime)
# bottle_helpers = BottleHelpers(auth, group=config.requires_group, allowed=config.allowed)
# update_poller = UpdatePoller(websocket_clients, ccujack, 1 if config.debug else 0.1)