bonjour,
j'ai un problème j'ai fait le programme ci-dessous avec mikroC pour tester mon affichage lcd (DEM20231) avec un pic 16F687 mais mon programme n'affiche que des carrés et je ne comprend pas le souci. est-ce que qulqu'un pourrrait m'aider svp ?
merci d'avance.
salutations
void main () {
char text[7]="coucou";
char I = 0 ;
PORTC = 0x00;
TRISC = 0x00;
Lcd_Init(&portC); // Initialize LCD
Lcd_Cmd(LCD_CLEAR); // Clear display
Lcd_Cmd(LCD_CURSOR_OFF); // Cursor off
Lcd_Config(&PORTC,3,1,0,7,6,5, 4);
while(1)
{ // endless loop
for(I=1;I<7;I++)
{
Lcd_Cmd(LCD_CLEAR); // Clear display
Lcd_Cmd(LCD_CURSOR_OFF); // Cursor off
Lcd_chr(1,I,text[I-1]); // afficher texte
}
Delay_ms(2000);
}
}
-----