diff --git a/ascii8x8.pyc b/ascii8x8.pyc new file mode 100644 index 0000000..e24e7dc Binary files /dev/null and b/ascii8x8.pyc differ diff --git a/effects.py b/effects.py index c5d251e..ac76f5c 100644 --- a/effects.py +++ b/effects.py @@ -338,7 +338,10 @@ 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): + + # myName display. myName=HYLee + myName=[72,89,76,101,101] + for ord in myName: self.wall.clear() # Set every pixel to the background color, since ascii8x8 will only @@ -351,7 +354,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(.5) class Bouncer(Effect): class Ball(object): diff --git a/effects.pyc b/effects.pyc new file mode 100644 index 0000000..9f7e902 Binary files /dev/null and b/effects.pyc differ diff --git a/wall.pyc b/wall.pyc new file mode 100644 index 0000000..ef68c79 Binary files /dev/null and b/wall.pyc differ