Beginner: Motorised Camera Pan and Tilt
Dr_Zoom
Posts: 3
Hi,
I'm new at this, and need some help getting started on my project. I have done a lot of programming before, but nothing like this.
I would like to build the following:
A small unit that can pan and tilt my camcorder (350 grams).
It should fit on top of my tripod and fit in a 1.0" pipe. ( I know.. tiny)
I should be able to have wireless control (via remote control or wifi or Bluetooth ect)
It should be able to program it. ( Eksampel: if I press "1" on the remote control then turn left 5° at x speed and 3° up at y speed)
Run on batteries
How do I get started? Can I use the "BASIC Stamp 2 Module" as my core? What motor(s) should I choose?
Thank you for any and all help!
I'm new at this, and need some help getting started on my project. I have done a lot of programming before, but nothing like this.
I would like to build the following:
A small unit that can pan and tilt my camcorder (350 grams).
It should fit on top of my tripod and fit in a 1.0" pipe. ( I know.. tiny)
I should be able to have wireless control (via remote control or wifi or Bluetooth ect)
It should be able to program it. ( Eksampel: if I press "1" on the remote control then turn left 5° at x speed and 3° up at y speed)
Run on batteries
How do I get started? Can I use the "BASIC Stamp 2 Module" as my core? What motor(s) should I choose?
Thank you for any and all help!
Comments
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
http://perfectaperture.com/robb
If you do decide to go ultra small, take a look at the model helicopter industry. They have some small servos that are really powerful.
As for wireless, parallax sells a pretty small wireless reciever module. Any wireless system that you choose will probably require that you have another BS2 to transmit to the stand.
Mostly, I think this is a hardware project.
What does your RF range have to be? I've used the Lynx tranceivers for similar projects but they are not good for more than about 50' unless you are willing to build them their own board with a bigger ground plane that anticipates the outer shape of your 'thing'. IR would probably be the cheapest and easiest to implement but it has some drawbacks in terms of daylight interference if you are using this outdoors.
http://www.parallax.com/Store/Accessories/Communication/tabid/161/CategoryID/36/List/0/Level/a/ProductID/111/Default.aspx?SortField=ProductName,ProductName
The range is more than good enough for your project, and the're relatively cheap too. Not to mention small...
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
http://perfectaperture.com/robb
http://www.servocity.com/html/spt200_pan___tilt_system.html
It won't fit in your 1" tube, but I think that's a pipe dream anyway. (Alright, bad pun...) Anyway, You'll still need some sort of microcontroller system. Question: Does the tilt, pan system come with servos? I couldn't tell from their documentation... Almost hope not, since you'll probably want continuous rotation servos instead of standard servos.
Anyway, they also have a joystick that you could use. Looks about travel size:
http://www.servocity.com/html/2_servo_joystick.html
Anyway, good site. It's going in the favorites.
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
- Stephen
torque = rFsin(theta)
Where:
r = radius
F = Force applied
Theta = angle of applied force.
The force applied is the gravitational pull by the camera, and the angle is how tilted this is. You'd do best to use the worst case scenario for this (1), but if you never expect your camera to go horizontal then you can choose your own value. Keep in mind that R is the radius distance to the center of mass of the camera, not the edge. The center of mass can be found·by dangling teh camera from a string in different orientations in each of the three dimensions.
The equation for force applied due to gravity is
F = mg
where:
m is mass
g is gravitational acceleration (9.8 m/s2 or 32 f/s2)
You'll have to run each component through the equations, then find the total torque reguired for an axis. Then simply choose the motor that gives you your requirements. Keep in mind that you must use the same units in all of your equations: metric or imperial. It's your choice, just don't confuse them. Finally, this is for one rotational axis. You'll want to do the same for the second if torque is an issue.
Hope you made it through the physics review...