From db44c535b1781e6649cbcc5f59811760ee56d653 Mon Sep 17 00:00:00 2001 From: Tony Chacon Date: Wed, 1 Oct 2014 10:33:46 +0200 Subject: [PATCH 1/3] three seconds is better --- blink.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/blink.ino b/blink.ino index 15b99114..a6cc5a5e 100644 --- a/blink.ino +++ b/blink.ino @@ -18,7 +18,7 @@ void setup() { // the loop routine runs over and over again forever: void loop() { digitalWrite(led, HIGH); // turn the LED on (HIGH is the voltage level) - delay(1000); // wait for a second + delay(3000); // wait for a second digitalWrite(led, LOW); // turn the LED off by making the voltage LOW - delay(1000); // wait for a second + delay(3000); // wait for a second } From 26015fbf238cfd080da73fcc9112f47496a84449 Mon Sep 17 00:00:00 2001 From: c0mpi11er Date: Mon, 18 Mar 2024 12:45:07 +0100 Subject: [PATCH 2/3] modified the light to delay 4 seconds --- blink.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/blink.ino b/blink.ino index 15b99114..e1faa97c 100644 --- a/blink.ino +++ b/blink.ino @@ -18,7 +18,7 @@ void setup() { // the loop routine runs over and over again forever: void loop() { digitalWrite(led, HIGH); // turn the LED on (HIGH is the voltage level) - delay(1000); // wait for a second + delay(4000); // wait for a second digitalWrite(led, LOW); // turn the LED off by making the voltage LOW - delay(1000); // wait for a second + delay(4000); // wait for a second } From 2809ec59a5fe5e334212cf05c8e3ab64a63649f8 Mon Sep 17 00:00:00 2001 From: c0mpi11er Date: Mon, 18 Mar 2024 13:02:15 +0100 Subject: [PATCH 3/3] re implemtend the led light to be 3 seconds --- blink.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/blink.ino b/blink.ino index e1faa97c..a6cc5a5e 100644 --- a/blink.ino +++ b/blink.ino @@ -18,7 +18,7 @@ void setup() { // the loop routine runs over and over again forever: void loop() { digitalWrite(led, HIGH); // turn the LED on (HIGH is the voltage level) - delay(4000); // wait for a second + delay(3000); // wait for a second digitalWrite(led, LOW); // turn the LED off by making the voltage LOW - delay(4000); // wait for a second + delay(3000); // wait for a second }