Advertisement
Guest User

Untitled

a guest
Aug 30th, 2016
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. void setup() {
  2. // put your setup code here, to run once:
  3. pinMode(2, OUTPUT);
  4. }
  5.  
  6. void loop() {
  7. // put your main code here, to run repeatedly:
  8. digitalWrite(2, HIGH);
  9. delay(500);
  10. digitalWrite(2, LOW);
  11. delay(500);
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement