Hello Alain,

I tried the SPLC780D controller, but I couldn't make the 8x2 LCD to work.

But, my code is working fine on a 16F877 with a HD44780 controller (20x2).

Code:
DEFINE OSC 20
ADCON1 = 7

DEFINE LCD_DREG PORTD
DEFINE LCD_DBIT 4
DEFINE LCD_RSREG PORTC
DEFINE LCD_RSBIT 6
DEFINE LCD_EREG PORTC
DEFINE LCD_EBIT 7
DEFINE LCD_BITS 4
DEFINE LCD_LINES 2
DEFINE LCD_COMMANDUS 2000
DEFINE LCD_DATAUS 50

Pause 500

LCDOut $fe, 1
LCDOut "Hello Word"

End
Any advice on how to configure this controller is much appreciated.

Thanks!

Daniel.