|
WEMOS-D1-MINI |
x 1 | |
|
KY-019Generic
|
x 1 | |
|
IR ReceiverGeneric.
|
x 1 | |
|
1k ResistorGeneric
|
x 1 | |
|
LEDGeneric
|
x 1 |
|
Soldering iron |
|
|
Soldering Iron Wire Welding Lead Roll |
Remote Igniter + 3D printed Case.
Remote IR Igniter.
Build an Infrared remote ignitor for model rocket testing and launching!
This guide will show you how to build and program the project, if followed step by step you will have a working igniter by the end.
This project requires soldering and is not recommended for beginners. Apart from the required components, you'll need a powerful battery capable of creating ignition. A few examples:
- 2x 18650 Batteries connected in series, Soldering the batteries is extremely dangerous and is absolutely not recommended. If you are thinking of using these, you'll have to connect them via simple battery holders.
- A 12V car battery
- A 4V big Non-rechargable battery.
Out of these I use and recommend using 2x 18650 batteries for conformity.
Assembling:
The PCB contains a white footprint indicating where every component must be placed. After placing every piece in its hole, the next step is soldering. The hardest part to solder will be the D1 Mini because of its many pins, but after a while you'll get comfortable enough.
It is recommended to program the board before soldering.
To program the board you'll need to add the esp8266 core to the Arduino IDE. Here is a great tutorial on how to do it.
On the Arduino IDE you must copy the code (which is below) and upload it to the board. The code built for this project uses any IR remote to launch. This code can be modificated to use the wifi module on board the D1 Mini.
Operating:
To use the igniter, a power source (as mentioned before) must be connected to the Relay module. A secondary power source must be used to power the board, this may be a power bank or any 5v current connected to the 5V and GND pins to the D1. After that, an electric match or rocket igniter has to be connected via the relay and the big battery. To launch just point and press an Infrared remote (like a tv remote) and ignition will be generated.
Created by @Coloitu.
Please ask if you have any doubt, I'm here to help!
// 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)
}
Remote Igniter + 3D printed Case.
*PCBWay community is a sharing platform. We are not responsible for any design issues and parameter issues (board thickness, surface finish, etc.) you choose.
- Comments(0)
- Likes(0)
- 0 USER VOTES
- YOUR VOTE 0.00 0.00
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
More by Inaki Iturriaga
- GPS Mobile Beacon Building a GPS Emergency Beacon: A DIY TutorialWelcome to our latest DIY project: creating a GPS Eme...
- Wireless RFID Card Copier. Wireless RFID Card CopierIn today's digital world, security and accessibility are of paramount impor...
- Piezo Alert System. Within the fast-evolving sphere of security tools and home automation, creativity often paves the wa...
- Wifi Weather Station - Sensors board WiFi Weather Station - Sensor unitIn our digital era, many electronics projects integrate diverse se...
- RC Receiver Build Your Own RC ReceiverHarnessing advanced electronics and precise control systems, the RC Receiv...
- Universal RC Controller Build Your Own Universal RC RemoteHarnessing the power of custom PCBs and wireless communication, th...
- Continuous GPS Tracker This compact and efficient tracker provides real-time location updates, making it ideal for surveill...
- Air Quality Monitor Welcome to our DIY tutorial on assembling an Air Quality Monitoring Device. This project is perfect ...
- Automatic Watch Winder Automatic Watch WinderIn the realm of luxury timepieces and watch aficionados, an automatic watch is...
- Handheld GPS Within the swiftly advancing realm of portable technology and travel essentials, innovation often sh...
- Dual Motor Controller for Model Robotics In the thrilling world of robotics and DIY engineering, innovation continues to soar to new heights....
- Altitude Indicator with Beeper for Rocketry Altitude Indicator for Model RocketryIn our ever-advancing technological landscape, countless projec...
- Wifi Weather Station - Display unit WiFi Weather Station - Display UnitIn this technologically advanced age, countless electronics proje...
- Positon Breakout Board Position Sensors Breakout Board In today's era of advanced technology, many electronics projects req...
- Ambient Sensors Breakout Board In today's world, electronics projects often require the integration of multiple sensors to collect ...
- Infrared Launch Controller IntroductionHave you ever wanted to remotely launch a rocket, drone or other device using infrared t...
- Altimeter Datalogger with Display. Building TutorialAltimeter Datalogger with Display.Components needed:BMP280 sensorI2C to 16x2 displa...
- Remote Igniter + 3D printed Case. Remote IR Igniter.Build an Infrared remote ignitor for model rocket testing and launching!This guide...
-
-
Helium IoT Network Sensor Development board | H2S-Dev V1.2
110 0 0 -
-
-
-
-
-
3D printed Enclosure Backplate for Riden RD60xx power supplies
181 1 1