hello robert thanks for replying, oh oo this code
hello robert thanks for replying, oh oo this code

PORTB DEFINE LCD_DREG
DEFINE LCD_DBIT 4
PORTB DEFINE LCD_RSREG
DEFINE LCD_RSBIT 1
PORTB DEFINE LCD_EREG
DEFINE LCD_EBIT 2


SCL var PORTA.0 'Clock pin
SDA var PORTA.1 'Data pin

E0 var byte 'Address <<<< I changed this to "WORD"

B1 var byte 'Data 1


ADCON1 = 7 'Set PORTA and PORTE to digital

Pause 100 'Wait for LCD to start up
b1 = e0 + $ 80 'B1 is the EEPROM data

pause 100
I2CWRITE SDA, SCL, $ A0, E0, [B1, "pic basic pro"] 'WRITTEN
pause 100
I2CREAD SDA, SCL, $ A0, E0, b1
PAUSE 100
lcdout $ FE, 1, B1
end

I want the pic 16F628A EEPROM read and write q 24c32a this recorded in the external EEPROM and appears on the LCD, the case would be the phrase "pic basic pro"

sorry my english, I'm Brazilian, sao paulo

thank you
fernandocsouza