From 2dcca27dc68d91ebe6afe2fc150314604063eec9 Mon Sep 17 00:00:00 2001 From: Frannell Foti <15-08039@usb.ve> Date: Mon, 22 Mar 2021 20:06:47 -0400 Subject: [PATCH] Primeras adiciones --- Hello world con Arduino.txt | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Hello world con Arduino.txt 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