From 20db021881cfad3e39e7f87051b532fb51e30343 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jorge=20L=C3=B3pez=20Blasco?= <115549197+jorloicono@users.noreply.github.com> Date: Wed, 9 Oct 2024 11:55:35 +0200 Subject: [PATCH 1/2] Update blink.ino --- blink.ino | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/blink.ino b/blink.ino index 15b99114..7934ed52 100644 --- a/blink.ino +++ b/blink.ino @@ -1,9 +1,4 @@ -/* - Blink - Turns on an LED on for one second, then off for one second, repeatedly. - - This example code is in the public domain. - */ + // Pin 13 has an LED connected on most Arduino boards. // give it a name: From af7e8b276a400b4c607250623e3a2f37726cb542 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jorge=20L=C3=B3pez=20Blasco?= <115549197+jorloicono@users.noreply.github.com> Date: Wed, 5 Mar 2025 12:31:44 +0100 Subject: [PATCH 2/2] Update blink.ino --- blink.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blink.ino b/blink.ino index 7934ed52..1415b496 100644 --- a/blink.ino +++ b/blink.ino @@ -2,7 +2,7 @@ // Pin 13 has an LED connected on most Arduino boards. // give it a name: -int led = 13; +int led = 7; // the setup routine runs once when you press reset: void setup() {