Advertisement
Guest User

Untitled

a guest
Mar 18th, 2019
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.26 KB | None | 0 0
  1. #include <Arduino.h>
  2.  
  3. void setup()
  4. {
  5.   // put your setup code here, to run once:
  6.   pinMode(2, OUTPUT);
  7. }
  8.  
  9. void loop()
  10. {
  11.   // put your main code here, to run repeatedly:
  12.   digitalWrite(2, HIGH);
  13.   delay(1000);
  14.   digitalWrite(2, LOW);
  15.   delay(1000);
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement