1
« en: Martes 29 de Agosto de 2006, 22:47 »
Alguien sabe si el controlador de LCD S6A0069 es compatible con el HD44780 ?
, no lo puedo hacer funcionar, este es el ejemplo en mikroC.
----------------------------------------------------------------
PIC = 16F84A
xt = 4 Mhz
interface = 8 bits
software = MikroC
----------------------------------------------------------------
char *text = "mikroElektronika";
void main() {
TRISA = 0; // PORTA is output
TRISB = 0; // PORTB is output
// Initialize LCD at PORTA and PORTB with custom pin settings
Lcd8_Config(&PORTA,&PORTB,0,1,2,0,1,2,3,4,5,6,7); (my pinout)
Lcd8_Cmd(LCD_CURSOR_OFF); // Turn off cursor
Lcd8_Out(1, 1, text); // Print text at LCD
}
----------------------------------------------------------------
P.D.:
1) cual es la diferencia entre trabajar en el display con 4 u 8 bits ?
2) que me recomendarían entre CCS o mikroC ?
muchas gracias.