commit 2dcca27dc68d91ebe6afe2fc150314604063eec9 Author: Frannell Foti <15-08039@usb.ve> Date: Mon Mar 22 20:06:47 2021 -0400 Primeras adiciones diff --git a/Hello world con Arduino.txt b/Hello world con Arduino.txt new file mode 100644 index 0000000..6cd0b60 --- /dev/null +++ b/Hello world con Arduino.txt @@ -0,0 +1,10 @@ +void setup(){ + pinMode(LED_BUILTIN, OUTPUT); +} +void loop() +{ + digitalWrite(LED_BUILTIN, HIGH); + delay(1000); // Encender 1 Seg + digitalWrite(LED_BUILTIN, LOW); + delay(1000); // Apagar 1 Seg +} \ No newline at end of file