当前位置:   article > 正文

物联网-ESP8266实战(四)- 点亮一个 LED 灯_esp8266上面的灯的端口是哪一个

esp8266上面的灯的端口是哪一个

本文将带领大家实现第一个 Arduino 程序,下面我来带大家进行操作。

一、点亮一个 LED 灯

打开 Arduino IDE,点击【工具】->【开发板】,选择NodeMCU 1.0(ESP-12E Module),图示如下:

  

然后将开发板通过USB数据线插到电脑上,点击【工具】->【端口】,选中端口,图示如下:

  

注意:这里端口大家板子的通信端口不一定是COM3,也可能是COM 2~9,反正只要不选COM1就阔以了

接下来点击 【文件】->【示例】->【01.Basics】>【Blink】找到我们要使用的例程,单击便可打开,图示如下:

  

然后就看到如下代码,代码如下:

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

点击【验证】按钮,图示如下:

  

可以看到编译完成,图示如下:

  

点击【上传】按钮,将代码烧录到开发板中,图示如下:

  

然后我们可以看到LED灯闪烁,图示如下:

  

二、代码修改

IDE自带例程使用的是宏 LED_BUILTIN,在大部分 ESP8266 开发板上,这个宏定义对应的是2引脚,以下代码只是将2引脚显式写出来也可达到效果,代码如下:

  1. /*
  2. * Blink
  3. *
  4. * 等待一秒钟,点亮LED,再等待一秒钟,熄灭LED,如此循环.
  5. *
  6. * 在大多数Arduino控制板上(如UNO, MEGA and ZERO等), 2号引脚都连接了一个标有“L”的LED灯
  7. */
  8. // Nano的2号引脚也连接到了LED, 我们将该引脚设置一个别名“led”
  9. int led = 2;
  10. // 在板子启动或者复位重启后, setup部分的程序只会运行一次
  11. void setup() {
  12. // 将“led”引脚设置为输出状态
  13. pinMode(led, OUTPUT);
  14. }
  15. // setup部分程序运行完后,loop部分的程序会不断重复运行
  16. void loop() {
  17. digitalWrite(led, HIGH); // 点亮LED
  18. delay(500); // 等待500毫秒
  19. digitalWrite(led, LOW); // 通过将引脚电平拉低,关闭LED
  20. delay(500); // 等待500毫秒
  21. }

然后点击【上传】按钮,烧录到开发板,可以看到LED闪烁加快了,图示如下:

  

如果想要LED灯闪烁的更快一些,将 delay 中的数字改小即可实现。

到此 点亮一个 LED 灯介绍完成。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/699025
推荐阅读
相关标签
  

闽ICP备14008679号