Bonsoir à tous,
Je rencontre un petit problème avec mon afficheur lcd 2*16 caractére lm1602 acheté chez gotronic, le probleme est que je n'arrive pas a afficher un nombre plus grand que 255 sur l'afficheur!!!! Alors le char compte de 0 à 255 mais je le remplace par un int ou short mais pareil l'afficheur ne veut pas dépasser 255, j'ai meme creer une variable result de type short qui mulitplie par 10 le chiffre cnt, par exemple si cnt est de 30, il doit m'afficher 300 mais non il accepte pas, par contre de 0 jusqu'a 255 il accepte alors c'est quoi le probleme??
Code:#define BP1 PORTC.F0 #define BP2 PORTC.F1 #define RESET PORTC.F2 unsigned short cnt=0; unsigned short result; char txt0[] = "H"; char txt1[] = "Cl: "; char txt2[] = "Estimation Rec: "; char txt3[] = "E"; int txt[6]; // LCD module connections sbit LCD_RS at RB4_bit; sbit LCD_EN at RB5_bit; sbit LCD_D4 at RB6_bit; sbit LCD_D5 at RB1_bit; sbit LCD_D6 at RB2_bit; sbit LCD_D7 at RB3_bit; sbit LCD_RS_Direction at TRISB4_bit; sbit LCD_EN_Direction at TRISB5_bit; sbit LCD_D4_Direction at TRISB6_bit; sbit LCD_D5_Direction at TRISB1_bit; sbit LCD_D6_Direction at TRISB2_bit; sbit LCD_D7_Direction at TRISB3_bit; void main() { INTCON.GIE=1; INTCON.INTE=1; INTCON.INTF=0; TRISC=1; PORTC=0; TRISB.F0=1; ANSEL = 0; // Configure AN pins as digital I/O ANSELH = 0; Lcd_Init(); // Initialize LCD Lcd_Cmd(_LCD_CLEAR); // Clear display Lcd_Cmd(_LCD_CURSOR_OFF); // Cursor off Lcd_Out(1, 3, txt0); Lcd_Out(2, 2, txt1); WordToStr(cnt, txt); // Transform counter value to string Lcd_Out(2, 10, txt); // Display counter value on LCD while(1){ if(BP1==1) { delay_ms(150); while(!BP1); delay_ms(150); cnt++; WordToStr(cnt, txt); // Transform counter value to string Lcd_Out(2, 10, txt); // Display counter value on LCD } else if(RESET==1){ cnt=0; WordToStr(cnt, txt); // Transform counter value to string Lcd_Out(2, 10, txt); // Display counter value on LCD } else if(BP2==1){ Lcd_Cmd(_LCD_CLEAR); // Clear display Lcd_Cmd(_LCD_CURSOR_OFF); // Cursor off Lcd_Out(1, 2, txt2); Lcd_Out(2, 11, txt3); result=cnt*10; WordToStr(result, txt); // Transform counter value to string Lcd_Out(2, 2, txt); // Display counter value on LCD delay_ms(2000); Lcd_Cmd(_LCD_CLEAR); Lcd_Out(1, 3, txt0); Lcd_Out(2, 2, txt1); WordToStr(cnt, txt); // Transform counter value to string Lcd_Out(2, 10, txt); // Display counter value on LCD } } }
-----