Hello, and sorry for my bad english...
I have arduino mega, and ladyada's motor shield v1.0(Motor Shield - Arduino motor/stepper/servo control) and i want connect 4 DC motors(TT Geared Motor with Back Shaft (180rpm 6v L Shape) - DFRobot).
Mega powered by USB or 9v jack, Shield powered by 5xAAA battery. I want test one motor, wired him to M1 terminal on motor shield. Then i run typical code for test:
#include <AFMotor.h>
AF_DCMotor motor(1);
void setup() {
Serial.begin(9600); // set up Serial library at 9600 bps
Serial.println("Motor test!");
motor.setSpeed(200); // set the speed to 200/255
}
void loop() {
Serial.print("tick");
motor.run(FORWARD); // turn it on going forward
delay(10000);
Serial.print("tock");
motor.run(BACKWARD); // the other way
delay(10000);
Serial.print("tack");
motor.run(RELEASE); // stopped
delay(1000);
}
but motor goes not work
When i connect motor directly to battery module, he work.
But when motor connected to shield, he does not work, but sometimes it makes a noise. I use the voltmeter to test a voltage. On the shield's ext_pwr 8V, on the unplugged terminals 6v, but when i plug in motors - voltage drops to 0 ![]()
Please help me fix this trouble...


