You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/learn/03.programming/07.eeprom-guide/eeprom-guide.md
+2-3Lines changed: 2 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -6,11 +6,12 @@ tags: [EEPROM, Memory]
6
6
7
7
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).
8
8
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.
10
10
11
11
## Hardware Required
12
12
13
13
All of the following boards have an EEPROM:
14
+
14
15
-[Arduino UNO R4 Minima](https://store.arduino.cc/products/uno-r4-minima)
15
16
-[Arduino UNO R4 WiFi](https://store.arduino.cc/products/uno-r4-wifi)
16
17
-[Arduino UNO Rev.3](https://store.arduino.cc/products/arduino-uno-rev3/)
@@ -339,7 +340,6 @@ void loop() {}
339
340
340
341
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.
341
342
342
-
343
343
```arduino
344
344
/***
345
345
@@ -427,7 +427,6 @@ void loop() {
427
427
428
428
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).
0 commit comments