The Motor plugs into the green screw terminals, and the shield is powered by 1 9V battery. You could also stack 2 shields and share one battery to power 2 motors without bulk.
PS im 15 years old
Remove these ads by
Signing UpStep 1: Parts List!
1 Transistor (I use 2N2219)
100 OHM Resister
1 Piece Cardboard
1 Screw Terminal
1 9V Snap
Misc Wire
Basic Soldering Stuff






































Visit Our Store »
Go Pro Today »




this code with put the motor at 100%, 50%, 0% :)
int motorPin = 11;
void setup() {
pinMode(11, OUTPUT);
}
void loop()
{
analogWrite(motorPin, 255); // Motor 100%
delay(5000);
analogWrite(motorPin, 127); // Motor 50% (almost)
delay(5000);
analogWrite(motorPin, 0);; // Motor 0%
delay(2500);
}