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
[](https://github.com/porrey/EEPROM-Storage/actions/workflows/arduino-mega-2560-build.yml)
2
+
[](https://github.com/porrey/EEPROM-Storage/actions/workflows/arduino-uno-r4-build.yml)
3
+
[](https://github.com/porrey/EEPROM-Storage/actions/workflows/arduino-esp8266-build.yml)
4
+
[](https://github.com/porrey/EEPROM-Storage/actions/workflows/particle-build.yml)
5
+
[](https://github.com/porrey/EEPROM-Storage/actions/workflows/arduino-lint.yml)
@@ -11,9 +16,9 @@ The EEPROM Storage library provides the ability to access variables stored in EE
11
16
Detailed library class and code documentation can be found here: https://porrey.github.io/EEPROM-Storage
12
17
13
18
## EEPROMStorage\<T\> vs EEPROMCache\<T\>
14
-
There are two classes that provide the similar access to EEEPROM. The first is the Direct Storage class which reads and writes to directly to and from EEPROM. The second is the Cache Access whichs reads and writes from memory and writes to the EEPROM when directed.
19
+
There are two classes that provide the similar access to EEEPROM. The first is the Direct Storage class which reads and writes to directly to and from EEPROM. The second is the Cache Access which reads and writes from memory and writes to the EEPROM when directed.
15
20
16
-
Other than the `restore()` and `commit()` (*see description below*) methods on the cache based class, these objects can be used interchangably.
21
+
Other than the `restore()` and `commit()` (*see description below*) methods on the cache based class, these objects can be used interchangeably.
17
22
18
23
### Direct Storage (EEPROMStorage\<T\>)
19
24
This class writes directly to the EEPROM whenever the variable value is updated and reads directly from EEPROM when the variable value is accessed.
@@ -152,6 +157,8 @@ The `EEPROMStorage` class also defines a `get()` method that can be used.
152
157
int x = myInt.get();
153
158
154
159
## Platform/Boards Used in Testing
160
+
The library was compile and loaded onto the boards listed below for testing.
0 commit comments