pbp tek tuşla port toggle

Başlatan mikro29, 27 Ocak 2006, 10:13:48

mikro29

pbp de tek butonla portların herhangi birisini komple toggle nasıl yapabiliriz... butona ilk basmada port komple 0 tekrar butona basınca komple 1  :(

ete

if porta.0=1 then
  if portb=0 then 
     portb=255
     else
     portb=0
   endif
   pause 100

alternatif kod;

    if porta.0=1 then X=1-X
      if X=0 then PORTB=0
      if X=1 then PORTB=255
      pause 100

alternatif kod;

     if PortA.0=0 then
     PORTB=PORTB XOR %11111111

ETE
Bilgi hazinedir paylaştıkça büyür.            http://etepic.com

mikro29