byte senval[] ={0,1,2,3,4}
then I made a function to read the sensors: sensval[0] = analogRead(5) etc. The intention was to make a string out of the sensor values. But a string is an array of chars so i guess I made a mistake. So i must convert the int sensor values to chars instead of bytes? Once these values are in the EEPROM they are stored as bytes-so when they are read and printed to the serial monitor, how do I get the correct (# between 0,1023) sensor value back again? Should I serial.print (value, DEC) or (value, BYTE)?