DIY 3D-Printed Jet Turbine: Arduino, BLDC Motor & ESC – Quick Build Guide
Components and supplies
![]() |
| × | 1 | |||
![]() |
| × | 1 | |||
| × | 1 | ||||
| × | 1 | ||||
![]() |
| × | 1 |
About this project
Watch the video and see how I created this jet turbine with few components.
Thanks UTSOURCE.net to offer electronic components for this project!
you can check UTSOURCE.net, they deal in all kinds of electronic components, for example, Arduino board, BLDC motor, and many more.
Watch and check out part 2 or version 2 of this project
https://www.hackster.io/Oniichan_is_ded/3d-printed-jet-turbine-v2-1dfc31
To download the STL files, visit:
https://www.thingiverse.com/thing:3503806
Code
- code
codeC/C++
#include <Servo.h> //Use the Servo librarey for generating PWM
Servo ESC; //name the servo object, here ESC
void setup()
{
ESC.attach(6); //Generate PWM in pin 6 of Arduino
}
void loop()
{
int throttle = analogRead(A0); //Read the voltage from POT
throttle = map(throttle, 0, 400, 0, 180); //Map the values of 0-102 from pot to 0-180 bcs servo works only from 0-180
ESC.write(throttle); //based on the value of throttle generate PWM signal
}
Custom parts and enclosures
thingiverse link
CAD file on thingiverse.comSchematics

Manufacturing process
- Business Jet: Evolution, Materials, and Manufacturing Process
- Jet Engine: Design, Materials, and Manufacturing Excellence
- Wind Turbine Technology: History, Design, and Future Impact
- Comprehensive Pi Servo Hat Setup Guide: Hardware, Wiring, and Python Control
- Simple Pi Robot – Build a 2‑WD Autonomous Rover with Raspberry Pi
- Master Solo Drone Servo Control with Arduino: Easy Setup & Sweep Tutorial
- Interactive Servo Motor Project with Arduino and HC‑SR04 Sensors
- Servo Press Fundamentals: Power, Precision, and Efficiency Explained
- Servo Motors Explained: How They Work and Why They Matter
- Reaction Turbines in Hydropower: How They Generate Electricity


