Introduction: Controlling Halloween Effects With DIY Infrared Remote Controls

About: My name is Jason Poel Smith. In my free time, I am an Inventor, Maker, Hacker, Tinker, and all around Mad Genius

Halloween is the perfect opportunity to create fun special effects. When you want to be able to control props and effects remotely, one good option is to use an infrared remote control. So in this project, I am going to show you some simple remote controlled effects that you can set up in your haunted house this year.

Step 1: Watch the Video

Here is a video walkthrough of the project.

Step 2: Materials

Here are the materials and tools that you will need to complete this project.

Materials:

Arduino Microcontroller

38kHz Infrared Receiver Module

Infrared LED

555 Timer IC

1 kohm Resistor

33 ohm Resistor

0.02 MicroFarad Capacitor (or two 0.01 microfarad capacitors)

4 x AA Batteries

Battery Holder for four AA Batteries

Battery Connector

Jumper Wires

Perf Board

Heat Shrink Tubing

Tools:

Soldering Iron and Solder

Dremel (optional)

Step 3: The Receiver Circuit

This project uses an infrared receiver module to detect the signal from an infrared remote. This module has two built-in filters. The epoxy housing and lens filter out all light that is outside the infrared range (900 nm to 1000nm). The internal pre-amplifier also filters out signals that do not have a 38 kHz carrier frequency. Together, these help to eliminate most forms of interference.

The infrared receiver module is connected to an Arduino microcontroller. The right lead on the module connects to the 5V pin on the Arduino. The center lead on the module connects to the GND pin on the Arduino. The left lead on the module connects to one of the digital pins on the Arduino. In most cases you will want to connect the receiver module to the Arduino with a set of jumper wires. This will make it easier to mount the parts in their final locations later.

When no infrared signal is detected the output of the module is HIGH. But when the signal of an IR remote control is detected, the output of the module is LOW. The output of the IR receiver module is monitored using the digitalRead function on the Arduino's digital pins. When the Arduino registered that is has received an appropriate signal, it then can activate your special effects.

Step 4: The IR Remote Circuit Design

Almost any infrared remote can be used to activate the receiver module. You can just use any old remote that you have lying around your house. Or you can make it a little more fun and you can use specialty TV remotes that are made in the shape of magic wands, sonic screwdrivers, or phasers. But as fun as that would be, I decided to make my own remote from scratch.

To make a really basic infrared remote, all you need to do is hook up an infrared LED to the square wave signal generator. So I built a simple circuit using a 555 timer IC.

Pin 4 and 8 on the chip connect to the positive output wire of a battery pack. Pin 1 is connected to the negative output wire of a battery pack. Pins 2 and 6 are connected together. Then a 0.02 microfarad capacitor is connected between pin 2 and pin 1 (ground). A 1 kohm resistor is connected between pin 2 and pin 3. Lastly an infrared LED and a 22 ohm resistor are wired in series between pin 3 and pin 1 (ground). Be sure to use a 22 ohm resistor that is rated for at least 1/4 watt. Otherwise it might overheat.

When turned on, the LED will begin to blink at a frequency of about 36 kHz.

Step 5: Construct the IR Remote Circuit

When constructing any new circuit, it is a good idea to first prototype the circuit on a breadboard. This gives you a chance to test it out and make any necessary changes before you solder it all together. To quickly test the performance of your circuit you can just point it at the receiver circuit and see if it registers the circuit. The Arduino Serial Monitor tool can be very useful when testing and troubleshooting.

Then once everything is working properly, you can solder the parts onto a piece of perf board. To help conserve space, I trimmed off the unused sections of the circuit board to make it smaller. I also put heat shrink tubing on the LED to help narrow the output beam and make it more precise.

I decided to connect the LED with long jumper wires. That way would have more options as to where I would be able to mount the rest of the circuit. For instance, you could keep the battery and the circuit board in your pocket and hide the LED inside your sleeve or in a glove.

Step 6: Conceal the Infrared LED

Remote controls are cool but they don't look very impressive. So it is a good idea to hide both the transmitter and receiver of your remote system from view. That way the effects look more impressive.

Fortunately the infrared signal can pass right through most thin materials. So you can easily cover up the transmitter and receiver with paper or fabric and it will still work. You can hide them inside the props or next to them. My favorite way to hide the transmitter is to put it inside a glove. That way the actor can just point at the receiver to activate the props and effects. Because the remote control system isn't visible, it looks like magic or telekinesis.

Step 7: Choose the Special Effects That Your Remote Will Activate

Now that you have your remote control system working, it is time to figure out how to use it. There are lots of different effects that you can control. You can activate commercial Halloween props. You can control your own homemade props with servos or linear motors. You can activate sound effects. You can even do things like using an air pump to blow out the candles in a room. The only limitation is your imagination. To help get you started, I am going to show you a few examples in the next steps.

Step 8: Use Your Remote to Activate Commercial Halloween Props

The first thing that you can control with your remote system is commercial Halloween props. Most animated props have a "Try Me" button. By connecting to this switch, you can use your Arduino (and your remote) to control the props. If you want a detailed description of how to do this, you can check out the full instructions here:

https://www.instructables.com/id/Control-Your-Hallo...

But here is a quick summary. The "Try Me" button activates the prop's animation by connecting a pin on the props control circuit to ground. You can simulate the button being pressed by connecting a transistor in parallel with the switch. When your Arduino sends a HIGH signal to the base of the transistor, it connects the terminals of the switch and activates the prop's animation. Just make sure that you connect the ground of the Arduino to the ground of the prop. You can check this with a multimeter

Step 9: Use Your Remote to Activate a Servo

Another thing that your remote can control is a servo motor. You can use these motors to turn and move static Halloween props to create your own DIY animated Halloween props. To control a servo, connect the output wires from the servo to the 5V pin,GND pin and a digital pin on the Arduino (based on the color code of the wires). Connect your servo to a prop (such as a skull) and attach it to a stand to hold it in place. Then write some code to turn the servo when the IR receiver detects the signal. Here is a simple example.

#include
Servo myservo; // create servo object to control a servo

int pos = 0; // variable to store the servo position int inPin = 2; int val = 0; // variable to store the value read

void setup() { Serial.begin(9600); // setup serial pinMode(inPin, INPUT); myservo.attach(9); // attaches the servo on pin 9 to the servo object }

void loop() {

val = digitalRead(inPin); Serial.println(val); // debug value if (val == LOW) { delay(1000);

for (pos = 30; pos <= 150; pos += 1) // goes from 0 degrees to 180 degrees { myservo.write(pos); // tell servo to go to position in variable 'pos' delay(15); // waits 15ms for the servo to reach the position }

delay(1000);

for (pos = 150; pos >= 30; pos -= 1) // goes from 180 degrees to 0 degrees { myservo.write(pos); // tell servo to go to position in variable 'pos' delay(15); // waits 15ms for the servo to reach the position } } }

Step 10: Use Your Remote to Move Props With Magnets

Another way that you can move props with a motor and magnets. One set of magnets is embedded in your Halloween Prop. Another set of magnets is attached to the end of a linear motor. The motor is mounted to the bottom side of a table. Then the prop is set on top of the table so that the magnets line up. When the receiver circuit detects the signal from your remote, the arm of the motor extends. This causes the prop to move across the table without any apparent cause.

Step 11: Use Your Remote to Activate a Sound Effects

Another effect that you can control is sound effects. An easy way to control sounds with your Arduino is by using a Wave shield. This is a stacking shield that connects directly to the Arduino. For full instructions on how to use the wave shield, you can check out the tutorial on the adafruit website. https://learn.adafruit.com/adafruit-wave-shield-au...

But here is a quick summary. Start by recording or downloading some sound files. Then convert these files to mono wave files at 16 bit and 22050 Hz. There are a number of programs and websites that can do this conversion. Name and organize the files. Then cope them onto an SD card and insert it into the shield. Download the waveHC time and copy it into your Arduino libraries directory. Lastly write some code. When your receiver circuit detects the signal from your remote, your wave shield will play your chosen sound effects.

Step 12: Use Your Remote to Activate a Other Random Effects

There are any number of other effects that you can control with this system. You can use a relay circuit to turn appliances on and off. You can hook up an air pump to blow out all the candles in the room. You can even activate full scale animatronics. Use your imagination. If you think of some other fun special effects that you could control with a hidden remote, leave a comment and share.

Epilog Contest VII

Participated in the
Epilog Contest VII

Halloween Decor Contest 2015

Participated in the
Halloween Decor Contest 2015