Tilt Servo Bracket SG90
Tilt Servo Bracket for SG90 Micro Servo – Pan/Tilt Mount Kit
Overview:
The Tilt Servo Bracket for SG90 is a lightweight, durable mounting frame designed to hold micro servo motors like the SG90 and SG92R. It allows for easy construction of pan/tilt camera or sensor systems, perfect for robotics, automation, and DIY electronics. The bracket can rotate in one or two axes, depending on the configuration, and is ideal for directional control of cameras, ultrasonic sensors, or IR modules.
Key Features:
Made for SG90/SG92R standard micro servo motors
Lightweight ABS or acrylic construction
Easy assembly with included screws
Tilt or full pan/tilt motion with dual servos
Perfect for Arduino, Raspberry Pi, and robotics projects
Pre-drilled servo horn holes for precise alignment
Technical Specifications:
Parameter | Specification |
---|---|
Compatible Servo | SG90, SG92R (9g size) |
Material | ABS plastic / acrylic (varies by version) |
Rotation Axes | 1-axis (tilt) or 2-axis (pan/tilt with two brackets) |
Mounting Holes | Pre-cut for SG90 horn alignment |
Includes | Screws, servo horns, brackets (servo not included) |
Typical Applications:
DIY camera pan/tilt rigs
Line-of-sight laser pointers
Obstacle-avoiding robots
Object-tracking systems
Face tracking with OpenCV and Arduino
Arduino Wiring Guide (for Pan/Tilt):
If using 2 SG90 servos with Arduino:
Tilt Servo: Connect signal to D9
Pan Servo: Connect signal to D10
Power both with external 5V (not from Arduino 5V pin!)
Arduino Sample Code:
#include <Servo.h> Servo panServo; Servo tiltServo; void setup() { panServo.attach(10); tiltServo.attach(9); } void loop() { for (int pos = 0; pos <= 180; pos++) { panServo.write(pos); tiltServo.write(180 - pos); delay(15); } }
Resources:
📹 YouTube Tutorial – Pan/Tilt SG90 with Arduino: https://youtu.be/cgFVEk7z46U?si=ZFm0iRQjDqAKU9EN