The Reusable and Wireless Igniter

59K50435

Intro: The Reusable and Wireless Igniter

This project uses a simple RF link and two Arduinos to ignite something from up to 90 feet away! I always found it annoying to mess with a bunch of wire, so I felt like creating something to fix that problem. A wireless connection is not only safer, but also A LOT cooler. This wireless ignitor can be used to ignite fireworks, model rockets, and more!

This is PART ONE of a three part project! See the other parts by visiting my page!


Disclaimer: This is not intended to be used as anything but a safe way to ignite fireworks, a model rocket, etc. Be cautious whenever you are building this or using this device. I take no responsibility for any harm done due to any carless action or a failure to follow the proper safety measures.

STEP 1: Materials

Components:

Sparkfun wish list with all of the parts here

Component Supplier Price Arduino x2 Sparkfun buying guide, Radioshack $50-60 RF link modules Sparkfun/Sparkfun $9 Enclosure x2 Sparkfun, Radioshack $7-12 Toggle switch Sparkfun, Radioshack $3-5.50 On/off switch x2 Sparkfun, Radioshack $.75-4 Speaker(optional) Sparkfun, Radioshack $2-4 Glow plug Amazon $6 LEDs Sparkfun, Radioshack $1-5.50 5V Relay Sparkfun, Radioshack $2-5 Assorted resistors Sparkfun, Radioshack $8-$15 8-Pin Sockets Sparkfun, Radioshack $1-2 Total ~$85-130
Tools:
--Wire (for antennae)
--Perfboard
--A few male headers
--Something to use as a cushion for the arduino, or some standoffs
--Drill
--File and/or sandpaper
--Soldering iron/solder
--Wire cutter/stripper
--Miscellaneous screws, nuts, etc.
--Big alligator clip
--Battery holder for 2 AA batteries (will be modified)
--9V Battery with connectors
--1.5V AA Batteries x2

STEP 2: Getting VirtualWire

All of the code involved in this project is centered around an Arduino library called VirtualWire, by Mike McCauley.  This library pushes the cheap RF link modules to their limits.

1.)  This library can be downloaded directly from here, or on the website here.

2.)  Find the location of your Arduino sketchbook by checking your Arduino preferences.

3.)  Make a folder called "libraries" if it's not already there and place the VirtualWire folder in it.

4.)  Open arduino and you're done!


STEP 3: Creating the Virtual Wire

Receiver Code Download the code here
//  Receiver by Noah DC
//  This code is built around the VirualWire library which 
//  can be found here: http://www.airspayce.com/mikem/arduino/
//  Visit my instructable for the wiring, explaination, etc.
//  
https://www.instructables.com/id/The-Reusable-and-Wireless-Igniter/

constint recieverPin = 2; //to reciever module
constint ignitionPin = 3; //to igniter
constint activeIndicatorPin = 5; //to green LED
constint inactiveIndicatorPin = 6; //to red LED
constint buzzerPin = 4; //to the buzzer
#include <VirtualWire.h>
boolean liftOff= false;

voidsetup(){
Serial.begin(9600); //for debugging
pinMode(activeIndicatorPin, OUTPUT);
pinMode(inactiveIndicatorPin, OUTPUT);
pinMode(ignitionPin, OUTPUT);
  vw_set_ptt_inverted(true); //normal setup stuff
  vw_setup(2000);
  vw_set_rx_pin(recieverPin);
  vw_rx_start();
}

voidloop(){
while(liftOff == false){
digitalWrite(activeIndicatorPin, HIGH); //shows that igniter hasn't been used yet
    uint8_t buf[VW_MAX_MESSAGE_LEN];
    uint8_t buflen = VW_MAX_MESSAGE_LEN;
if (vw_get_message(buf, &buflen)) {
Serial.print("Got: ");
Serial.print(buf[0], DEC); //only one byte in the array (it should be 97)
Serial.println(" ");
    }
if (buf[0] == 97){ //checks if the letter "a" is recieved (ASCII number is 97)
      liftOff = ignition();
    }
  }
}
int ignition(){
tone(buzzerPin, 500, 300); //5 second countdown
delay(1000); //it's not necessary, and can be removed
tone(buzzerPin, 500, 300); //4 (I relize it's not exactly a second)
delay(1000);
tone(buzzerPin, 500, 300); //3
delay(1000);
tone(buzzerPin, 500, 300); //2
delay(1000);
tone(buzzerPin, 500, 300); //1
delay(500);
//ignition!!
digitalWrite(ignitionPin, HIGH);
delay(2000);

digitalWrite(ignitionPin, LOW);
digitalWrite(activeIndicatorPin,LOW);
digitalWrite(inactiveIndicatorPin,HIGH); //shows that igniter has been used
returntrue; //prevents other ignitions for safety purposes
}

Transmitter Code Download the code here
//  Transmitter by Noah DC
//  This code is built around the VirualWire library which 
//  can be found here: http://www.airspayce.com/mikem/arduino/
//  Visit my instructable for the wiring, explaination, etc.
//  
https://www.instructables.com/id/The-Reusable-and-Wireless-Igniter/
constint transmitPin = 2; //pin to the transitter module
constint buttonPin = 3; //pin to ignition button
constint armedPin = 4; //pin for indicator LED
#include <VirtualWire.h>
voidsetup() {
pinMode(armedPin, OUTPUT);
digitalWrite(armedPin, HIGH); //shows that igniter is armed
  vw_set_ptt_inverted(true); //setup stuff
  vw_setup(2000);
  vw_set_tx_pin(transmitPin);
}
voidloop() {
char *msg = "a"; //going to send the char "a"
if (digitalRead(buttonPin) == 1) {
digitalWrite(13, HIGH); //blink LED to show it's working
    vw_send((uint8_t*)msg, 1); //sends the char
    vw_wait_tx(); //wait until the char is sent
digitalWrite(13, LOW);
delay(500);
  }
}

STEP 4: Schematics

Follow the schematics shown in the pictures and build your circuit. I realize I forgot to draw the arrows on the LEDs, that's why they're marked.

This circuit is designed so when the switch is flicked on the transmitter, the signal is received and triggers a 5-second countdown before it ignites the fuse.

Note: I found that the wire size required for the glow plug to work properly is thicker than a normal jumper wire, or even the breadboard tracks.  Therefore, it might be necessary to connect the glow plug leads directly with a few alligator clips.

STEP 5: Setting Up the Igniter

The glow plug I'm using is designed for use in a RC car to ignite an air-fuel mixture.  It runs perfectly off of 1.5V and burns red-hot on its inner coil.  It might be necessary to provide a step-up material (something that ignites at a low temperature, but burns at a higher one), such as flash cotton, or stick a small piece of your fuse inside the plug's coil.

One AA battery proved not to supply enough current for the glow plug to run properly, so I decided to create a battery holder to make two AA batteries run in parallel.  I then soldered the glow plug to an alligator clip:

The battery holder:
1.)  Take off one of the springs from its connector
2.)  Solder that spring to opposite side. Both springs should be on the same side of the holder
3.)  Make sure each side of the battery holder is connected, then solder a wire coming from each
4.)  The final product can be seen in the materials step

The glowing alligator clip:
1.)  Flatten out the sides of a big alligator clip
2.)  Drill a hole 15/64" in diameter on only one side of the clip
3.)  Screw the glow plug inside the hole and solder it at a high heat (I used about 400°C)(or, as suggested by The Lightning Stalker use a nut if you can find the correct size: 1/4 x 28 nut)
4.)  Feed two wires through the alligator clip's neck
5.)  Solder one wire to the end of the glow plug and the other to the body
6.)  It should look similar to the GIF in the pictures

STEP 6: Putting It in the Enclosure

First, drill a few holes and file out the edges to fit the parts you are using.  Make sure to drill an array of holes for the speaker if you decide to use one.

To neaten things up, I made a small shield to fit over the arduino.  I also wanted to reuse the receiver and transmitter, so I put them on a split IC socket, as shown in the pictures.

I used some foam I cut to hold the arduino in place, but standoffs and screws would work too.

STEP 7: Conclusion

I hope you enjoyed learning how to make a reusable wireless igniter!!

Here's a little clip showing it in action:



Be sure to leave feedback!

31 Comments

Very informative, I have not really thought much about anything other than the usual chemical igniters fired either electrically or by a fuse but this seems much safer ,easier and also much more flexible, I can think of a great many applications for this, thank you for posting it.

Question: this might be a dumb question, sorry, but I'm relatively new to wiring circuits and reading those diagrams. I think the arrows that lead to nowhere just mean ground (for instance, the arrows at the bottom of the diagram)? I'm unsure, and also unsure how to wire that --> do I just connect it to the neg end of my power source?

Also, if you have the spare time, [and I don't mean to criticize the pictures], could you post higher resolution pictures / better lighting of where your wires connect? (particularly to the breadboard). If not, no worries.

Good question! Like you said, the downward facing arrows are ground (GND). This basically means you connect all of them, like in the picture attached (it's better quality too). Notice how there's a switch between ground and the negative ends of the battery.

I'm not able to post better quality pictures because I don't have the circuit boards intact anymore, but if you have any more questions about the schematic, I can answer those for you!

Also, you should be able to click on the pictures, then there'll be a sidebar with a Full Size option on the left.

Perfect!!! Thanks so much for the prompt response. I'm attempting to put it all together right now (fingers crossed).

you said this was a 3 part indestructible what are the other 2 parts? I'm interested in trying to make one for myself....

The second part is here and the third part is here. These weren't my original choices for instructables because what I wanted to do didn't work out. However, it was still a fun project!

elegantly simple...congratulations...dr errico
I made a remote detonator from walky talkys here lately and it works great but my ignition source was a broken Christmas light that I can only use once. I've been searching for so long for a reusable ignition source and now I have finally found it. Thanks for the great Idea of using a glow plug. I will have my detonator up soon of you want to check it out. It will be my first project posted.
Are two full Arduino boards really necessary?
You can pick up multi channel RF remotes for under $5 on ebay
I was thinking the same thing. There are tons of cheap microcontrollers he could have used...
Absolutely not. The VirtualWire library works with an attiny85 (~$3 here).  But, this can easily modified to transmit/interpret other data besides a button press...

-Nodcah
Depending on size and build of the project you might try a spark plug or stun gun to create a spark or s simple element wire like used in a light bulb. Just a thought
I would recommend using a nut on the igniter and an appropriately sized ring terminal. You can also get a connector to attach to the top of the igniter instead of soldering directly to it since the solder doesn't stick very well anyway. Look in the related items on the Amazon page.

Personally I would ditch the igniter entirely and go with a car ignition coil instead. You can only ignite gas with it though unless you have a heavy enough driver circuit to get a continuous arc.
I totally agree, but I tried using this, but the current needed was too high.  I wanted it to be powered by another 9V battery at most, and the glow plug only required 1.5V.  As for using a nut, that is by far the best possible improvement I could've made, but I didn't have the time to order it. Thanks for the response!

-Nodcah
The right size nut should be available at any hardware store. It's also a good idea to have a jar full of assorted nuts and bolts.
How durable are the glow plugs? Would they stand up to repeated use to ignite a small cannon charge of black powder? I have an application this would be perfect for.
No, the moment the powder explodes it'll destroy the glow plug.
Not if you use it to ignite a cannon fuse.
More Comments