Skip to content

Fixes grammatical error. Removes multiple consecutive blank lines #2034

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions content/learn/03.programming/07.eeprom-guide/eeprom-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@ tags: [EEPROM, Memory]

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).

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

## Hardware Required

All of the following boards have an EEPROM:

- [Arduino UNO R4 Minima](https://store.arduino.cc/products/uno-r4-minima)
- [Arduino UNO R4 WiFi](https://store.arduino.cc/products/uno-r4-wifi)
- [Arduino UNO Rev.3](https://store.arduino.cc/products/arduino-uno-rev3/)
Expand Down Expand Up @@ -339,7 +340,6 @@ void loop() {}

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.


```arduino
/***

Expand Down Expand Up @@ -427,7 +427,6 @@ void loop() {

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).


```arduino
/*
* EEPROM Read
Expand Down