From e8eb7a9d4eb53b3395497545373d250cc140c5c4 Mon Sep 17 00:00:00 2001 From: ganicke Date: Tue, 5 Dec 2017 15:59:36 -0800 Subject: [PATCH 1/3] Some edits to the 'light monster' project --- docs/projects/light-monster.md | 4 ++-- docs/projects/light-monster/code.md | 6 +++--- docs/projects/light-monster/connect.md | 4 +--- docs/projects/light-monster/make.md | 18 ++++++++++-------- 4 files changed, 16 insertions(+), 16 deletions(-) diff --git a/docs/projects/light-monster.md b/docs/projects/light-monster.md index c9b561b4..669fdae2 100644 --- a/docs/projects/light-monster.md +++ b/docs/projects/light-monster.md @@ -1,7 +1,7 @@ # Light Monster -## @description A monster made of cardboard that responds to light +## @description A monster made of coffee cups that responds to light ## ~avatar avatar @@ -28,7 +28,7 @@ https://youtu.be/BiZLjugXMbM ## Preparation -* [Equip the microservo with crocodile clips](/device/servo) +* [Setup the microservo with crocodile clips](/device/servo) ## Activities diff --git a/docs/projects/light-monster/code.md b/docs/projects/light-monster/code.md index 931a6681..07a0c7d9 100644 --- a/docs/projects/light-monster/code.md +++ b/docs/projects/light-monster/code.md @@ -1,5 +1,6 @@ # Code -## @description code to make the coffee cup monster alive + +## @description Code to make the light monster come alive ## ~avatar avatar @@ -9,8 +10,7 @@ Add code to open the mouth when light is detected. ## Duration: ~30 minutes -We are going to add code to open the mouth proportionally to the amount of light on the @boardname@. -In a loop, we will read the light and map it to an angle using the ``pins.map`` function. +We are going to add code to open the mouth proportionally to the amount of light on the @boardname@. The code is in a loop so we'll continually read the light level and map it to an angle using the ``||pins:map||`` function. ```blocks basic.forever(() => { diff --git a/docs/projects/light-monster/connect.md b/docs/projects/light-monster/connect.md index 9fec60d3..28def84c 100644 --- a/docs/projects/light-monster/connect.md +++ b/docs/projects/light-monster/connect.md @@ -8,9 +8,7 @@ Remote control your monster with another @boardname@ ## Duration: ~30 minutes -You will need 2 @boardname@ for this part. By using the radio, we can make the inchworm controlled by another @boardname@. -Download the code below to the @boardname@ on the inchworm and another "controller" @boardname@. -Whenere A is pressed, the monster will open and close it's mouth will move once. +In order for the light monster to move, the @boardname@ needs to command the servo to move between ``0`` and ``180`` degrees at a certain pace. The code below starts the inchworm moving when the **A** button is pressed. ```blocks radio.onDataPacketReceived(({receivedNumber}) => { diff --git a/docs/projects/light-monster/make.md b/docs/projects/light-monster/make.md index 7dac166a..37abeeec 100644 --- a/docs/projects/light-monster/make.md +++ b/docs/projects/light-monster/make.md @@ -1,25 +1,27 @@ # Make + ## @description Building the light monster ## ~avatar avatar -Turn a piece of coffee holders into a monster! +Turn some coffee cups into a monster that moves to light! ## ~ ## Duration: ~60 minutes ## Materials - * 3 Coffee cup holders - * 2 Coffee cup strirer wood sticks - * Scissors - * glue gun or tape - * 1 paper clip -## Step 1: cardboard +* 3 coffee cup holders +* 2 ood coffee strirer sticks +* scissors +* glue gun or tape +* 1 paper clip + +## Step 1: Glue the cups and sticks together TODO -## ~button /projects/coffee-cup-monster/code +## ~button /projects/light-monster/code NEXT: Code ## ~ \ No newline at end of file From 601d35c1e5819046409f3b07c06a98b921558e55 Mon Sep 17 00:00:00 2001 From: ganicke Date: Tue, 5 Dec 2017 16:04:04 -0800 Subject: [PATCH 2/3] Fix bad para copy --- docs/projects/light-monster/connect.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/projects/light-monster/connect.md b/docs/projects/light-monster/connect.md index 28def84c..3b8d7a6e 100644 --- a/docs/projects/light-monster/connect.md +++ b/docs/projects/light-monster/connect.md @@ -8,7 +8,7 @@ Remote control your monster with another @boardname@ ## Duration: ~30 minutes -In order for the light monster to move, the @boardname@ needs to command the servo to move between ``0`` and ``180`` degrees at a certain pace. The code below starts the inchworm moving when the **A** button is pressed. +You will need one more @boardname@ for this part. By using the radio, we can control the monster with another @boardname@. Download the code below to the @boardname@ on the monster and then again onto a "controller" @boardname@. Whenever button **A** is pressed, the monster's mouth moves once. ```blocks radio.onDataPacketReceived(({receivedNumber}) => { From a20145091a144355ecd5fcd13c1d01a7498cbeae Mon Sep 17 00:00:00 2001 From: ganicke Date: Tue, 5 Dec 2017 16:31:36 -0800 Subject: [PATCH 3/3] Put back the 'holder' term for materials --- docs/projects/light-monster.md | 6 +++--- docs/projects/light-monster/connect.md | 2 +- docs/projects/light-monster/make.md | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/projects/light-monster.md b/docs/projects/light-monster.md index 669fdae2..d98b7b8e 100644 --- a/docs/projects/light-monster.md +++ b/docs/projects/light-monster.md @@ -1,7 +1,7 @@ # Light Monster -## @description A monster made of coffee cups that responds to light +## @description A monster made of coffee cup holders that responds to light ## ~avatar avatar @@ -17,8 +17,8 @@ https://youtu.be/BiZLjugXMbM ## Materials -* 3 Coffee cup holders -* 2 Coffee cup strirer wood sticks +* 3 Coffee cup holders (hot cup sleeves) +* 2 Wood coffee strirer sticks * Glue gun * Scissors that can cut cardboard * 1 @boardname@, battery holder and 2 AAA batteries diff --git a/docs/projects/light-monster/connect.md b/docs/projects/light-monster/connect.md index 3b8d7a6e..5e67d23f 100644 --- a/docs/projects/light-monster/connect.md +++ b/docs/projects/light-monster/connect.md @@ -2,7 +2,7 @@ ## ~avatar avatar -Remote control your monster with another @boardname@ +Remote control your monster with another @boardname@. ## ~ diff --git a/docs/projects/light-monster/make.md b/docs/projects/light-monster/make.md index 37abeeec..695a565e 100644 --- a/docs/projects/light-monster/make.md +++ b/docs/projects/light-monster/make.md @@ -4,7 +4,7 @@ ## ~avatar avatar -Turn some coffee cups into a monster that moves to light! +Turn some coffee cup holders into a monster that moves to light! ## ~ @@ -12,13 +12,13 @@ Turn some coffee cups into a monster that moves to light! ## Materials -* 3 coffee cup holders +* 3 coffee cup holders (hot cup sleeves) * 2 ood coffee strirer sticks * scissors * glue gun or tape * 1 paper clip -## Step 1: Glue the cups and sticks together +## Step 1: Glue the cup holders and sticks together TODO