diff --git a/pythoncode/pictures.py b/pythoncode/pictures.py index 82e3512..8ed10a8 100644 --- a/pythoncode/pictures.py +++ b/pythoncode/pictures.py @@ -1,3 +1,5 @@ -dsplay.show(IMAGE.HAPPY) -display.show(IMAGE,SAD) -display.show(IMAGE.SILY) +from microbit import* +while True: + display.show(Image.HAPPY) + display.show(Image.SAD) + display.show(Image.SILLY)