first_commit

This commit is contained in:
2021-03-14 21:28:01 -05:00
commit 948356bc2c
64 changed files with 938 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
#include <Arduino.h>
void setup() {
pinMode(PC13,OUTPUT);
}
void loop() {
digitalWrite(PC13,LOW);
delay(200);
digitalWrite(PC13,HIGH);
delay(200);
}