From fddb3941f547f819800b0a588066310a2c14b294 Mon Sep 17 00:00:00 2001 From: aniket-das-tiger Date: Mon, 11 Nov 2024 14:17:18 +0530 Subject: [PATCH 1/4] Change delay to 3 seconds --- blink.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blink.ino b/blink.ino index 54d7e426..b83fcfec 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(2000); // wait for a second } From 65c8292a11b7baf9da8658520e5feb140964ac94 Mon Sep 17 00:00:00 2001 From: aniket-das-tiger Date: Mon, 11 Nov 2024 16:57:29 +0530 Subject: [PATCH 2/4] Change delay to 3 seconds and 4 seconds repectively --- blink.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/blink.ino b/blink.ino index b83fcfec..7daee812 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(3000); // wait for a second + delay(3000); // wait for 3 seconds digitalWrite(led, LOW); // turn the LED off by making the voltage LOW - delay(2000); // wait for a second + delay(4000); // wait for 4 seconds } From 9ab910885b1cd77d835b4be4f7611ec7d2662991 Mon Sep 17 00:00:00 2001 From: aniket-das-tiger Date: Tue, 12 Nov 2024 13:12:52 +0530 Subject: [PATCH 3/4] Change delay to 2 seconds and 2 seconds repectively --- blink.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/blink.ino b/blink.ino index 7daee812..914f62f0 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(3000); // wait for 3 seconds + delay(2000); // wait for 2 seconds digitalWrite(led, LOW); // turn the LED off by making the voltage LOW - delay(4000); // wait for 4 seconds + delay(2000); // wait for 2 seconds } From 1053d35444d1168f20bee1f4c82757db502988d4 Mon Sep 17 00:00:00 2001 From: aniket-das-tiger Date: Tue, 12 Nov 2024 16:52:32 +0530 Subject: [PATCH 4/4] Change delay to 3 seconds and 4 seconds repectively --- blink.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/blink.ino b/blink.ino index 914f62f0..7daee812 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(2000); // wait for 2 seconds + delay(3000); // wait for 3 seconds digitalWrite(led, LOW); // turn the LED off by making the voltage LOW - delay(2000); // wait for 2 seconds + delay(4000); // wait for 4 seconds }