Init Shared Repo

This commit is contained in:
Joe Tretter
2020-09-21 17:57:22 -05:00
commit 08f531f2c5
73 changed files with 3030 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
#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(100);
digitalWrite(LED_BUILTIN, LOW);
delay(200);
}