Guest User

Untitled

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