步骤1:让我们看一下概述
在顶部,您可以看到另一块板,这是ESP部分。 ESP8266是一个模块,但它是板载电路有机体,可让我们通过wi-fi连接。
在背面,给出了书面名称:ESP12E DEVKIT V2和链接http://
第2步:首次连接到PC
当我们在NodeMCU板与计算机之间建立连接时,会自动出现一个驱动程序加载窗口,您可以轻松地了解计算机提供的COM端口号。我的驱动程序加载成功,并给了我15号COM端口以访问我的NodeMCU板。
在微型USB端口附近有两个黑色按钮。一个是RESET,另一个是FLASH。当您单击RESET按钮时,您会看到ESP8266侧面的蓝色闪烁。
步骤3:如何使用Arduino IDE编程NodeMCU?
1。从arduino.cc网站的下载部分安装Arduino IDE(也可以从这里检查有关安装,更新和删除Arduino IDE的说明)
2。运行Arduino IDE的arduino.exe
3。 Arduino IDE 》》文件》》首选项(Shourtcut为CTRL + COMMA)》》设置选项卡》》在其他Board Manager URL侧键入此》》,然后单击确定。
http://arduino.esp8266.com/stable/package_esp8266com_index.json
此json对象将从网站esp8266.com带到NodeMCU的必要驱动程序到我们的Arduino IDE。
4。 Arduino IDE 》》工具》》板》》板管理器。.. 》》类型=贡献》》单击安装(或者从搜索栏中搜索ESP8266)
5。 Arduino IDE 》》工具》》开发板》》 NodeMCU 1.0(ESP-12E MODULE)
注意:我们有NodeMCU v2,但我们选择了1.0。
步骤4:NodeMCU的闪烁代码-Hello World LED
在Arduino IDE上》》文件》》示例》》 ESP8266 》》闪烁
/*
ESP8266 Blink by Simon Peter
Blink the blue LED on the ESP-01 module
This example code is in the public domain
The blue LED on the ESP-01 module is connected to GPIO1
(which is also the TXD pin; so we cannot use Serial.print() at the same time)
Note that this sketch uses LED_BUILTIN to find the pin with the internal LED
*/
void setup() {
pinMode(LED_BUILTIN, OUTPUT); // Initialize the LED_BUILTIN pin as an output
}
// the loop function runs over and over again forever
void loop() {
digitalWrite(LED_BUILTIN, LOW); // Turn the LED on (Note that LOW is the voltage level
// but actually the LED is on; this is because
// it is acive low on the ESP-01)
delay(1000); // Wait for a second
digitalWrite(LED_BUILTIN, HIGH); // Turn the LED off by making the voltage HIGH
delay(2000); // Wait for two seconds (to demonstrate the active low LED)
}
使用Micro USB电缆将NodeMCU连接到计算机然后单击“上传”按钮,将您的Blink代码上传到NodeMCU。
此代码将使您的NodeMCU的蓝色指示灯运行1秒钟,然后永久关闭。
现在,我们正在工作NodeMCU板基本上就像Arduino板一样。
注意:在此站点上,提到了Arduino IDE v1.6.7可能无法与NodeMCU很好地工作,如果您遇到此类Arduino IDE问题,则需要更新您的Arduino IDE程序。我可以告诉你如何立即更新程序。
第5步:让我们做些LAN欢乐:)-浏览器上的Hello World
在Arduino IDE 》》文件》》示例》》 ESP8266 》》 ESP8266HelloServer 》》修改以下行:
const char* ssid = “。..。..。.”; //Your Wi-Fi Modem‘s SSID name
const char* password = “。..。..。..。.”; //The password for the Wi-Fi
然后单击在上传按钮上。上传后,打开串行监视器。单击重置按钮,然后从串行监视器中了解您需要使用哪种IP地址
注意:我们使用的波特率是:115200
现在,您已经做好了! :D
责任编辑:wv
-
NODEMCU
+关注
关注
13文章
289浏览量
21295
发布评论请先 登录
相关推荐
评论