Advertisement
zoro-10

LED Blinking

Apr 1st, 2024 (edited)
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.33 KB | None | 0 0
  1. my profile: https://www.tinkercad.com/users/b1KRQXABOps?type=circuits
  2.  
  3. https://imgur.com/a/3oqP1qT
  4.  
  5.  
  6.  
  7. void setup()
  8. {
  9.  pinMode(LED_BUILTIN, OUTPUT);
  10. }
  11. void loop()
  12. {
  13.  digitalWrite(LED_BUILTIN, HIGH);
  14.  delay(1000); // Wait for 1000 millisecond(s)
  15.  digitalWrite(LED_BUILTIN, LOW);
  16.  delay(1000); // Wait for 1000 millisecond(s)
  17. }
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement