Page 1 of 1

reading eeprom ??

Posted: Fri Oct 02, 2009 8:18 am
by numnutts
hi guy's and gals, im trying to read an internal eeprom in pic , have i set up a read macro for this but can i read a range of bytes or have i got to read bit by bit ?? i stored a string of bytes in eeprom and want to display them on the lcd

thanks

Re: reading eeprom ??

Posted: Fri Oct 02, 2009 8:46 am
by Benj
Hello

You must read and write the EEPROM a byte at a time. The Flowcode component macros will allow you to read a byte when you specify the address and write a byte when you specify the address and the data to be written. If you need to collect an array of bytes than you can do this by creating a simple loop.

Please do not double post onto the forums.

Re: reading eeprom ??

Posted: Sat Oct 03, 2009 5:26 am
by numnutts
Benj wrote:Hello

You must read and write the EEPROM a byte at a time. The Flowcode component macros will allow you to read a byte when you specify the address and write a byte when you specify the address and the data to be written. If you need to collect an array of bytes than you can do this by creating a simple loop.

Please do not double post onto the forums.

thanks benj i will give it a go