Parallax Pico Servos
StevenL1124
Posts: 5
Hi,
My team and I are working on a senior design project which uses parallax pico servos coupled with BASIC stamp programming language. Unfortunately, my programming experience is limited to what I have learned using the the continuous rotation servos which come with the BOE-Bot, and I have no idea how to program these new pico servos. I tired looking through example code parallax posts with other programming kits, but had no luck. Can anyone point me towards basic programming syntax for these pico servos? I only need them for a pretty basic task, so hints or examples would be very helpful.
THANKS
My team and I are working on a senior design project which uses parallax pico servos coupled with BASIC stamp programming language. Unfortunately, my programming experience is limited to what I have learned using the the continuous rotation servos which come with the BOE-Bot, and I have no idea how to program these new pico servos. I tired looking through example code parallax posts with other programming kits, but had no luck. Can anyone point me towards basic programming syntax for these pico servos? I only need them for a pretty basic task, so hints or examples would be very helpful.
THANKS
Comments
The only difference (except size and power drain) is that continuous motion servos' speed and direction is set by the pulse width while standard servos (including pico servos) position themselves to a position set by the pulse width.
-Phil
DO
PULSOUT 14, 750
PAUSE 20
LOOP
is that right? assuming my servo were off pin 14...
these servos are limited to roughly 180 degrees of travel, would this place me in the middle of this range?
-Phil