Skip to content

Commit 48f6f9c

Browse files
committedFeb 23, 2023
Update Control_Build_1.ino
1 parent 4cd2fce commit 48f6f9c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎Control_Build_1/Control_Build_1.ino

+2-2
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ void path_rectangle(int w, int l) {
9191
}
9292

9393
void path_circle(float radius, int time){
94-
int pwmL = 125;
94+
int pwmL = 115;
9595
int pwmR = pwmL*radius;
9696
if (pwmR < 125){
9797
pwmR = 125;
@@ -100,7 +100,7 @@ void path_circle(float radius, int time){
100100
}
101101
motorR(pwmR, -1);
102102
motorL(pwmL, -1);
103-
delay(time)//Takes input miliseconds
103+
delay(time);//Takes input miliseconds
104104

105105
//need to make this go only for a certain amount of time
106106
}

0 commit comments

Comments
 (0)
Please sign in to comment.