### ----------------------------------
### MINIMUM TECHNICAL REQUIREMENTS ###
### ----------------------------------
# 1) Choose a background image
stage.set_background_color("lightblue")
# 2) Choose a sprite.
sprite = codesters.Sprite("present6")
# 3) Add at least 3 actions or say commands
# to give your program a story
sprite.say("click me to open")
sprite.move_up(15)
sprite.move_down(15)
stage.wait(.1)
sprite.move_up(15)
sprite.move_down(15)
stage.wait(.1)
sprite.move_up(15)
sprite.move_down(15)
stage.wait(.1)
sprite.move_up(15)
sprite.move_down(15)
# 4) Add a click event with actions and
# say commands inside the click event.
sprite.say("click me to open")
def click(sprite):
sprite.hide()
sprite = codesters.Sprite("person10")
stage.set_background_color("pink")
sprite.say("Surpise! Happy Birthday!")
# add other actions...
sprite.event_click(click)
Try the following steps to connect to your Micro:bit:
1. You may need to reload this page and try your program again.
2. Try disconnecting and reconnecting your Micro:bit. Then reload the page and run your program again.
3. If you are still having problems your Micro:bit may have an old
firmware version that is incompatible with Codesters.
To update the firmware follow these instructions from Micro:bit
Are you already running a Codesters project in another tab or window?
Micro:bit can only connect to one web page at a time.
Try stopping other Codesters projects or closing
other tabs or windows that may be using your Micro:bit.
If that doesn't fix the problem try disconnecting your Micro:bit,
reloading this page, and reconnecting your Micro:bit.