From 6d9cba060a038ad0da4cd9e9304ce3a5e45684e1 Mon Sep 17 00:00:00 2001 From: nasopida Date: Sat, 2 Dec 2017 18:58:28 +0900 Subject: [PATCH] 60162158 leeyounho update initial --- effects.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/effects.py b/effects.py index c5d251e..b2417e5 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 (76,89,72): self.wall.clear() # Set every pixel to the background color, since ascii8x8 will only @@ -351,7 +351,7 @@ def run(self): ascii8x8.draw_chr(chr(ord), self.wall, foreground, background, x_offset, y_offset) self.wall.draw() - time.sleep(.1) + time.sleep(1) class Bouncer(Effect): class Ball(object):