From aba7762223a117133f894142110442c781e2fe9f Mon Sep 17 00:00:00 2001 From: tah997 Date: Wed, 9 Oct 2024 22:25:22 +1100 Subject: [PATCH] Update eeprom.md Paragraph describing role of EEPROM memory did not make sense. --- .../02.hero/boards/uno-r4-wifi/tutorials/eeprom/eeprom.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/hardware/02.hero/boards/uno-r4-wifi/tutorials/eeprom/eeprom.md b/content/hardware/02.hero/boards/uno-r4-wifi/tutorials/eeprom/eeprom.md index 9cf67712c9..4fd91c0626 100644 --- a/content/hardware/02.hero/boards/uno-r4-wifi/tutorials/eeprom/eeprom.md +++ b/content/hardware/02.hero/boards/uno-r4-wifi/tutorials/eeprom/eeprom.md @@ -26,7 +26,7 @@ The goals of this tutorials are: ## EEPROM -Electronically erasable programmable read-only memory (EEPROM) is a memory that can be used to store data that can be retrieved after power loss. This memory can be effective to use during run-time to log data can be used to re-initialize whenever a system comes back online. +Electronically erasable programmable read-only memory (EEPROM) is a memory that can be used to store data that can be retrieved after power loss - it is non-volatile. EEPROM memory can be useful during run-time to log data, or can be used to re-initialize variables whenever a system comes back online. When writing to the EEPROM memory, we specify two parameters: the **address** and **value**. Each byte can hold a value between 0-255. @@ -90,4 +90,4 @@ void loop() { ## Summary -In this tutorial, you've learned how to access the EEPROM on the UNO R4 WiFi board. To learn more about EEPROM, visit [A Guide to EEPROM](https://docs.arduino.cc/learn/programming/eeprom-guide). \ No newline at end of file +In this tutorial, you've learned how to access the EEPROM on the UNO R4 WiFi board. To learn more about EEPROM, visit [A Guide to EEPROM](https://docs.arduino.cc/learn/programming/eeprom-guide).