Init Shared Repo
This commit is contained in:
16
BlinkiWithDebuggingWorking/src/main.cpp
Normal file
16
BlinkiWithDebuggingWorking/src/main.cpp
Normal 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);
|
||||
}
|
||||
Reference in New Issue
Block a user