Robot Arm C

Locked
User avatar
Primate
Member
Member
Posts: 409
Joined: January 15th, 2009, 4:34 pm
Division: C
State: NY
Has thanked: 0
Been thanked: 0

Re: Robot Arm C

Post by Primate »

starpug wrote:Considering the fact that an electromagnet would probably end up counting as another motor, no I'm not planning on an electromagnet.
Actually, they released an clarification about that:
WHAT IS THE OFFICIAL DEFINITION OF A MOTOR? IS AN ELECTROMAGNET A MOTOR?

A motor is a machine that converts energy into mechanical motion. An electromagnet isn't a motor since it only creates a magnetic field.
events 2012 gravity vehicle, robot arm, thermodynamics, tps
User avatar
sj
Member
Member
Posts: 191
Joined: March 12th, 2009, 7:37 am
Division: C
State: NJ
Has thanked: 0
Been thanked: 0

Re: Robot Arm C

Post by sj »

I have a question... Looking at various R/C systems i realized that they are probably all designed so that when the stick is pushed the servo actuates and then when the stick centers the servo recenters. Is there a way to make it so that the stick would proportionally control the speed at which the servo actuates and then when the stick is centered the servo holds its position?

Perhaps someone who has already built a custom R/C arm with servos could explain how they control it?

Thanks!
2011 Nationals Results : Sumo Bots 2nd, Helicopters 4rd, Mission Possible 4th, Towers, 9th
WWP SOUTH 3rd At NATS!!!!!

2012 Events: Robot Arm, Towers, Gravity Vehicle
chalker
Member
Member
Posts: 2107
Joined: January 9th, 2009, 7:30 pm
Division: Grad
State: OH
Has thanked: 1 time
Been thanked: 56 times

Re: Robot Arm C

Post by chalker »

sj wrote:I have a question... Looking at various R/C systems i realized that they are probably all designed so that when the stick is pushed the servo actuates and then when the stick centers the servo recenters. Is there a way to make it so that the stick would proportionally control the speed at which the servo actuates and then when the stick is centered the servo holds its position?

Perhaps someone who has already built a custom R/C arm with servos could explain how they control it?

Thanks!

Many systems designed for RC cars / planes already have this feature on at least 1 channel, usually via not having springs that return that stick to center, or with more sophisticated computer code to simulate such things.

Student Alumni
National Event Supervisor
National Physical Sciences Rules Committee Chair
User avatar
ichaelm
Member
Member
Posts: 440
Joined: October 23rd, 2008, 3:10 pm
Division: Grad
State: PA
Has thanked: 0
Been thanked: 0
Contact:

Re: Robot Arm C

Post by ichaelm »

I completely understand why you'd want to do that! I had to do that before, just not with RC equipment. I used to control my arm with a gamecube controller, and even if I could remove the springs, I didn't want to have to leave the stick in a certain position just to keep the arm poining a certain way. Basiclaly, I wanted the stick to have a spring return to center, but instead of the stick controlling the position of the servo, it should control the speed of the servo, like you want. This is a little like using the RC system to control an ESC, except you still need the servomechanism to counteract the force of gravity acting on the arm. I did it using a PIC microcontroller, since I was already using it for all the other programming (I built my own servos, essentially). You could easily do it with something simpler like an Arduino or a BASIC stamp. I don't know of any other way, unless some radio sets come with that feature, like chalker said.
User avatar
harryk
Exalted Member
Exalted Member
Posts: 268
Joined: March 17th, 2010, 12:28 pm
Division: Grad
State: TX
Has thanked: 0
Been thanked: 0

Re: Robot Arm C

Post by harryk »

sj wrote:I have a question... Looking at various R/C systems i realized that they are probably all designed so that when the stick is pushed the servo actuates and then when the stick centers the servo recenters. Is there a way to make it so that the stick would proportionally control the speed at which the servo actuates and then when the stick is centered the servo holds its position?
Now I'm not a hundred percent sure this will work, but I think if you remove the pot from the gearing of the servo it will do what you want. The servo will still think its centered even though it's actually rotating so when you center the joystick it should stop moving, however I don't know if it will continue to hold it there or not
Colorado School of Mines
"Yes, he likes that; Alfie! Though personally he prefers to be called Stormaggedon, Dark Lord of All" - The Doctor, Closing Time
User avatar
Primate
Member
Member
Posts: 409
Joined: January 15th, 2009, 4:34 pm
Division: C
State: NY
Has thanked: 0
Been thanked: 0

Re: Robot Arm C

Post by Primate »

harryk wrote:
sj wrote:I have a question... Looking at various R/C systems i realized that they are probably all designed so that when the stick is pushed the servo actuates and then when the stick centers the servo recenters. Is there a way to make it so that the stick would proportionally control the speed at which the servo actuates and then when the stick is centered the servo holds its position?
Now I'm not a hundred percent sure this will work, but I think if you remove the pot from the gearing of the servo it will do what you want. The servo will still think its centered even though it's actually rotating so when you center the joystick it should stop moving, however I don't know if it will continue to hold it there or not
Center stick sends a PWM length of 1500 microseconds (ish), so that should hold center. I agree that removing the pot should do the trick: it's like you're modifying the servo for continuous rotation, save for the last step where you remove the mechanical stop.
events 2012 gravity vehicle, robot arm, thermodynamics, tps
User avatar
sj
Member
Member
Posts: 191
Joined: March 12th, 2009, 7:37 am
Division: C
State: NJ
Has thanked: 0
Been thanked: 0

Re: Robot Arm C

Post by sj »

Thanks for the replies! I ended up finding a decent usb servo control board with 18 I/O so i grabbed that and a few potentiometers and I will probably end up making a master slave system. Any tips about that would be greatly appreciated.
2011 Nationals Results : Sumo Bots 2nd, Helicopters 4rd, Mission Possible 4th, Towers, 9th
WWP SOUTH 3rd At NATS!!!!!

2012 Events: Robot Arm, Towers, Gravity Vehicle
User avatar
Primate
Member
Member
Posts: 409
Joined: January 15th, 2009, 4:34 pm
Division: C
State: NY
Has thanked: 0
Been thanked: 0

Re: Robot Arm C

Post by Primate »

sj wrote:Thanks for the replies! I ended up finding a decent usb servo control board with 18 I/O so i grabbed that and a few potentiometers and I will probably end up making a master slave system. Any tips about that would be greatly appreciated.
I haven't tried it myself (so those who have, please chime in!), but it seems like a waste of time to me. If you're custom-building your arm with servos and computer-control, why not go almost completely autonomous? The reason a master/slave system works is because we've spent 15 years developing internal kinematics for our arms, and we can map that to the robot nicely. But a computer, correctly calibrated, is even better at simultaneously controlling four or five joints.

I'd let the computer do almost all the work, pausing only briefly before picking up or dropping an object for minor manual position modifications. If you practice, you'll know exactly when to jump in and won't sacrifice any accuracy. It'll also save you a good chunk of work.
events 2012 gravity vehicle, robot arm, thermodynamics, tps
User avatar
illusionist
Member
Member
Posts: 942
Joined: March 20th, 2010, 4:13 pm
Division: C
State: MI
Has thanked: 0
Been thanked: 1 time

Re: Robot Arm C

Post by illusionist »

I actually submitted a clarification of whether or not the robot can be completely autonomous, but haven't heard back yet (understandably). But I agree. If you're going to custom build an arm from scratch, why not just make it autonomous?
User avatar
ichaelm
Member
Member
Posts: 440
Joined: October 23rd, 2008, 3:10 pm
Division: Grad
State: PA
Has thanked: 0
Been thanked: 0
Contact:

Re: Robot Arm C

Post by ichaelm »

I think the better question to ask here is WHY make it autonomous, not why not. A team that gets maximum score with an autonomous 4-motor robot will not beat one that gets maximum score with 4 motors that's manually controlled. Time is not scored. It will come down to the quality of technical documentation. So why put in all the extra effort with inverse kinematics and making is sturdy enough to be dead accurate with those nails, when it doesn't help your score at all? The only answer I can think of is because it would be fun, of course! But in terms of building a better bot, I can't justify it. If I were you, I'd put more time into making sure the physical bot itself is reliable, and of course some 3D modeling to win the all-important second tiebreaker!
Locked

Return to “2012 Build Events”

Who is online

Users browsing this forum: No registered users and 9 guests