2017-10-27 00:13:51 -07:00
|
|
|
# Puppet
|
|
|
|
|
|
|
|
Use this program with the Programmable Brick and Large Motor.
|
|
|
|
|
|
|
|
```blocks
|
2018-02-14 16:05:31 -08:00
|
|
|
forever(function () {
|
2018-02-19 07:35:08 -08:00
|
|
|
motors.largeA.run(30)
|
2018-02-14 16:05:31 -08:00
|
|
|
pause(100)
|
2018-01-18 16:43:16 -08:00
|
|
|
motors.largeA.stop()
|
|
|
|
music.playSoundEffectUntilDone(sounds.animalsCatPurr)
|
2018-02-19 07:35:08 -08:00
|
|
|
motors.largeA.run(-30)
|
2018-02-14 16:05:31 -08:00
|
|
|
pause(100)
|
2018-01-18 16:43:16 -08:00
|
|
|
motors.largeA.stop()
|
2017-10-27 00:13:51 -07:00
|
|
|
})
|
|
|
|
```
|