Skip to main content

Paper Circuits Intro



I had the opportunity to lead a paper circuit workshop at my daughter’s school with 3rd and 4th graders. This was a great way for them to be creative and learn about electronics. For each group of 3-4 students, I prepared a kit of hardware supplies.


Students were provided instructions for using LEDs and copper tape. We briefly discussed the principles of electricity, conductivity, and circuits. Students had the option to use either LED stickers or traditional LEDs with pins.

A traffic light interactive paper circuit example was shared to help students generate ideas for creating and designing their own interactive artwork. A template for this paper circuit design that can be printed for students struggling to create their own circuit is attached to this project. You can download, print, and use it as a quick circuit design to get apprehensive students started on their first paper circuit.


Explaining why resistors were not necessary for this circuit can help students better understand the flow of electricity. We also discussed the direction of the flow of electricity through LEDs as we talked through the traffic light circuit design.



It's important for students to understand the flow of electricity and LED pins. Illustrating the two ways to determine if an LED is arranged in the proper direction in a circuit is important.
  1. An LED’s longest pin (anode) is positive (+). An LED’s shortest pin (cathode) is negative (-).
  2. Suppose the pins have been cut. Another way to identify polarity on an LED is a notch in the plastic lip of the LED. This notch is located by the shortest pin, or cathode, which is negative.

Students were allowed to make their drawings first. Then, they planned out their circuitry and design using a pencil on the backside or inside of their artwork. They laid the copper tape, inserted their LEDs, and connected the power source, a coin cell battery.

The switch is created by folding over a corner of the paper that connects one of the copper tape ends to the positive side of the battery. The battery itself sits on top the other end of the copper tape. This connects the negative side of the battery to the circuit. Use a binder clip to hold the switch in the “on” position.

Creating a Pressure Switch



Download a LED Traffic Light Circuit Template

Another type of paper circuit artwork are those not interactive. This airplane example circuit shows an artwork meant to remain lit with no need to press the sides of LEDs to light them up. You’ll also notice the colors chosen for the LEDs on the plane match those of a real airplane. This is a great opportunity to discuss the history of aviation lights.



Comments

Popular posts from this blog

Tippe Top Design

The physics behind the tippe top toy have been the subject of studies by scientists for years - dating back to the early 1890s. The tippe top is spun just like any other top, but pulls a surprise stunt. The top flips over and spins on its stem when given a strong twist. Why does the tippe top flip over? What does this mean for anyone planning to make one on a 3D printer? Nobel Prize winners, Wolfgang Pauli and Niels Bohr, take a break with a tippe top at the 1954 inauguration of the Institute of Physics in Lund, Sweden. Early Top Patents The first patent for the top, listed as “Wendekreisel”, was filed in Germany by Helene Sperl in 1891. While the patent seems to describe the top’s inversion property, reproductions of the top have proved unsuccessful. The patent expired after one year because the fee wasn’t paid. During a trip to South America, Danish engineer Werner Østberg noticed kids spinning a small, round fruit. While spinning, the fruit would flip over (or...

micro:bit Fireworks with Python

I used the MicroPython editor to program a fireworks animation that controls the brightness of the LEDs as the firework explodes on the LED display. For young computer science students, this is a great introduction to text-based programming, arrays, and animating LEDs. Code # Display message and show pacman with firework option from microbit import * firework1 = Image("00000:00000:00000:00000:00200") firework2 = Image("00000:00000:00000:00200:00100") firework3 = Image("00000:00000:00200:00100:00000") firework4 = Image("00000:00000:00900:00000:00000") firework5 = Image("00000:07870:08580:07870:00000") firework6 = Image("60706:01210:72127:01210:60706") firework7 = Image("30503:00000:50005:00000:30503") firework8 = Image("10201:00000:20002:00000:10201") all_firework = [firework1, firework2, firework3, firework4, firework5, firework6, firework7, firework8] while True: if button_a.is_pressed(): ...

Sprites & Games

Any graphical object or character in a video game is known as a sprite. Code provides instructions for sprites. A game’s program can tell the sprite how to move or react when a button is pressed. Every time Mario bops his head on a box and a mushroom appears, sprites (Mario, the box, the mushroom) are interacting with each other and responding accordingly based on the game’s code. You can create your own sprites to use in your video games! I used Piskel , an online sprite creation tool, to create my m4ttbit sprite for a blob-catching game I made using Scratch . Piskel lets you create an 8-bit or pixelated sprite and even animate it. To create an animated sprite, you’ll want to develop a frame for each movement. A frame toolbar in Piskel lets you easily create a frame for a standing sprite or a series of images to make it look as though your sprite is running, jumping, or flipping. When you’re finished creating the frames or series of images for your sprite, export them by savin...