From 102db4db5963f3e9bb148c43a0a01d7d0c8e788f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=A0=95=EC=A4=80=EC=84=9D?= Date: Sat, 2 Dec 2017 18:37:12 +0900 Subject: [PATCH] Lettertest now shows JungJunseok --- effects.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/effects.py b/effects.py index c5d251e..a60ed25 100644 --- a/effects.py +++ b/effects.py @@ -338,7 +338,7 @@ def run(self): # Display upper and lower case letters. The break between 90 and 97 is # for non-letter keyboard characters. - for ord in range(65, 91) + range(97, 123): + for ord in list("JungJunseok"): self.wall.clear() # Set every pixel to the background color, since ascii8x8 will only @@ -348,7 +348,7 @@ def run(self): self.wall.set_pixel(x, y, background) # Color the letter. - ascii8x8.draw_chr(chr(ord), self.wall, foreground, background, + ascii8x8.draw_chr(ord, self.wall, foreground, background, x_offset, y_offset) self.wall.draw() time.sleep(.1)