赞
踩
本文将带领大家实现第一个 Arduino 程序,下面我来带大家进行操作。
打开 Arduino IDE,点击【工具】->【开发板】,选择NodeMCU 1.0(ESP-12E Module),图示如下:
然后将开发板通过USB数据线插到电脑上,点击【工具】->【端口】,选中端口,图示如下:
注意:这里端口大家板子的通信端口不一定是COM3,也可能是COM 2~9,反正只要不选COM1就阔以了
接下来点击 【文件】->【示例】->【01.Basics】>【Blink】找到我们要使用的例程,单击便可打开,图示如下:
然后就看到如下代码,代码如下:
- /*
- Blink
- Turns an LED on for one second, then off for one second, repeatedly.
- Most Arduinos have an on-board LED you can control. On the UNO, MEGA and ZERO
- it is attached to digital pin 13, on MKR1000 on pin 6. LED_BUILTIN is set to
- the correct LED pin independent of which board is used.
- If you want to know what pin the on-board LED is connected to on your Arduino
- model, check the Technical Specs of your board at:
- https://www.arduino.cc/en/Main/Products
- modified 8 May 2014
- by Scott Fitzgerald
- modified 2 Sep 2016
- by Arturo Guadalupi
- modified 8 Sep 2016
- by Colby Newman
- This example code is in the public domain.
- http://www.arduino.cc/en/Tutorial/Blink
- */
-
- // the setup function runs once when you press reset or power the board
- void setup() {
- // initialize digital pin LED_BUILTIN as an output.
- pinMode(LED_BUILTIN, OUTPUT);
- }
-
- // the loop function runs over and over again forever
- void loop() {
- digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level)
- delay(1000); // wait for a second
- digitalWrite(LED_BUILTIN, LOW); // turn the LED off by making the voltage LOW
- delay(1000); // wait for a second
- }
点击【验证】按钮,图示如下:
可以看到编译完成,图示如下:
点击【上传】按钮,将代码烧录到开发板中,图示如下:
然后我们可以看到LED灯闪烁,图示如下:
IDE自带例程使用的是宏 LED_BUILTIN
,在大部分 ESP8266 开发板上,这个宏定义对应的是2引脚,以下代码只是将2引脚显式写出来也可达到效果,代码如下:
- /*
- * Blink
- *
- * 等待一秒钟,点亮LED,再等待一秒钟,熄灭LED,如此循环.
- *
- * 在大多数Arduino控制板上(如UNO, MEGA and ZERO等), 2号引脚都连接了一个标有“L”的LED灯
- */
-
- // Nano的2号引脚也连接到了LED, 我们将该引脚设置一个别名“led”
- int led = 2;
-
- // 在板子启动或者复位重启后, setup部分的程序只会运行一次
- void setup() {
- // 将“led”引脚设置为输出状态
- pinMode(led, OUTPUT);
- }
-
- // setup部分程序运行完后,loop部分的程序会不断重复运行
- void loop() {
- digitalWrite(led, HIGH); // 点亮LED
- delay(500); // 等待500毫秒
- digitalWrite(led, LOW); // 通过将引脚电平拉低,关闭LED
- delay(500); // 等待500毫秒
- }
然后点击【上传】按钮,烧录到开发板,可以看到LED闪烁加快了,图示如下:
如果想要LED灯闪烁的更快一些,将 delay 中的数字改小即可实现。
到此 点亮一个 LED 灯介绍完成。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。