1/*
2 Blink
34 Turns an LED on for one second, then off for one second, repeatedly.
56 Most Arduinos have an on-board LED you can control. On the UNO, MEGA and ZERO
7 it is attached to digital pin 13, on MKR1000 on pin 6. LED_BUILTIN is set to
8 the correct LED pin independent of which board is used.
9 If you want to know what pin the on-board LED is connected to on your Arduino
10 model, check the Technical Specs of your board at:
11 https://www.arduino.cc/en/Main/Products
1213 modified 8 May 2014
14 by Scott Fitzgerald
15 modified 2 Sep 2016
16 by Arturo Guadalupi
17 modified 8 Sep 2016
18 by Colby Newman
1920 This example code is in the public domain.
2122 http://www.arduino.cc/en/Tutorial/Blink
23*/2425// the setup function runs once when you press reset or power the board26voidsetup(){27// initialize digital pin LED_BUILTIN as an output.28pinMode(LED_BUILTIN,OUTPUT);29}3031// the loop function runs over and over again forever32voidloop(){33digitalWrite(LED_BUILTIN,HIGH);// turn the LED on (HIGH is the voltage level)34delay(1000);// wait for a second35digitalWrite(LED_BUILTIN,LOW);// turn the LED off by making the voltage LOW36delay(1000);// wait for a second37}
Blink
arduino
1/*
2 Blink
34 Turns an LED on for one second, then off for one second, repeatedly.
56 Most Arduinos have an on-board LED you can control. On the UNO, MEGA and ZERO
7 it is attached to digital pin 13, on MKR1000 on pin 6. LED_BUILTIN is set to
8 the correct LED pin independent of which board is used.
9 If you want to know what pin the on-board LED is connected to on your Arduino
10 model, check the Technical Specs of your board at:
11 https://www.arduino.cc/en/Main/Products
1213 modified 8 May 2014
14 by Scott Fitzgerald
15 modified 2 Sep 2016
16 by Arturo Guadalupi
17 modified 8 Sep 2016
18 by Colby Newman
1920 This example code is in the public domain.
2122 http://www.arduino.cc/en/Tutorial/Blink
23*/2425// the setup function runs once when you press reset or power the board26voidsetup(){27// initialize digital pin LED_BUILTIN as an output.28pinMode(LED_BUILTIN,OUTPUT);29}3031// the loop function runs over and over again forever32voidloop(){33digitalWrite(LED_BUILTIN,HIGH);// turn the LED on (HIGH is the voltage level)34delay(1000);// wait for a second35digitalWrite(LED_BUILTIN,LOW);// turn the LED off by making the voltage LOW36delay(1000);// wait for a second37}