Hi I am very new to this, so excuse the silly question- If you have 4 sensors- and you want to write and read e.g. byte senvals{0,1,2,3} to the eeprom if(something happens) { then could you write it something like this? I have made the array of readings into a a byte array is that right?
EEPROM.write(index,sensval[0]);
EEPROM.write(index +1,sensval[1]);
EEPROM.write(index +2,sensval[2]);
EEPROM.write(index +3,sensval[3]);
EEPROM.write(index +4,sensval[4]);