Motor Stepper Example


Results 1 to 40 of 135

Threaded View

  1. #24
    Join Date
    May 2008
    Location
    Italy
    Posts
    825


    Did you find this post helpful? Yes | No

    Default Re: Motor Stepper Example

    Check out all the labels in your code! You have names that you never call. Example:

    goto close1 your goto will never goto label close1, since you have named it close1(reverse gripper stepper):.

    Either move the : to the correct place and rem the rest of the label or place the correct name under the goto instruction.

    Close1: ' (reverse gripper stepper)

    GOTO Close1


    or

    close1(reverse gripper stepper):

    GOTO close1(reverse gripper stepper)


    Timing is not that critical. If too long your motor will run slowly if time delay is too short your motor will not run at all.

    Cheers

    Al.
    Last edited by aratti; - 4th March 2011 at 16:53.
    All progress began with an idea

Members who have read this thread : 5

You do not have permission to view the list of names.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts