Advertisement
Guest User

Untitled

a guest
Jul 26th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. int PORT = 8;
  2.  
  3. void setup() {
  4. // put your setup code here, to run once:
  5.  
  6. }
  7.  
  8. void loop() {
  9. // put your main code here, to run repeatedly:
  10. digitalWrite(PORT, HIGH);
  11. delay(1000);
  12. digitalWrite(PORT, LOW);
  13. delay(1000);
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement