gungoryalcin68
Published © GPL3+

Robotics Arm 6 axis joystick

6 axis joystick Robotics Arm

BeginnerProtip578
Robotics Arm 6 axis joystick

Things used in this project

Hardware components

Arduino Nano R3
Arduino Nano R3
×1
Rotary potentiometer (generic)
Rotary potentiometer (generic)
×1

Software apps and online services

Arduino IDE
Arduino IDE

Schematics

6axis_kwqa8h2yDQ.jpg

Github

Code

Untitled file

Arduino
/*
 Güngör 02/12/2017
 6 potansiyometre ile robot kol yapımı
 */
 void setup() {
  Serial.begin(9600);
}

void loop() {
  Serial.print(" R0: ");
  Serial.print(analogRead(7));
  Serial.print(" R1: ");
  Serial.print(analogRead(6));
  Serial.print(" R2: ");
  Serial.print(analogRead(5));
  Serial.print(" R3: ");
  Serial.print(analogRead(4));
  Serial.print(" R4: ");
  Serial.print(analogRead(3));
  Serial.print(" R5: ");
  Serial.print(analogRead(2));
  Serial.println("");
  delay(500);
}

Github

Credits

gungoryalcin68
24 projects • 8 followers
Contact

Comments

Please log in or sign up to comment.