Advertisement
2607

Blinks10

Jul 18th, 2019
345
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. void setup() {
  2.   // put your setup code here, to run once:
  3.   pinMode(LED_BUILTIN, OUTPUT);
  4. }
  5.  
  6. void loop() {
  7.   // put your main code here, to run repeatedly:
  8.   digitalWrite(LED_BUILTIN, HIGH);   // turn the LED on (HIGH is the voltage level)
  9.   delay(10000);                       // wait for a second
  10.   digitalWrite(LED_BUILTIN, LOW);    // turn the LED off by making the voltage LOW
  11.   delay(10000);                       // wait for a second
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement