Write title to correct position

This commit is contained in:
Stefan Bethke 2025-06-07 17:59:42 +02:00
commit 1ba7faed1b

View file

@ -10,7 +10,7 @@ class BubaTime(BubaAnimation):
super().__init__(buba) super().__init__(buba)
def run(self): def run(self):
self.buba.simple_text(page=0, row=0, col=91, text="Bus-Bahn-Anzeige") self.buba.text(page=0, row=0, col_start=0, col_end=92, text="Bus-Bahn-Anzeige")
self.buba.simple_text(page=0, row=1, col=0, text="Chaos Computer Club") self.buba.simple_text(page=0, row=1, col=0, text="Chaos Computer Club")
self.buba.simple_text(page=0, row=2, col=0, text="Hansestadt Hamburg") self.buba.simple_text(page=0, row=2, col=0, text="Hansestadt Hamburg")
self.buba.simple_text(page=0, row=3, col=0, text="Hello, world!") self.buba.simple_text(page=0, row=3, col=0, text="Hello, world!")