Shop OBEX P1 Docs P2 Docs Learn Events
Cannot get the Parallex Standard servo to work — Parallax Forums

Cannot get the Parallex Standard servo to work

king.osloking.oslo Posts: 2
edited 2010-11-20 04:11 in Robotics
Hello there,

I am working with this servo: http://www.jameco.com/Jameco/Products/ProdDS/283021%20Manual.pdf

I understand, that to get the servo to hold a center position, you send pulses of 5VDC with 1.5ms duration at 20ms intervals.

What are the specs of the signal to get the servo to turn to extreme right, and left positions?

Thank you.

Kind regards,
Marius

Comments

  • hover1hover1 Posts: 1,929
    edited 2010-11-19 18:34
    The normal settings would be 1.0ms for one extreme and 2.0ms for the other. Each servo has physical stops inside which determine to extreme positions. You can experiment and vary the end pulse width for the particular servo to determine where the physical stops are.

    Jim
    king.oslo wrote: »
    Hello there,

    I am working with this servo: http://www.jameco.com/Jameco/Products/ProdDS/283021%20Manual.pdf

    I understand, that to get the servo to hold a center position, you send pulses of 5VDC with 1.5ms duration at 20ms intervals.

    What are the specs of the signal to get the servo to turn to extreme right, and left positions?

    Thank you.

    Kind regards,
    Marius
  • ercoerco Posts: 20,256
    edited 2010-11-19 22:18
    ' {$STAMP BS2}
    ' {$PBASIC 2.5}
    counter VAR Word
    FOR counter = 1 TO 100
    PULSOUT 1, 750
    PAUSE 20
    NEXT

    This code is from the link you provided. Center servo pulsout value=750, stock extremes are 500 and 1000.
  • king.osloking.oslo Posts: 2
    edited 2010-11-20 04:11
    I had success with .4ms and 2.2ms with 20ms between pulses.M
Sign In or Register to comment.