From 3c98416ebdaf1cf6af308262634df9f042060588 Mon Sep 17 00:00:00 2001 From: Joey99309 Date: Thu, 17 Oct 2024 15:06:36 +0800 Subject: [PATCH 1/2] Change delay to 3 seconds --- blink.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/blink.ino b/blink.ino index 54d7e426..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(2000); // wait for a second + delay(3000); // wait for a second } From 6a286951974d469732d522ed786e1aeb30f58f79 Mon Sep 17 00:00:00 2001 From: Joey99309 Date: Mon, 21 Oct 2024 20:48:18 +0800 Subject: [PATCH 2/2] Demo --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 406e4891..57081604 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,4 @@ # Blink This repository has an example file to blink the LED on an Arduino board. +Things have changed!