Bonsoir SVP comment On peut envoyer un msg pendant le front montant seulement.
Cad si PORTA.F0 le code doit envoyer un seul msg (J'utilise un bouton poussoir) mais la vitesse d'envoie est tees grande de telle sorte si j'appuie sur le bouton poussoir le code va envoyer plusieurs fois le msg . C'est pour cette raison que je pense à une structure que me permet d'envoyer le msg pendant le front montont seulement .SVP avez vous une idée . MERCIIII d'avance
Code:unsigned short k=0; char i,i1; short j; char txt[]="DOWN" ; sbit LCD_RS at RB0_bit; sbit LCD_EN at RB3_bit; sbit LCD_D4 at RB4_bit; sbit LCD_D5 at RB5_bit; sbit LCD_D6 at RB6_bit; sbit LCD_D7 at RB7_bit; sbit LCD_RS_Direction at TRISB0_bit; sbit LCD_EN_Direction at TRISB3_bit; sbit LCD_D4_Direction at TRISB4_bit; sbit LCD_D5_Direction at TRISB5_bit; sbit LCD_D6_Direction at TRISB6_bit; sbit LCD_D7_Direction at TRISB7_bit; void main() { TRISA=0XFF; PORTA=0; Lcd_Init(); Lcd_Cmd(_LCD_CURSOR_OFF); Lcd_Cmd(_LCD_CLEAR); TRISA=0XFF; UART1_Init(9600); Delay_ms(100); UART1_Write_Text("Start"); while (1) { if (UART1_Data_Ready()) { i=UART1_Read(); if (i==13) { Lcd_Cmd(_LCD_CLEAR); LCD_Cmd(_LCD_RETURN_HOME); } else { LCD_Chr_CP(i); } } if (PORTA.F0==1) { UART1_Write_Text("MSG1");} // le msg à envoyé } }
-----