This item has closed 3 buyers bought 5 items
View other items offered by BotShop3178

Similar products

Mini Pan-Tilt Kit for SG90 servo
Sold

Mini Pan-Tilt Kit for SG90 servo

New 8 were available
R41.78
Shipping
R65.00 Standard shipping applies to orders under R100.00, in most areas in South Africa. R35.00 Standard shipping applies to orders over R100.00. Some areas may attract a surcharge surcharge. This will be calculated at checkout if applicable.
Check my rate
The seller has indicated that they will usually have this item ready to ship within 3 business days. Shipping time depends on your delivery address. The most accurate delivery time will be calculated at checkout, but in general, the following shipping times apply:
 
Standard Delivery
Main centres:  1-3 business days
Regional areas: 3-4 business days
Remote areas: 3-5 business days
Buyer protection
Get it now, pay later

Product details

Condition
New
Location
South Africa
Product code
KIT-051
Bob Shop ID
614718287


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]