Running two motors

Post here about your Arduino projects, get help - for Adafruit customers!

Moderators: adafruit_support_bill, adafruit

Running two motors

Postby garethpletts » Wed Nov 07, 2012 8:58 pm

Hi,

Im relatively new to Arduino so would greatly appreciate some code advice.

I need to run two DC Motors using the Adafruit motor shield. I need to run one motor forward on M1 for 2450, then run another motor on M2 after M1 for 2600, then stop both of them for 30000, then repeat again.

I have managed to work out how to do one motor on its own (as shown below), but I cant work out how to run two motors as mentioned.


Code: Select all
AF_DCMotor motor1 (1, MOTOR12_64KHZ); // create motor #2, 64KHz pwm

void setup() {
  Serial.begin(9600);           // set up Serial library at 9600 bps
  Serial.println("Motor test!");
 
  motor.setSpeed(255);     // set the speed to 200/255
}

void loop() {
  Serial.print("tick");
 
  motor.run(FORWARD);      // turn it on going forward
  delay(2450);

  Serial.print("tack");
  motor.run(RELEASE);      // stopped
  delay(30000);
}


Does anyone know how this would be done?

Many thanks :)
garethpletts
 
Posts: 1
Joined: Wed Nov 07, 2012 8:45 pm

Re: Running two motors

Postby adafruit_support_bill » Thu Nov 08, 2012 6:09 am

The code you posted won't work. In fact it won't even compile. If you define your motor as "motor1" you have to use "motor1" in all the commands.
If you want to run 2 motors, you have to define 2 motors:
Code: Select all
AF_DCMotor motor1 (1, MOTOR12_64KHZ); // create motor #1, 64KHz pwm
AF_DCMotor motor2 (1, MOTOR12_64KHZ); // create motor #2, 64KHz pwm


When you want to run motor 1 you use "motor1" commands.
When you want to run motor 2 you use "motor2" commands.
User avatar
adafruit_support_bill
 
Posts: 15918
Joined: Sat Feb 07, 2009 9:11 am


Return to Arduino

Who is online

Users browsing this forum: No registered users and 9 guests

Stuff to buy from the Adafruit store and links to product documentation!


New Products [105]

Raspberry Pi[80]
 
FLORA[23]
 
Bunnie Studios[9]
 
FPGA[1]
 
mbed[11]
Arduino[60]
 
NETduino[14]
 
BeagleBone[24]
 
Android[6]
 
XBee[10]
More Dev Boards[30]


 
BoArduino[8]
 
SpokePOV[4]
 
TV-B-Gone[4]
 
MiniPOV[3]
 
SIM reader[3]
 
Microtouch[5]
 
Clocks & Watches[18]
 
Drawdio[4]
 
Brain Machine[1]
 
Game of Life[2]
 
MintyBoost[2]
More DIY Kits[16]


 
MaKey MaKey[3]
 
Tweet-a-Watt[5]
 
Young Engineers[33]
 
Discover Electronics[2]
 
Snap Circuits[4]
 
littleBits[3]
 
Project packs[8]


 
Breakout Boards[33]
LCDs & Displays[48]
Components & Parts[69]
Batteries & Power[49]
EL Wire/Tape/Panel[52]
LEDs[108]
 
Wireless[14]
Cables[60]
 
Lasers[6]
Sensors/Parts[145]
 
Enclosures/Cases[11]
 
Solar[11]
 
RFID / NFC[13]
Prototyping[69]
 
iDevices[13]
Tools[71]
 
Wearables[39]
 
CNC[37]
 
Robotics[29]
 
3D printing[1]
 
Materials[24]


 
Stickers[41]
 
Skill badges[55]
 
Books[25]
 
Circuit Playground[7]
 
Gift Certificates[4]