coloitu_
Published © CC BY-NC-ND

Remote Igniter + 3D printed Case

Build a remote igniter to safely test and launch model rockets from over 10 meters of distance!

IntermediateFull instructions provided1.5 hours47
Remote Igniter + 3D printed Case

Things used in this project

Hardware components

Wemos D1 Mini
Espressif Wemos D1 Mini
×1
KY-019
×1
Resistor 1k ohm
Resistor 1k ohm
×1
IR receiver (generic)
×1
IR remote
×1
LED (generic)
LED (generic)
×1
Battery Holder, 18650 x 2
Battery Holder, 18650 x 2
×1
18650 Battery
×1

Software apps and online services

Arduino IDE
Arduino IDE

Hand tools and fabrication machines

Soldering iron (generic)
Soldering iron (generic)
Solder Wire, Lead Free
Solder Wire, Lead Free

Story

Read more

Custom parts and enclosures

IgniterCaseBottom

IgniterCaseTop

Code

Code

Arduino
// C++ code
// Written and Developed by @Coloitu
//CC Rights Protected
int Infrared = 0;
void setup()
{
pinMode(4, INPUT);
Serial.begin(9600);
pinMode(5, OUTPUT);
}
void loop()
{
Infrared = digitalRead(4);
Serial.println(digitalRead(4));
if (digitalRead(4) == 0) {
digitalWrite(5, HIGH);
delay(3000); // Wait for 3000 millisecond(s)
digitalWrite(5, LOW);
}
delay(100); // Wait for 100 millisecond(s)
}

Credits

coloitu_
19 projects • 3 followers
Contact

Comments

Please log in or sign up to comment.