pxt-calliope/docs/examples/rando.md
2020-08-19 22:03:58 +02:00

156 B

Rando

Generate a random coordinate and display it on the LED screen.

basic.forever(() => {
    led.toggle(randint(0, 4), randint(0, 4))
})