1个LED灯闪烁的Arduino控制

时间:2023-03-09 15:29:33
1个LED灯闪烁的Arduino控制

控制任务和要求

让一个LED灯闪烁

接线

1个LED灯闪烁的Arduino控制

程序设计

 1 int half_cycle=1000;   // define the cycle time of LED blink
2 int LED_pin=13; // define the LED pin
3
4 // the setup function runs once when you press reset or power the board
5 void setup()
6 {
7 pinMode(LED_pin, OUTPUT); // initialize digital pin 13 as an output.
8 }
9
10 // the loop function runs over and over again forever
11 void loop()
12 {
13 digitalWrite(LED_pin, HIGH); // turn the LED on (HIGH is the voltage level)
14 delay(half_cycle); // wait for half_cycle time
15 digitalWrite(LED_pin, LOW); // turn the LED off by making the voltage LOW
16 delay(half_cycle); // wait for half_cycle time
17 }

注解

改变LED_pin的值可以改变LED的联接引脚,改变half_cycle的值可以改变闪烁周期。