evenjc

Blinky - Yellow LED [nolib]

Jun 4th, 2019
304
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const int yellowLED = 13;
  2.  
  3. void setup() {
  4.   pinMode(yellowLED, OUTPUT);
  5. }
  6.  
  7. void loop() {
  8.   digitalWrite(yellowLED, HIGH);
  9.   delay(1000);
  10.   digitalWrite(yellowLED, LOW);
  11.   delay(1000);
  12. }
Advertisement
Add Comment
Please, Sign In to add comment