Hello,
I am willing to run my cnc using tb6600 but motors dont move. i checked them with follwoing program-
***********
#define dirPin 40
#define stepPin 46
void setup() {
// Declare pins as output:
pinMode(stepPin, OUTPUT);
pinMode(dirPin, OUTPUT);
// Set the spinning direction CW/CCW:
digitalWrite(dirPin, HIGH);
}
void loop() {
// These four lines result in 1 step:
digitalWrite(stepPin, HIGH);
delayMicroseconds(70);
digitalWrite(stepPin, LOW);
delayMicroseconds(70);
}
**************
Note for delay is 70. stepper running fine at this delay.
But on repetier STEPPER_HIGH_DELAY 70 resulting in no move.
Also applied -
#define X_ENABLE_ON 1
#define Y_ENABLE_ON 1
#define Z_ENABLE_ON 1
(Note- No of extruder and thermistor is zero for CNC purspose)
But no luck. Stepper not moving
What next to do?