Skip to content

Commit

Permalink
clang-formatを通すために何も実行しないwhile文を修正
Browse files Browse the repository at this point in the history
  • Loading branch information
YusukeKato committed Sep 19, 2024
1 parent a419be4 commit 551ec05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Arduino_Sample/STEP4/STEP4.ino
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ void loop()
digitalWrite(LED_PIN, HIGH);
count++;
delay(30);
while (digitalRead(SW1_PIN) == LOW);
while (digitalRead(SW1_PIN) == LOW){};
delay(30);
} else {
digitalWrite(LED_PIN, LOW);
Expand Down

0 comments on commit 551ec05

Please sign in to comment.