Skip to content

Commit

Permalink
Create FlashingLED.ino
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanGaudion authored Nov 30, 2020
1 parent 3750c58 commit 823c7da
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Episode 0 - Introduction/FlashingLED.ino
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
const int ledPin = 18;

void setup() {
// put your setup code here, to run once:
pinMode(ledPin, OUTPUT);
}

void loop() {
// put your main code here, to run repeatedly:
digitalWrite(ledPin, HIGH);
delay(500);
digitalWrite(ledPin, LOW);
delay(500);
}

0 comments on commit 823c7da

Please sign in to comment.