varying speed with motor shield

Adafruit Ethernet, Motor, Proto, Wave, Datalogger, GPS Shields - etc!

Moderators: adafruit_support_bill, adafruit

Please be positive and constructive with your questions and comments.
Locked
User avatar
puck
 
Posts: 1
Joined: Wed Sep 21, 2011 6:03 pm

varying speed with motor shield

Post by puck »

I'm using the Adafruit motor shield to control two brushed motors for propulsion on a voice controlled robot. I want to be able to vary the speed, example: "ahead full", "ahead one third" etc, for which I would designate in the code appropriate numbers between 0 and 255, but this would be done in the loop portion of the code where I define the various functions. example:

void aheadOneThird(){
motor1.setSpeed(85);
motor2.setSpeed(85);
motor1.run(FORWARD);
motor2.run(FORWARD);
delay(1000); //run time before rechecking sensors and command changes
}

void aheadFull(){
motor1.setSpeed(255);
motor2.setSpeed(255);
motor1.run(FORWARD);
motor2.run(FORWARD);
delay(1000);
}

Would this work or must setSpeed be done in setup? If it must be done in setup, is this number changeable (outside of changing it in the IDE, recompiling and reloading it) if it's in the setup portion of the code? Guidance greatly appreciated. Normally I would just try it, but I'm away from home and do not have access to my boards at the moment.

regards, Richard

User avatar
adafruit_support_bill
 
Posts: 88136
Joined: Sat Feb 07, 2009 10:11 am

Re: varying speed with motor shield

Post by adafruit_support_bill »

You can call setSpeed() at any time.

Locked
Please be positive and constructive with your questions and comments.

Return to “Arduino Shields from Adafruit”