Shop OBEX P1 Docs P2 Docs Learn Events
I need some help with a quckstart board please. — Parallax Forums

I need some help with a quckstart board please.

https://imgur.com/a/UGilK0T

I've got it wired up as shown there, and loaded the program to the eeprom. Nothing happens though, light on board goes green and no noise from the servo.
I did confirm the servo works on an RC car.

Any help would be appreciated.

Comments

  • Your indents with the repeat instruction may be the problem. Download the doc for Propeller Education Kit. Kit says not available but the book that went with it downloadable gold. Start there and have fun.
  • There's nothing wrong with the indents, but that's not the best way to do a delay. The Spin command waitcnt is designed for that purpose. Also, you need a bare repeat at the end of your program to keep it running.

    I'm not familiar with the Servo32v7 object. Does it automatically set the desired pin to an output? If not, you may have to do that first.

    -Phil
  • There's nothing wrong with the indents
    Actually, there is. The first repeat is infinite and has no other code inside

  • Wuerfel_21 wrote: »
    There's nothing wrong with the indents
    Actually, there is. The first repeat is infinite and has no other code inside

    That did it!!! Thank you!
  • Oh cripes! I missed the first repeat. Sorry.

    -Phil
Sign In or Register to comment.