Skip to content

Commit

Permalink
Merge pull request #194 from ToberoCat/master
Browse files Browse the repository at this point in the history
Fixed missing semicolon from previous pull request
  • Loading branch information
tcorbly authored Mar 15, 2024
2 parents 7b10fea + 44a8c7f commit 5ffb582
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion module/botball/src/botball_c.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ void wait_for_light(int port)
printf("Threshold Value: %d \n \n", threshold);
printf("Current Value: %d <---- \n", analog(port));

unsigned long startTime = systime()
unsigned long startTime = systime();
while ((systime() - startTime) < 2000) {
if (analog(port) > threshold) {
break;
Expand Down

0 comments on commit 5ffb582

Please sign in to comment.