thank you! If I want to read the array from the EEPROM and print it in the serial monitor is it:
for (byte x = 0; x<5; x++)
{
sensval[x] = EEPROM.read(index)
Serial.print("\");
Serial.print(sensval[x],DEC);
and so on..
thank you! If I want to read the array from the EEPROM and print it in the serial monitor is it:
for (byte x = 0; x<5; x++)
{
sensval[x] = EEPROM.read(index)
Serial.print("\");
Serial.print(sensval[x],DEC);
and so on..