top of page
P1011140_small.JPG

steam activity guides

TICKLEBOT

How to Make a Ticklebot!

There’s no one right way to make a Ticklebot! Here is how I made mine, but feel free to get creative.

(Note that the instructions assume some very basic knowledge of using development boards and how to connect components, but contact me if you've got any questions!)

Check out these amazing Ticklebots from around the world!

The instructions are also available in French, courtesy of Roteco.

tickebot.gif

Materials

Development board
I used the micro:bit v2, but the Circuit Playground Express is also a great option. If you use the micro:bit v1, make sure to check the note at the end of the guide about resistive vs. capacitive touch.

micro:bit
Circuit Playground Express

micro_bit_V2_YELLOW.png

Micro Servos

You'll need two. Make sure they're the regular kind and not continuous rotation servos. You can get these on almost any DIY/hobbyist electronics websites.

Adafruit

Grove Servos (if you're using the Grove Bitmaker)

grove-servo-motor.jpg

A way to attach the servos:

I used the Grove Bitmaker Lite, but it was a bit tricky since I had to use the logo for the touch sensor. I would suggest looking at a different option that has more pins accessible. There’s tons of expansion boards I haven’t tried that should work (I've listed a handful below). You can also attach the servos using a breadboard or directly with alligator clips.

Grove Bitmaker (you’ll need to use their compatible servos)
Kitronik Compact All-In-One Robotics Board
Sparkfun micro:bit IO Board
Lectrify Bit:Buddy+
Crazy Circuits Bit Board

Update: I made a second version of this project that uses the Crazy Circuits Bit Board, which makes the other touch pins accessible. You can find those instructions here.

bitmaker-lite-grove-expansion-board-micr

Aluminum Foil

This will be used for the touch sensing. You can probably also use conductive tape for this, but I haven't tried it.

A way to attach to the touch sensor:
I used an
alligator clip, but conductive tape, like this or this would probably work as well, I just didn’t have any on hand to try.

Cardstock or Construction Paper

You can also use regular paper, but it'll be a bit flimsy.

Glue

  

Scissors

Instructions

You can download the printable template here:  A4 Paper  |  US Letter

Ticklebot_1.jpg
Ticklebot_2.jpg
Ticklebot_3.jpg
Ticklebot_4.jpg
Ticklebot_5.jpg
Ticklebot_6.jpg
Ticklebot_7.jpg

Code & Connections

You can get the Makecode for the micro:bit here: TickleBot
If you're using the logo as the touch pin, use this code instead: Ticklebot for Bitmaker Lite

If you've never used the micro:bit before, here's an intro for how to transfer your code onto it. You'll want to update the code to whichever connections you're using. In my code, I used the logo as the touch sensor (which I don't actually recommend, but you'll see why I did it in a moment), and P1 and P2 for the servos. P1 and P2 correspond to the pins on the micro:bit.

NOTE: If you're using micro:bit v1, you'll need to delete the "set logo to touch mode capacitive" block, and you'll want to use P0 as the touch pin.

code.png

You can see on the left image that the servos are attached to P1 and P2. If you're using an expansion board like I did, the pin numbers should be written somewhere on the board.

If you look closely at the picture on the right, you'll see that there isn't a way for me to access P0 on the Bitmaker Lite! Since only P0, P1, P2 and the logo can be used as touch sensors, and I was already using P1 and P2 for the servos, this only left me the logo for the touch sensing.

What I actually recommend doing is using P1 and P2 for the servos, and P0 for the touch sensing. Then you can attach an alligator clip directly to P0 for a much more stable connection. (And don't forget to update the code to match.)

connections.png

Since using the logo as the touch sensor is not very reliable, why didn't I use a breadboard or alligator clips to connect the servos directly? I could have, but I wanted to make this a project I can easily teach over Zoom, and trying to explain how to connect all the different wires with breadboards, or adapting the connector on the servo is tricky to do virtually.

I'll actually be receiving a few of the other expansion boards and conductive tape to try, so I'll update the instructions if one of them works particularly well for this project!

88x31.png
bottom of page