From 10d539600d86723087810ec636870a504f4fee4d Mon Sep 17 00:00:00 2001 From: Scott Chacon Date: Wed, 1 Oct 2014 12:54:23 +0200 Subject: [PATCH 1/2] two seconds --- blink.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blink.ino b/blink.ino index 15b99114..54d7e426 100644 --- a/blink.ino +++ b/blink.ino @@ -20,5 +20,5 @@ void loop() { digitalWrite(led, HIGH); // turn the LED on (HIGH is the voltage level) delay(1000); // wait for a second digitalWrite(led, LOW); // turn the LED off by making the voltage LOW - delay(1000); // wait for a second + delay(2000); // wait for a second } From 1fab7f4e7f1d8f7e7cc25ada62602409f5b355fe Mon Sep 17 00:00:00 2001 From: Yateesh20 Date: Thu, 14 Mar 2024 10:29:24 +0530 Subject: [PATCH 2/2] Change in delay to 4 --- 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 }