Advertisement
Nofew

Untitled

Oct 24th, 2012
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.15 KB | None | 0 0
  1. void setup() {
  2.      pinMode(5, OUTPUT);
  3. }
  4.  
  5. void loop() {
  6.      digitalWrite(5, HIGH);
  7.      delay(500);
  8.      digitalWrite(5, LOW);
  9.      delay(500);
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement