9 lines
164 B
Markdown
Raw Normal View History

2017-02-09 17:40:21 -08:00
# Rando
Generate a random coordinate and display it on the LED screen.
2017-02-09 17:40:21 -08:00
```blocks
basic.forever(() => {
2018-04-21 10:52:09 -07:00
led.toggle(Math.randomInt(5), Math.randomInt(5))
2017-02-09 17:40:21 -08:00
})
```