Having issues driving 2 motors with Dual VNH5019

I am creating a sumo bot and cannot get both motors to turn at once. Each motor works individually if I upload a sketch running just 1 motor. I am using a onesheeld to interface via bluetooth and when I activate it, only motor 1 spins.

Here is my code:

void loop() 
{
  if(GamePad.isUpPressed())
  {
  md.setSpeeds(400,400);
  delay(1000);
  md.setSpeeds(0,0);
  delay(1000);
  }
}

Hello.

I did not see anything obviously wrong with your code, but I do not think it is causing the behavior you are seeing.

You mentioned using a 1Sheeld with the Dual VNH5019 Motor Driver Shield for Arduino. Can you post pictures of your setup clearly showing how you have everything connected?

To narrow down the problem, can you remove the 1Sheeld shield from your system and see if the dual VNH5019 shield works with your Arduino by running the Demo.ino example program from our Dual VNH5019 Motor Driver Shield Arduino library?

- Amanda

For whatever reason, just connecting my arduino to a different computer and uploading the exact same code, it is working now.