Hi, I will go straight into the problem
In the image I connected these to M1
and used this code to test
#include <AFMotor.h>
AF_DCMotor motor(1);
void setup() {
Serial.begin(9600);
motor.setSpeed(255);
}
void loop() {
motor.run(FORWARD);
delay(1000);
motor.run(BACKWARD);
delay(1000);
motor.run(RELEASE);
delay(1000);
}
but the motor does not seem to moving, I don't know where did I do wrong. Did I do something on the code? or was the wiring bad? Any help is appreciated thanks
(the DC did run if I connect one of the wire to the GND between the Ms but can't seem to control it, removing power jumper doesn't change any either. Servos and other components seems to work normally. M2/3/4 doesn't work too)
Here's another picture with power connected


