The number of pulses wanted does not match the actual #48
-
|
hello! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
@githubzbx You did not mention the motor and motor driver being used, nor did you supply your code, so it is difficult to determine the cause of your issue. Things to check are that when you call set_pin_mode_stepper, the interface type selected is correct. For example, when using a TB6600-like driver, the interface type is 1. Also, if you use a TB600-like driver, the microstep selection switches are correctly set on the driver. There is an excellent article on interfacing stepper motors with an Arduino. There is a section about using AccelStepper, the library that Telemetirx uses. You might try running the example in the article or some of the examples in the Accelstepper library to take Telemetrix out of the equation and see if you are getting different results. Please let me know if this answers your question or not. |
Beta Was this translation helpful? Give feedback.
@githubzbx You did not mention the motor and motor driver being used, nor did you supply your code, so it is difficult to determine the cause of your issue. Things to check are that when you call set_pin_mode_stepper, the interface type selected is correct. For example, when using a TB6600-like driver, the interface type is 1. Also, if you use a TB600-like driver, the microstep selection switches are correctly set on the driver.
There is an excellent article on interfacing stepper motors with an Arduino. There is a section about using AccelStepper, the library that Telemetirx uses.
You might try running the example in the article or some of the examples in the Accelstepper library to take…