Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 352d348

Browse files
authoredJul 18, 2024··
Merge pull request #2034 from redconfetti/eeprom-guide-grammar
Fixes grammatical error. Removes multiple consecutive blank lines
2 parents b23b8a1 + f8d930c commit 352d348

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed
 

‎content/learn/03.programming/07.eeprom-guide/eeprom-guide.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,12 @@ tags: [EEPROM, Memory]
66

77
The microcontroller on the Arduino boards have 512 bytes of [EEPROM:](http://en.wikipedia.org/wiki/EEPROM) memory whose values are kept when the board is turned off (like a tiny hard drive).
88

9-
Functions in the **EEPROM** class is automatically included with the platform for your board, meaning you do not need to install any external libraries.
9+
Functions in the **EEPROM** class are automatically included with the platform for your board, meaning you do not need to install any external libraries.
1010

1111
## Hardware Required
1212

1313
All of the following boards have an EEPROM:
14+
1415
- [Arduino UNO R4 Minima](https://store.arduino.cc/products/uno-r4-minima)
1516
- [Arduino UNO R4 WiFi](https://store.arduino.cc/products/uno-r4-wifi)
1617
- [Arduino UNO Rev.3](https://store.arduino.cc/products/arduino-uno-rev3/)
@@ -339,7 +340,6 @@ void loop() {}
339340

340341
The purpose of this example is to show the `EEPROM.put()` method that writes data on EEPROM using also the EEPROM.update() that writes data only if it is different from the previous content of the locations to be written. The number of bytes written is related to the datatype or custom structure of the variable to be written.
341342

342-
343343
```arduino
344344
/***
345345
@@ -427,7 +427,6 @@ void loop() {
427427

428428
This example illustrates how to read the value of each byte EEPROM using the `EEPROM.read()` function, and how to print those values to the serial window of the Arduino Software (IDE).
429429

430-
431430
```arduino
432431
/*
433432
* EEPROM Read

0 commit comments

Comments
 (0)
Please sign in to comment.