RAMP SPEED Servo controller
I am back again but with a new problem. Finally my servos are moving through serial commands thanks to stefan and mike.
I have a robotic arm(self made) in which i have three servos. As soon as the servo board is turned on the robotic arm is reset to default position but it moves to the initial speed at ramp speed of 0(max). I want to slow that down. the documentation has a new default position but that doesn't have a ramp speed as an option. where should i change it in the firmware
I have a robotic arm(self made) in which i have three servos. As soon as the servo board is turned on the robotic arm is reset to default position but it moves to the initial speed at ramp speed of 0(max). I want to slow that down. the documentation has a new default position but that doesn't have a ramp speed as an option. where should i change it in the firmware
Comments
I guess
you have to add
in the initilise loop sepction
@Beau Schwabe from Parallax:
it would be very good if you add a pre-set value for the ramp and for servos enabled/disabled
best regards
Stefan
"it would be very good if you add a pre-set value for the ramp and for servos enabled/disabled"
- Why not just set the ramp to the same default "Set" position?
- With using the larger EEPROM, you can set the default servo position and if it's enabled or disabled. The Propeller Servo Controller USB firmware makes use of a feature similar to this. The PSC firmware just provides a wrapper for the Servo32 object
Example:
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Beau Schwabe
IC Layout Engineer
Parallax, Inc.
s=serial('com3','baud',2400);
s.readasyncmode='continuous';
s.timeout=2;
s.inputbuffersize=25555;
fopen(s);
X=[33,83,67,0,63,0,2,13];
fwrite(s,X,'char');
and I haven't made any change in the firmware
Are you a T1000 Terminator by any chance?