added example of converted lesson

This commit is contained in:
Peli de Halleux
2017-10-26 22:19:16 -07:00
parent 5c7e856e7b
commit 98e430f3c1
4 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,12 @@
# Sound Machine
This example program combined with the small model will make a beat and rhythm on any surface when the program is run.
```blocks
loops.forever(function () {
output.motorA.on(50)
loops.pause(200)
output.motorA.on(100)
loops.pause(200)
})
```