Hi, i purchased a robot shop rover and at the moment i have the basic wasd keyboard control code working very nicely. I also have a separate servo left and right manipulation code working nicely. I need to combine them for a presentation tommorow afternoon. Here are the two codes if someone could please mix them so that they both function together that would excellent. Thankyou
Code 1 Basic wasd control
/To control the rover, Copy and paste the code below into the Arduino software/
int E1 = 6; //M1 Speed Control
int E2 = 5; //M2 Speed Control
int M1 = 8; //M1 Direction Control
int M2 = 7; //M2 Direction Control
void setup(void)
{
int i;
for(i=5;i<=8;i++)
pinMode(i, OUTPUT);
Serial.begin(9600);
Serial.println(“setup”);
}
void loop(void)
{
while (Serial.available() < 1) {} // Wait until a character is received
char val = Serial.read();
int leftspeed = 120; //255 is maximum speed
int rightspeed = 120;
switch(val) // Perform an action depending on the command
{
case ‘w’://Move Forward
case ‘W’:
forward (leftspeed,rightspeed);
break;
case ‘s’://Move Backwards
case ‘S’:
reverse (leftspeed,rightspeed);
break;
case ‘a’://Turn Left
case ‘A’:
left (leftspeed,rightspeed);
break;
case ‘d’://Turn Right
case ‘D’:
right (leftspeed,rightspeed);
break;
default:
stop();
break;
}
}
void stop(void) //Stop
{
digitalWrite(E1,LOW);
digitalWrite(E2,LOW);
Serial.println(“stop”);
}
void forward(char a,char b)
{
analogWrite (E1,a);
digitalWrite(M1,LOW);
analogWrite (E2,b);
digitalWrite(M2,LOW);
Serial.println(“forward”);
}
void reverse (char a,char b)
{
analogWrite (E1,a);
digitalWrite(M1,HIGH);
analogWrite (E2,b);
digitalWrite(M2,HIGH);
Serial.println(“reverse”);
}
void left (char a,char b)
{
analogWrite (E1,a);
digitalWrite(M1,HIGH);
analogWrite (E2,b);
digitalWrite(M2,LOW);
Serial.println(“left”);
}
void right (char a,char b)
{
analogWrite (E1,a);
digitalWrite(M1,LOW);
analogWrite (E2,b);
digitalWrite(M2,HIGH);
Serial.println(“right”);
}
Code 2 servo control
/*
- NewSerialServo
-
- Servo control from the Serial port
- Alteration of the control interface to use < and > keys
- to slew the servo horn left and right. Works best with
- the Linux/Mac terminal “screen” program.
- Created 10 December 2007
- copyleft 2007 Brian D. Wendt
- http://principialabs.com/
- Adapted from code by Tom Igoe
-
http://itp.nyu.edu/physcomp/Labs/Servo
*/
/** Adjust these values for your servo and setup, if necessary **/
int servoPin = 2; // control pin for servo motor
int minPulse = 600; // minimum servo position
int maxPulse = 2400; // maximum servo position
int turnRate = 200; // servo turn rate increment (larger value, faster rate)
int refreshTime = 30; // time (ms) between pulses (50Hz)
/** The Arduino will calculate these values for you **/
int centerServo; // center servo position
int pulseWidth; // servo pulse width
int moveServo; // raw user input
long lastPulse = 0; // recorded time (ms) of the last pulse
void setup() {
pinMode(servoPin, OUTPUT); // Set servo pin as an output pin
centerServo = maxPulse - ((maxPulse - minPulse)/2);
pulseWidth = centerServo; // Give the servo a starting point (or it floats)
Serial.begin(9600);
Serial.println(" Arduino Serial Servo Control");
Serial.println(“Press < or > to move, spacebar to center”);
Serial.println();
}
void loop() {
// wait for serial input
if (Serial.available() > 0) {
// read the incoming byte:
moveServo = Serial.read();
// ASCII ‘<’ is 44, ASCII ‘>’ is 46 (comma and period, really)
if (moveServo == 44) { pulseWidth = pulseWidth - turnRate; }
if (moveServo == 46) { pulseWidth = pulseWidth + turnRate; }
if (moveServo == 32) { pulseWidth = centerServo; }
// stop servo pulse at min and max
if (pulseWidth > maxPulse) { pulseWidth = maxPulse; }
if (pulseWidth < minPulse) { pulseWidth = minPulse; }
// print pulseWidth back to the Serial Monitor (uncomment to debug)
// Serial.print("Pulse Width: ");
// Serial.print(pulseWidth);
// Serial.println(“us”); // microseconds
}
// pulse the servo every 20 ms (refreshTime) with current pulseWidth
// this will hold the servo’s position if unchanged, or move it if changed
if (millis() - lastPulse >= refreshTime) {
digitalWrite(servoPin, HIGH); // start the pulse
delayMicroseconds(pulseWidth); // pulse width
digitalWrite(servoPin, LOW); // stop the pulse
lastPulse = millis(); // save the time of the last pulse
}
}