Guest User

Untitled

a guest
Nov 19th, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. int retardo = 200;
  2. int i =3;
  3.  
  4. void setup() {
  5. Serial.begin(9600);
  6. DDRB=0b000000;
  7.  
  8. }
  9.  
  10. void loop(){
  11. PINB = 0b100011;
  12.  
  13. delay(retardo);
  14. PINB =PINB & 0b011100;
  15. }
Add Comment
Please, Sign In to add comment