' originally posted EEdata var byte [5] ' make space for mydata in eeprom
EEdata Data 0 ' This is where the data is written to in eeprom, initial value is 0
Cntr var byte ' counter to index the array
' write the data to the eeprom
for Cntr = 0 to 4
write EEdata+Cntr, mydata[cntr]
next
' done




Bookmarks