byte dirPin = 9;
byte stepPin = 8;
digitalWrite(dirPin, HIGH);
for (int n = 0; n < 1000; n++) {
digitalWrite(stepPin, HIGH);
delayMicroseconds(500);
digitalWrite(stepPin, LOW);
delayMicroseconds(500);
}
Delta Asda B2 doesn't want to work! Arduino pin9 - dir pin, pin8 - step pin. My connection is as follows: Arduino pin9 => pin43 CN1,Arduino pin8 => pin39 CN1, Arduino GND => pin41.37 CN1.
Is the connection method correct? Should I change parameters in DELTA ASDA B2 control?
I have not and I will not try without more information. Post a link to the technical information on the hardware and let us know what Arduino you plan on using. It is doing what your code is telling it, nothing. You need to define your output pins.