Home | Product Categories | Other | ROB-10335

Pan/Tilt Bracket

sku: ROB-10335

Description: This pan/tilt bracket consists of two brackets and all the hardware you need to attach them to make a pan/tilt mechanism using two servo motors. We recommend our small servo motors listed below.

Documents:

Pricing

In stock

5.95
5.36
4.76

1,266 in stock

price
10-99
100+



Add to Wish List


Comments 32 comments

  • http://www.youtube.com/watch?v=0DI92Z5AuVc
    This project shows how to make good use of this one. First Arduino and then the Solar Follower, I’m so proud to be Italian.

  • Hi;
    Can you post the sample code for using a joystick to control the pan/tilt bracket? Having finally got it assembled correctly (I think the assembly instructions are dodgy) and working in 2 axes (using Sweep) I’m still having trouble with the joystick control…..
    – thanks

    • I know this is very late, but here is some code that I made up between the joystick quickstart sketch and some servo example code.
      Enjoy!

      #include  "Servo.h"  
      // Store the Arduino pin associated with each input  
      const byte PIN_ANALOG_X = 0;  
      const byte PIN_ANALOG_Y = 1;  
      Servo pan;  
      Servo tilt;  
      long currentX=0;  
      long currentY=0;  
      void setup() {  
        Serial.begin(9600);  
        pan.attach(8);  
        tilt.attach(9);  
      }  
      void loop() {  
        currentX = map((long)analogRead(PIN_ANALOG_X), 0, 1023, 0, 180);  
        currentY = map((long)analogRead(PIN_ANALOG_Y), 0, 1023, 0, 180);  
        Serial.print("X: ");  
        Serial.print(currentX);  
        Serial.print(", ");  
        Serial.print("Y: ");  
        Serial.print(currentY);  
        Serial.println();  
        pan.write(currentX);  
        tilt.write(currentY);  
      }
      
  • can they work with larger servo’s then the small?
    the decription says they are recommended but not that they are the only size that fits so im not sure.

    • check the dimensions of each and see if they fit. the small servos work without modification, bigger servos might take some modification.

  • What’s the weight of this assembly?

  • These are made by Dagu, right? I can confirm that this work pretty awesomely with decent servos. Which shouldn’t be a problem if you get it from Sparkfun (Unlike me, who got mine from somewhere else and it came with $1 terrible servos that quickly broke)

    • Recently DAGU changed the servos used for these kits. The teeth on the gears are thicker now. Admittely this is a light weight design for small robots.

  • Nice bracket, but units on the dimensional drawing would be very nice to have!

  • Whats the max weight this can support?

    • This pan/tilt kit was designed primarily for lightweight IR and ultrasound sensors commonly available. The two large mounting brackets are interchangeable with each having a different pattern.
      It is not intended for heavy loads.

    • That’s really dependent on the servo as the brackets are pretty actually pretty strong, but meant for lighter loads. In my opinion though, if you can fit a servo into the bracket and the SERVO can hold the weight, the bracket will too.

      • Yeah, it would take a lot of weight for the bracket to collapse under load. It’s more up to the servo you’re using.

  • Somehow I managed to buy the Medium servo. As a note to others, the medium servo is too big for the inside servo, so the small is Required. Good news is, I can use the medium for the lower/pan servo.

  • I got the brackets and a set of HS-55 servos. So far it’s a real challenge to follow the diagrams and get things working. I don’t see how you mount the servo to the bracket in panel 3 and have enough clearance for panel 4 to allow the bracket to actuate. This will take some hardware hacking

  • I want to get a 10+ watt RGB led with a narrow beam lens and stick it on here. Disco light!

  • Construction is a bit more difficult than I expected. The self-tapping screws must be really soft because I keep stripping the drive slot. To anyone trying to follow the directions, I recommend using as many washers as possible, because my bracket does not tilt as the pan head (from step three) gets in the way of the motion (in step four). Will try again and see.

  • I finally got this to work, but that was after every possible wrong step taken. Examine the directions VERY carefully. In the end, my stubborness won out over my ineptitude. But it was a close battle.

  • can they work with http://www.sparkfun.com/products/9064 ?

  • Only problem is the small servo you recommend doesn’t come with the disc only horns.
    The servo you show in the picture above isn’t the one you recommend ?

  • Since both platforms are identical, one bracket doesn’t fit inside the other and instead goes over to one side. Add washers for spacing and you’ll end up with even more horizontal offset. That means, whatever you mount on the end may be off center (depending on which holes you use).
    If you stack these platforms like I did, then the offset will increase with every additional joint. Elongated holes can be used for compensation, or the brackets can be bent to fit eachother better, but it’s just an extra hassle I wish I didn’t have to deal with.
    The last screw – the 3*8 one – get your adamantium screwdriver and unobtanium pliers ready, cause it’s gonna mess you up! I got a defective batch (with nuts looking like they were stepped on by an elephant). Tried screwing them in and stripped the thread like it was butter.

  • In case this is useful for anyone else, I made a 3d model of the bracket, which you can download here. It’s not meant to be exact, just to approximate the dimensions so you can integrate the bracket into your own 3d-designs for rapid prototyping, etc of components to go around the bracket.

  • It IS possible to fit a medium servo in the bracket. You have to bend the metal piece on the inside a bit with some pliers and kind of jerry-rig it together but I just did it and it works fine! Thanks sparkfun

    • So do you think a servo such as this one would fit? The dimensions are 29x13x30.
      http://www.servocity.com/html/hs-85mg__mighty_micro.html
      Do you think this will be able to move a 1 lb dome camera up and down?

  • Could you link to the servos you are using with the correct brackets?

  • great tool to have but the screws are easy to strip and its a pain to put together not to happy about trying to assemble it I now have a striped screw and a little ticked otherwise very cool.

  • A bit of modification with large servo for strong 3DOF
    http://files.madhak.com/vid/FILE0156.mov