Advertisement
RnD

Untitled

RnD
Nov 29th, 2012
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #include <iom16.h>
  2. int main( void ){
  3.  
  4. DDRD=255;
  5. PORTA=1;
  6. bool ijungtas = false;
  7.  
  8. while(true){
  9.     if (!(PINA&1)){
  10.         if(ijungtas==false){
  11.             PORTD=255;
  12.             ijungtas=true;
  13.         }else{
  14.             PORTD=0
  15.         }
  16.     }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement