pxt-ev3/docs/maker/puppet.md

12 lines
276 B
Markdown
Raw Normal View History

2017-10-27 09:13:51 +02:00
# Puppet
Use this program with the Programmable Brick and Large Motor.
```blocks
loops.forever(function () {
output.largeMotorA.onForAngle(30, 30, false)
music.playSoundUntilDone(music.sounds(Sounds.PowerUp))
output.largeMotorA.onForAngle(40, -30, false)
})
```