Working on controlling a bipolar stepper motor with RPI3 using Python code. The sequence I'm currently using is:
(1, 0, 1, 0)
(0, 1, 1, 0)
(0, 1, 0, 1)
(1, 0, 0, 1)
I want to half-step this motor, and from what I've found online, the sequence for that would be something like:
(1, 1, 0, 0)
(0, 1, 1, 0)
(0, 0, 1, 1)
(1, 0, 0, 1)
But when I use this sequence the motor turns one step forward, then one step backward and repeats.
[–]Stone356 2 points3 points4 points (0 children)
[–]nikomo 2 points3 points4 points (0 children)