Mission Critical
Published © CC BY-NC-ND

How to Make a Gimbal

Learn how to make a 2-axis gimbal for your action camera (GoPro) within $30!

AdvancedFull instructions provided2 hours23,073

Things used in this project

Hardware components

Arduino Nano R3
Arduino Nano R3
×1
Modulo Joystick
Modulo Joystick
×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

Schematics

Schematic

Code

Code snippet #2

Plain text
{
  servo1.attach(3);
  servo2.attach(5);
  pinMode(13,OUTPUT);
  digitalWrite(13,HIGH);
}

Code snippet #3

Plain text
{ 
  servoVal = analogRead(joyX);
  servoVal = map(servoVal, 0, 1023, 0, 180);
  servo1.write(servoVal);
 
  servoVal = analogRead(joyY);
  servoVal = map(servoVal, 0, 1023, 70, 180);
  servo2.write(servoVal);
  delay(100);  
}

Credits

Mission Critical
35 projects • 66 followers
Hello Geeks, Mission Critical is an Electronics Based Channel on YouTube
Contact

Comments

Please log in or sign up to comment.