Skip to content

Commit 223ef29

Browse files
committed
Fix flashing green LED at end of verification.
1 parent 1a67ee2 commit 223ef29

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

examples/ParallelEEPROM_EX4_program_device/ParallelEEPROM_EX4_program_device.ino

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,10 +122,12 @@ void loop() {
122122
Serial.println("Verification Passed.");
123123
digitalWrite(LED_GREEN, HIGH);
124124
delay(500);
125-
digitalWrite(LED_GREEN, HIGH);
125+
digitalWrite(LED_GREEN, LOW);
126126
delay(500);
127127
digitalWrite(LED_GREEN, HIGH);
128128
delay(500);
129+
digitalWrite(LED_GREEN, LOW);
130+
delay(500);
129131
digitalWrite(LED_GREEN, HIGH);
130132

131133
}

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=ParallelEEPROM
2-
version=1.0.1
2+
version=1.0.2
33
author=Andreas Taylor <Andy4495@outlook.com>
44
maintainer=Andreas Taylor <Andy4495@outlook.com>
55
sentence=Library to program Parallel EEPROMs.

0 commit comments

Comments
 (0)