Welcome to Hackster!
Hackster is a community dedicated to learning hardware, from beginner to pro. Join us, it's free!
Arnov Sharma
Published © GPL3+

3D-Printed Jet Turbine

It's a BLDC motor based jet turbine.

BeginnerFull instructions provided18,497
3D-Printed Jet Turbine

Things used in this project

Hardware components

Arduino UNO
Arduino UNO
×1
Rotary potentiometer (generic)
Rotary potentiometer (generic)
×1
ESC
×1
BLDC MOTOR
×1
UTSOURCE Electronic Parts
UTSOURCE Electronic Parts
everything above can be found here for a low price
×1

Story

Read more

Custom parts and enclosures

thingiverse link

Schematics

sch

Code

code

C/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
}

Credits

Arnov Sharma
328 projects • 333 followers
Just your average MAKER
Contact

Comments

Please log in or sign up to comment.