AbstractBeliefs

Untitled

Dec 27th, 2011
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.14 KB | None | 0 0
  1. #include <avr/io.h>
  2. #include <util/delay.h>
  3.  
  4. int main(){
  5.   DDRB = 255;
  6.   PORTB = 255;
  7.   for (;;){
  8.     PORTB = ~PORTB;
  9.   }
  10.   return 0;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment