硬件平台:PC机一台,ibox卡片电脑一只,arduino扩展板一个 软件平台:WIN7操作系统,android4.0或android4.4系统 打开arduino的IDE开发工具,依次点击文件->示例->01.Basics->Blink,LED灯闪烁的示例程序将会被打开,如下图所示:
程序源码如下: - // the setup function runs once when you press reset or power the board
- void setup() {
- // initialize digital pin LED1 as an output.
- pinMode(LED1, OUTPUT);
- }
-
- // the loop function runs over and over again forever
- void loop() {
- digitalWrite(LED1, HIGH); // turn the LED on (HIGH is the voltage level)
- delay(1000); // wait for a second
- digitalWrite(LED1, LOW); // turn the LED off by making the voltage LOW
- delay(1000); // wait for a second
- }
复制代码 可见控制一个LED灯相当的简单,首先在setup函数中通过pinMode函数将控制LED灯的GPIO口设置为输出,然后在loop函数中使用digitalWrite函数就能实现该管脚的高低电平控制,实现LED灯每隔一秒闪烁一次。
|