Servo Speed
Archiver
Posts: 46,084
Is there a way to control the speed at which a r/c servo moves from position to position?· On some of my applications I would like the servo to move from it's neutral position to a desired position "slowly".· Can this be done with software?
Also·I seem to remember coming upon a website that showed interfacing a r/c servo to a "larger" electric motor to get the positioning capabilities of the servo with a torque capabilities of the "larger" motor.· Does anyboby know of that site or am I dreaming.
Thanks Brian Mc.
Also·I seem to remember coming upon a website that showed interfacing a r/c servo to a "larger" electric motor to get the positioning capabilities of the servo with a torque capabilities of the "larger" motor.· Does anyboby know of that site or am I dreaming.
Thanks Brian Mc.
Comments
The following routine will advance a servo from off to full on slowly:
runfull
for x = 300 to 1300 step 25
pulsout 0, x
pause 200
next
return
You can vary the rate at which it turns on by changing the step value or the
pause value.
Sid
several intermediate positons between the starting and desired final
position.
For example if you want go from position 110 to 120 you may command
steps like 112;114;116 etc... Of course smaller the steps slower the
speed. If needed even more slow,you cand add a pause between the
commands. With direct pulsout command you may use the same method but
framing time around 50 Hz need to be preserved to avoid the "jumping"
the servo. This method requires that the software "remember"
the last position.
The strongest R/C servos are here;
http://www.vantec.com
ACJacques
Brian & Sandy McMillion wrote:
>
> Is there a way to control the speed at which a r/c servo moves from
> position to position? On some of my applications I would like the
> servo to move from it's neutral position to a desired position
> "slowly". Can this be done with software?
> Also I seem to remember coming upon a website that showed interfacing
> a r/c servo to a "larger" electric motor to get the positioning
> capabilities of the servo with a torque capabilities of the "larger"
> motor. Does anyboby know of that site or am I dreaming.
> Thanks Brian Mc.
-William
Original Message
From: Brian & Sandy McMillion
To: Stamps Forum
Sent: Sunday, December 10, 2000 6:06 PM
Subject: [noparse][[/noparse]basicstamps] Servo Speed
Is there a way to control the speed at which a r/c servo moves from position to position?· On some of my applications I would like the servo to move from it's neutral position to a desired position "slowly".· Can this be done with software?
Also·I seem to remember coming upon a website that showed interfacing a r/c servo to a "larger" electric motor to get the positioning capabilities of the servo with a torque capabilities of the "larger" motor.· Does anyboby know of that site or am I dreaming.
Thanks Brian Mc.
Tim
[noparse][[/noparse]Denver, CO]
Original Message
From: Brian & Sandy McMillion [noparse][[/noparse]mailto:brianmcm@wt.net]
Sent: Sunday, December 10, 2000 4:06 PM
To: Stamps Forum
Subject: [noparse][[/noparse]basicstamps] Servo Speed
Is there a way to control the speed at which a r/c servo moves from position to position?· On some of my applications I would like the servo to move from it's neutral position to a desired position "slowly".· Can this be done with software?
Also·I seem to remember coming upon a website that showed interfacing a r/c servo to a "larger" electric motor to get the positioning capabilities of the servo with a torque capabilities of the "larger" motor.· Does anyboby know of that site or am I dreaming.
Thanks Brian Mc.