From 71a688fb640876dc943e3541f8daff7da9fb4c2d Mon Sep 17 00:00:00 2001 From: mudongzishiba Date: Wed, 18 Dec 2024 17:42:13 +0800 Subject: [PATCH 1/2] three seconds is better --- blink.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/blink.ino b/blink.ino index 15b99114..306e8c6a 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(300); // wait for a second digitalWrite(led, LOW); // turn the LED off by making the voltage LOW - delay(1000); // wait for a second + delay(300); // wait for a second } From af275b89592b4bec626dcd68eae4cc4e394f3972 Mon Sep 17 00:00:00 2001 From: mudongzishiba Date: Wed, 18 Dec 2024 18:31:32 +0800 Subject: [PATCH 2/2] 1.234 seconds is better --- blink.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/blink.ino b/blink.ino index 306e8c6a..dabe5525 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(300); // wait for a second + delay(1234); // wait for a second digitalWrite(led, LOW); // turn the LED off by making the voltage LOW - delay(300); // wait for a second + delay(1234); // wait for a second }