If I follow this connection and power up the system, the motor doesn't spin when sketch is running. But if I touch it I can feel something like kicking and if I am in a silent room I can hear a noise at the coils inside the motor.
When I power off the Arduino the motor HALTS.
Seems like a conflict between the driver jumper step settings and the code.
The code i use:
// MultiStepper.pde
// -*- mode: C++ -*-
//
// Shows how to multiple simultaneous steppers
// Runs one stepper forwards and backwards, accelerating and decelerating
// at the limits. Runs other steppers at the same time
//
// Copyright (C) 2009 Mike McCauley
// $Id: MultiStepper.pde,v 1.1 2011/01/05 01:51:01 mikem Exp mikem $
#include <AccelStepper.h>
// Define some steppers and the pins the will use
AccelStepper stepper3(AccelStepper::FULL2WIRE, 10, 11);
void setup()
{
stepper3.setMaxSpeed(300.0);
stepper3.setAcceleration(100.0);
stepper3.moveTo(1000000);
}
void loop()
{
stepper3.run();
}
I don't think you have given us a link to the datasheet for the motor you are using.
And please note that your link to the DM860 manual is not a downloadable PDF - it should be.
What power supply are you using?
Make a drawing of all your wiring connections and post a photo of the drawing. A photo of the hardware itself is no good.