Skip to content

Commit

Permalink
serial
Browse files Browse the repository at this point in the history
  • Loading branch information
accellarando committed Dec 2, 2023
1 parent a464992 commit 289c356
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions firmware/main_nucleo/main_nucleo.ino
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ int pen_up(){
}

// measure what these need to be
#define MIN_L 50
#define MIN_R 50
#define MIN_L 00
#define MIN_R 00
#define START_L 100
#define START_R 100
int lastL = START_L;
Expand Down Expand Up @@ -244,8 +244,8 @@ void setup_motors(){
digitalWrite(CONTROL_PIN_L, LOW);
digitalWrite(CONTROL_PIN_R, LOW);

motorL.setSpeed(1000); // may need to change this param
motorR.setSpeed(1000); // may need to change this param
motorL.setSpeed(100); // may need to change this param
motorR.setSpeed(100); // may need to change this param
}

/**
Expand Down

0 comments on commit 289c356

Please sign in to comment.