diff --git a/docs/maker.md b/docs/maker.md index 8ae53cb9..6a2f2ea4 100644 --- a/docs/maker.md +++ b/docs/maker.md @@ -35,6 +35,13 @@ These six activities require the LEGO® MINDSTORMS® Education EV3 Core Set (455 "url":"/maker/intruder-detector", "cardType": "example", "imageUrl": "/static/maker/intruder-detector.png" +}, +{ + "name": "Puppet", + "description": "Build an automated puppet", + "url":"/maker/puppet", + "cardType": "example", + "imageUrl": "/static/maker/puppet.png" } ] ``` diff --git a/docs/maker/puppet.md b/docs/maker/puppet.md new file mode 100644 index 00000000..b0556e59 --- /dev/null +++ b/docs/maker/puppet.md @@ -0,0 +1,11 @@ +# 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) +}) +``` diff --git a/docs/static/maker/puppet.png b/docs/static/maker/puppet.png new file mode 100644 index 00000000..162115e8 Binary files /dev/null and b/docs/static/maker/puppet.png differ