AbstractBeliefs

Untitled

Oct 17th, 2011
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. #include <avr/io.h>
  2. #include <util/delay.h>
  3.  
  4. int main(void)
  5. {
  6. PORTB = 255;
  7. while(1)
  8. {
  9. PORTB = ~PORTB;
  10. _ms_delay(1000);
  11. }
  12. return 0;
  13. }
  14.  
Advertisement
Add Comment
Please, Sign In to add comment