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)