This commit is contained in:
Joe Tretter
2020-09-21 18:12:18 -05:00
commit 109816c0d9
7 changed files with 141 additions and 0 deletions

14
src/main.cpp Normal file
View File

@@ -0,0 +1,14 @@
#include <Arduino.h>
void setup() {
// put your setup code here, to run once:
pinMode(LED_BUILTIN,OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(LED_BUILTIN,HIGH);
delay(500);
digitalWrite(LED_BUILTIN,LOW);
delay(100);
}