-
Notifications
You must be signed in to change notification settings - Fork 31
Closed
Description
I experience random freezes of a program on the micro:bit V2 with beta 5. I wasn't able to reproduce this with beta 4.
Actually I started observing those freezes after flashing a program earlier this week with the online python editor. I didn't have any problems with approximately the same program flashed using the same editor a few weeks earlier. I'm not sure which micropython is used by that editor but it seems related.
With the following minimized program the issue can be reproduced:
from microbit import *
import time
import music
music.pitch(220, 100)
blink_on = False
while True:
display.show(Image.HEART if blink_on else Image())
blink_on = not blink_on
time.sleep(0.1)
It may require some time or a few attempts (resets) to reproduce but should be possible within about 30 minutes.
Without the music.pitch I wasn't able to reproduce so far, so I think its related.