diff --git a/application/thermal_print.py b/application/thermal_print.py index 5c5107b..98841af 100644 --- a/application/thermal_print.py +++ b/application/thermal_print.py @@ -100,10 +100,12 @@ class ThermalPrinter(): words = r.random_words(15, include_parts_of_speech=["nouns", "verbs", "adjectives"]) w = WordSearch(','.join(words), 32, 16) + self.p.text("Word Search: \n") for x in w.grid: self.p.set(align="center") self.p.text(''.join(x) + "\n") + self.p.text("\nWords: \n") wwords = textwrap.wrap(' '.join(words), 32) for word in wwords: self.p.set(align="left")