K8097

Hi,

  • Can I command half steps, or 1/4 steps with this card and driver ?
  • How to get more delay than speed=255 between two steps ?
    Thanks

Sorry, the unit does not feature half and quarter step.

[quote=“eseses”]

  • How to get more delay than speed=255 between two steps ?
    Thanks[/quote]

If you want more delay between steps, you can do this(C#):

SMC.Move(1,1,255);
System.Thread.Sleep(x);
SMC.Move(1,1,255);

Where x represents a longer delay (in ms) between steps

Greetz Deekay