Error in the description of the library EEPROM.get ()
Open
Component: Documentation
feature request
Library: EEPROM
- Dominant language
- Java
- Stars
- 14.6k
- Forks
- 7k
- PR merge metrics
- No merged PRs in 30d
Description
https://docs.arduino.cc/learn/built-in-libraries/eeprom#get
Now:
```cpp
eeAddress = sizeof(float); //Move address to the next byte after float 'f'.
```
Need:
```cpp
eeAddress += sizeof(float); //Move address to the next byte after float 'f'.
```
Contributor guide
Assessment
This issue has not been assessed yet.