Kid Friendly Alligator Clips and Conductivity Game With Makey Makey

by MakeyMakey in Teachers > Pre-K

2872 Views, 11 Favorites, 0 Comments

Kid Friendly Alligator Clips and Conductivity Game With Makey Makey

d07218c5-e959-4a3f-bc72-f054719a8d63_2048_20483033775128862957662.png

Hack a clothespin with conductive fabric tape from the Inventor Booster Pack to make a kid-friendly alligator clips and conductivity testers.

Supplies

Makey Makey Classic, Inventor Booster Pack, Wire Strippers, Electrical Tape

Hack #1: Create a Kid Friendly Alligator Clip:

339d586397d02537d9cb58e4950fc0ef0227037569862789087.png
26ed701cfcd461f2facfbb99db5311d213776281391709799519.png
  • Take apart a clothespin.
  • Add conductive fabric tape from the inventor booster kit on the inside of each clothespin.
  • On one wooden piece of the clothespin, make sure you wrap fabric tape from the teeth to the end of the wood so you can clip your alligator clip onto it.
  • Put the clothespin back together.
  • Clip an alligator clip onto the end of the clothespin with the fabric tape.
  • Insulate the fabric tape by covering it with masking tape.

Educator Tip:

Make these clothespins yourself, or challenge students to make them. They will learn a lot about conductivity just making and tinkering and trying to figure out how to make the clothespin work just like the alligator clip.

Hack #2: Conductivity Tester Alligator Clip

You can use this same idea to make an alligator clip with both a key press and EARTH to test items for conductivity.

Have students make "Is it conductive?" games and create a display of items that may or may not be conductive. Have them test each item with your newly hacked "Conductivity tester" clothespin.

Note: Scratch runs the code from top to bottom, so there is a bit of a lag when testing your materials. Make sure you give the code time to run through and before deciding your item is conductive or not.

Teach Scratch Tips

774e6ff44b4286de3884bd93b35fce5108821656100579178616.png
68c0e9aba54322e093835badf50dadba15798573519020040385.png

Scratch Tips

How can you trigger events? How do "if/else statements" work? When do you need a "forever" loop in a game?

Note: Scratch runs the code from top to bottom, so there is a bit of a lag when testing materials. Make sure to give the code time to run through and before deciding if an item is conductive or not.

Picture 1: Scratch 2

Picture 2: Scratch 3

Educator Tip:

When Flag Clicked

In the code above, my game starts "when the green flag" is clicked. At this point, the squirrel will say, "Is it conductive? Let's find out." This will play only once at the start of a game. After Scratch runs this code, it will not check for it again unless I click the green flag again, which will restart the game.

If/else statements

An "if" statement tells the Scratch game to check "if" something happens "if" my computer detects the right arrow is pressed, then the squirrel will say "Yes! That is conductive." "Else" tells my computer that "otherwise" if my right arrow is NOT pressed, then the squirrel will think "Hmm... are you grabbing air?" and then say, "Nope, try again."

Forever loops

To make my Scratch game consistently check whether the right arrow key is pressed or not, I've placed it inside a "forever" loop. This tells the game that once the flag is clicked, to "forever" look and see if the right arrow key is pressed (if so, say "Yes! That is conductive") or no, the right arrow key is not pressed (else say "Nope, try again.")

Note: Scratch runs the code from top to bottom, so there is a bit of a lag when testing materials. Make sure students give the code time to run through and before deciding if an item is conductive or not. Use a forever loop around anything you want to ALWAYS be at play in your Scratch game or animation.