This pull request updates the blink.ino file to increase the delay between LED blinks from 1 second to 3 seconds.
Changes Made
Modified the delay function calls in the loop() function:
Changed from delay(1000); to delay(3000);.
Rationale
The original delay of 1 second between LED blinks was quite fast for the intended visual effect. Increasing the delay to 3 seconds makes the blinking rate more noticeable and suitable for longer visual intervals.
Testing
Verified the change by running the updated code on an Arduino board.
Confirmed that the LED blinks with a 3-second interval as expected.
Please review the changes and let me know if any additional modifications are required. Thank you!
Overview
This pull request updates the
blink.ino
file to increase the delay between LED blinks from 1 second to 3 seconds.Changes Made
delay
function calls in theloop()
function:delay(1000);
todelay(3000);
.Rationale
The original delay of 1 second between LED blinks was quite fast for the intended visual effect. Increasing the delay to 3 seconds makes the blinking rate more noticeable and suitable for longer visual intervals.
Testing
Please review the changes and let me know if any additional modifications are required. Thank you!