Arduino Pan Tilt Controlled

by sezgingul in Circuits > Arduino

4554 Views, 23 Favorites, 0 Comments

Arduino Pan Tilt Controlled

Potansiyometre ile Pan-Tilt kontrolü Arduino Uno'ile
arduino pan tilt control.jpg

We'll check with pan tilt potentiometer in this project.In this project, two potentiometer connected to our Arduino Uno 2 servo motor-driven apparatus that allows camera control Pan-Tilt Fpv we checked cheaper cost.Checking Pan Tilt can start Pan Tilt Controlled with Potentiometer project.

original project page : Pan tilt control

Materials:

  • Arduino Uno
  • Servo motors SG90
  • 2 potentiometer 20k
  • Pan-Tilt
  • Breadboard
  • Jumper cables

Circuit Connections:

pan tilt control.jpg

Potentiometer Analog 1 and Analog 2 pins

Digital 5 and 6 pins to digital servo motors

Software Part:

#include <Servo.h>

const int pot1=A1;

const int pot2=A2;

Servo myservo1;

Servo myservo2;

int value=0;

int pos = 0;

void setup(){

myservo1.attach(5);

myservo2.attach(6); }

void loop(){ value=analogRead(pot1);

pos=map(value,0,1023,0,180);

{ myservo1.write(pos); }

deger=analogRead(pot2);

pos=map(value,0,1023,0,180);

{ myservo2.write(pos); } }


More information: Pan tilt control project