Mini Pan-Tilt Kit for SG90 servo

https://www.botshop.co.za/web/image/product.template/1269/image_1920?unique=1fcfa93
(2 reviews)

29.46 29.46 ZAR 29.46 VAT Included

25.62 VAT Included

Not Available For Sale

This combination does not exist.

DIY Kits

Internal Reference: KIT-051


Mini Pan-Tilt Kit for SG90 servo.

A mini pan-tilt kit is a perfect product to give your project full range motion with two micro servos. The pan-tilt can rotate roughly 180° from side-to-side and can tilt up&downwards around 150°.  It has a 38mm x 36mm space to mount a camera or sensor or whatever you like.

Note: SG90 servos are not included.

Since the motors are plain, everyday analog servos, you can use any microcontroller or driver. They're good for beginners who want to make stuff move and the mini pan tilt kit is an easy way to give whatever you're making both left-right and up-down motion. This pan tilt kit uses 2 SG90 micro servos. (None, that the little servo arms that come with the servo might not always fit perfectly and might have to use a Stanley knife or something similar to make them shorter)

Mini Pan-Tilt Kit for SG90 servo Technical Details:

Mini Pan-Tilt Kit for SG90 servo Dimensions:

  • Base: 37mm x 33mm x 3mm / 1.5" x 1.3" x 0.1"
  • Mounting Hole Distances: 30mm x 26mm / 1.2" x 1"
  • Standing Height (zero tilt): 67mm / 2.6"
  • Top Platform: 38mm x 36mm / 1.5"x 1.4"
  • Weight: 37g

[learn_more caption="Example Sketch & Diagram"]

Pan tilt diagram
Code
#include <Servo.h>

const int SERVOX=9; 
const int SERVOY=10; 
const int POTX=0; 
const int POTY=1; 

Servo myServox;
Servo myServoy;
int valX = 512; 
int valY =512; 
void setup() 
{
 myServox.attach(SERVOX);
 myServoy.attach(SERVOY);
}

void loop()
{
 valX = analogRead(POTX); 
 valX = map(valX, 0, 1023, 0, 179); 
 myServox.write(valX); 
 delay(15); 

 valY = analogRead(POTY); 
 valY = map(valY, 0, 1023, 0, 179); 
 myServoy.write(valY); 
 delay(15); 
}

[/learn_more]