Remove char that the display driver doesn't like
All checks were successful
docker-image / docker (push) Successful in 9m41s
All checks were successful
docker-image / docker (push) Successful in 9m41s
This commit is contained in:
parent
6d14fa0fe8
commit
08b4842a1b
2 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue