Open
Description
https://docs.arduino.cc/learn/built-in-libraries/eeprom#get
Now:
eeAddress = sizeof(float); //Move address to the next byte after float 'f'.
Need:
eeAddress += sizeof(float); //Move address to the next byte after float 'f'.
https://docs.arduino.cc/learn/built-in-libraries/eeprom#get
Now:
eeAddress = sizeof(float); //Move address to the next byte after float 'f'.
Need:
eeAddress += sizeof(float); //Move address to the next byte after float 'f'.