diff --git a/content/learn/03.programming/07.eeprom-guide/eeprom-guide.md b/content/learn/03.programming/07.eeprom-guide/eeprom-guide.md index 6831e89454..04a9e226c8 100644 --- a/content/learn/03.programming/07.eeprom-guide/eeprom-guide.md +++ b/content/learn/03.programming/07.eeprom-guide/eeprom-guide.md @@ -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/) @@ -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 /*** @@ -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