Guru’s
First time member, first time post.
For some reason I can’t run both motors at the same time with the V2.2 motor shield.
I followed the code instructions but they do not both fire off. Sample code below.
void loop()
{
motor.speed(0, 100);
motor.speed(1, 100);
The only way I can get the second channel to work if I do this:
void setup()
{
// initialize
motor.begin();
digitalWrite(9, HIGH);
digitalWrite(10, HIGH);
}
Any help would be great.
Thank you.
Joey