Skip to content

Commit

Permalink
swapping pins
Browse files Browse the repository at this point in the history
  • Loading branch information
platisd committed Jan 25, 2016
1 parent 8bc1979 commit fd18702
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ const float fSpeed = 0.5; //a ground speed (m/sec) for going forward
const float bSpeed = -0.5; //a ground speed (m/sec)y for going backward
const int lDegrees = -75; //degrees to turn left
const int rDegrees = 75; //degrees to turn right
const int encoderLeftPin = 3;
const int encoderRightPin = 2;
const int encoderLeftPin = 2;
const int encoderRightPin = 3;

void setup() {
Serial3.begin(9600);
Expand Down

0 comments on commit fd18702

Please sign in to comment.