From e35a4cf47714338fe4b1050a311539dc1ca503ae Mon Sep 17 00:00:00 2001 From: KushalMehta39 <89148778+KushalMehta39@users.noreply.github.com> Date: Wed, 20 Jul 2022 11:48:15 +0530 Subject: [PATCH 1/2] Update led-blink-breadboard.ino --- E02-led-blink-breadboard/led-blink-breadboard.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/E02-led-blink-breadboard/led-blink-breadboard.ino b/E02-led-blink-breadboard/led-blink-breadboard.ino index 96744e2..57bd505 100644 --- a/E02-led-blink-breadboard/led-blink-breadboard.ino +++ b/E02-led-blink-breadboard/led-blink-breadboard.ino @@ -24,6 +24,6 @@ void loop() { digitalWrite(LED_BUILTIN, HIGH); // Turn the built-in LED on delay(1000); // Pause for 1 second (1000 milliseconds) - digitalWrite(LED_BUILTIN, LOW); // Turn the built-in LED on + digitalWrite(LED_BUILTIN, LOW); // Turn the built-in LED off delay(1000); // Pause for 1 second (1000 milliseconds) -} \ No newline at end of file +} From b0c3c9b99f57550412b50d452a99ee1fc5f1e938 Mon Sep 17 00:00:00 2001 From: KushalMehta39 <89148778+KushalMehta39@users.noreply.github.com> Date: Wed, 20 Jul 2022 11:54:48 +0530 Subject: [PATCH 2/2] Update potmeter.ino --- E04-potmeter/potmeter.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/E04-potmeter/potmeter.ino b/E04-potmeter/potmeter.ino index d39a408..1d7c457 100644 --- a/E04-potmeter/potmeter.ino +++ b/E04-potmeter/potmeter.ino @@ -31,7 +31,7 @@ void loop() { digitalWrite(LED_BUILTIN, HIGH); // Turn the built-in LED on delay(potVal); // Pause for the length of the potval value (0-1023) milliseconds - digitalWrite(LED_BUILTIN, LOW); // Turn the built-in LED on + digitalWrite(LED_BUILTIN, LOW); // Turn the built-in LED off delay(potVal); // Pause for the length of the potval value (0-1023) milliseconds }