weinerm21

Untitled

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