Quesiton about reading data out of EEPROM

I am trying to plot an error signal that my microcontroller is recording. I am logging the data in an array at 100ms samples, the array is in RAM, however after the program is finsihed executing, the last command tells the program to write the data in an array to the EEPROM so I can read it out later through another program. (EACH data point is a byte)

I read it out throught the command line however, I should be getting numebers instead I get symbols which I think are represented by bytes, (MY data).

Command line Sample
Address of EEPROM vs. the byte value. How can I convert these symbols back into the number byte. Is it ASCII or somthing? Thanks
935, ÷
936, ?
937, ÿ
938, ?
939, Ê
940, ÿ
941, ¾
942, m
943, æ
944, _
945, t
946, :
947, ¯
948,
949, ï
950, p
951, .
952, ß
953, ê
954, z
955, ù
956, ö
957, ¼
958, ¿
959, Õ
960, 
961, 
962, ?
963, =
964, þ
965, }
966, 
967,
968, ù
969, ï
970, ×
971, ß
972, [
973, <
974, ®
975, Ý
976, o
977, ï
978, ò
979, k
980, }
981, ñ
982, >
983, ×
984, û
985, Þ
986, þ
987, ÿ
988, 2
989, ï
990, ï
991, Ø
992, §
993, Ï
994, æ
995, Ý
996, ÿ
997, ·
998, ß
999, ÿ

Ultimately all data is bytes, my guess is you're printing it as chars instead of numbers.

Can you post the part of your code where you output the data?

Chris

If you look at asciitable.com I am sure you will see they are characters.
try this
Serial.print(yourdata, HEX);
or
Serial.print(yourdata, DEC);

Thank you, I'm going to print out in decimal.