From 95d335db99c64fe0ef9813d840d40f552b2bed80 Mon Sep 17 00:00:00 2001 From: Stefan Bethke Date: Sun, 1 Jun 2025 19:39:10 +0200 Subject: [PATCH] Remove char that the display driver doesn't like --- buba/BubaAnimator.py | 2 +- buba/__main__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/buba/BubaAnimator.py b/buba/BubaAnimator.py index 35d87f5..c19edd3 100644 --- a/buba/BubaAnimator.py +++ b/buba/BubaAnimator.py @@ -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) diff --git a/buba/__main__.py b/buba/__main__.py index 7ba16d8..86ea6de 100644 --- a/buba/__main__.py +++ b/buba/__main__.py @@ -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)