Skip to content

Commit

Permalink
clang-formatを通すために更に修正
Browse files Browse the repository at this point in the history
  • Loading branch information
YusukeKato committed Sep 19, 2024
1 parent 5269817 commit c98ea8c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Arduino_Sample/STEP4/STEP4.ino
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ void loop()
digitalWrite(LED_PIN, HIGH);
count++;
delay(30);
while (digitalRead(SW1_PIN) == LOW) {}
while (digitalRead(SW1_PIN) == LOW) {
// pass
}
delay(30);
} else {
digitalWrite(LED_PIN, LOW);
Expand Down

0 comments on commit c98ea8c

Please sign in to comment.