Question.5
Which function would you use to correctly read a 16-bit integer value from EEPROM into a variable named temp?
temp
Select Answer
temp = EEPROM.readInt(address);
EEPROM.get(address, temp);
temp = EEPROM.get(address, value);
temp = EEPROM.read(address);
EEPROM.put(address, value);