You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
from microbit import *
import machine
import random
while True:
num = random.randint(1, 7)
display.show(num)
sleep(10) # works ok for me with 20ms
machine.reset()
It stops OK with 20ms of delay or if you remove machine.reset().