Bonjour à tous,
je souhaite allumer 2 LED après un appuie long sur un BP.
BP sur RB0
1 LED sur RB4
et l'autre sur RB5
J'ai donc écris ce programme:
Mais lorsque j'appuie sur mon BP les LED s'allument et s'éteignent aussitôt que je relache le BP.Code:program appuie_long_bp dim i as integer main: trisb.0=1 trisb.4=0 trisb.5=0 i=0 OPTION_REG=%10000000 goto hipl hipl: while true if Button(PORTB,0,1,0) then i=i+1 while i > 3 if portb.4 = 1 then goto bp0 else goto bp end if wend end if wend bp: portb.4=1 portb.5=1 i=0 goto hipl bp0: portb.4=0 portb.5=0 i=0 goto hipl end.
Pouvez-vous m'aider s'il vous plaît?
Merci
-----