Skip to content

Commit f873b48

Browse files
committed
eeprom_clear example: Set pinMode of LED pin
1 parent 4dc36e8 commit f873b48

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

libraries/EEPROM/examples/eeprom_clear/eeprom_clear.ino

+3-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@
1111
#include <EEPROM.h>
1212

1313
void setup() {
14-
14+
// initialize the LED pin as an output.
15+
pinMode(13, OUTPUT);
16+
1517
/***
1618
Iterate through each byte of the EEPROM storage.
1719

0 commit comments

Comments
 (0)