arduino开发esp8266,用手机wifi点亮led灯源码,适合初学者的学习和使用,源码很简单,容易上手。
2021-06-04 19:54:22 3KB esp8266 arduino
1
ESP8266_STA_UDP_Client
2021-06-04 17:02:15 3.24MB ESP8266_STA_UDP_
能够使用FPGA控制ESP8266实现模块之间的通信
2021-06-04 17:01:46 18KB 通信 ESP8266 verilog
1
nodemcu-flasher-master 是 用于ESP8266下载固件的工具。
1
ESPlorer是nodemcu lua编写工具。需要安装有java环境才能使用。
2021-06-04 14:03:08 2.23MB esp8266 nodemcu代码编辑工具 ESPlorer
1
ESP32 ESP8266 EspTouch SmartConfig 一键智能配网APP 工具 乐鑫官方提供的开源工具 编译好的安卓APP 可以用于ESP32 ESP8266 的SmartConfig一键智能配网。
1
You successfully commissioned a NodeMCU custom build from the release branch. You selected the following 18 modules: adc dht file gpio http i2c mqtt net node ow pwm sjson spi tmr u8g2 uart websocket wifi. We'll keep you posted by email about the progress of your build. In the meantime I suggest you take a look at the build stats to find out how your firmware configuration compares to others in the community.
2021-06-04 12:01:02 660KB nodemcu esp8266 nodemcu固件
1
You successfully commissioned a NodeMCU custom build from the release branch. You selected the following 18 modules: adc dht file gpio http i2c mqtt net node ow pwm sjson spi tmr u8g2 uart websocket wifi.
2021-06-04 12:01:02 672KB nodemcu esp8266 nodemcu固件
1
ESP8266有两种重启方法,分别为:ESP.reset()和ESP.restart(),很多人代码中都用ESP.reset()重启,但是通常情况下使用ESP.restart()会更好, 这两者区别如下: ESP.reset() 是一个硬复位,这种重启方式可能会使一些寄存器回归到原始状态,即丢失寄存器数据,这会导致重启后的程序出现问题,它或多或少像计算机上的复位按钮。 ESP.restart() 是通过向ESP8266的SDK发送信号重启,而不是简单粗暴的复位,所以它是一个更‘软’的重启方式。 所以,把你代码中的ESP.reset()换成ESP.restart()吧! 即使遇到GPOIO#0的问题,我也遇到了同样的问题,但它没有任何作用。 然后我推断出,当我将GPIO用作输出时,也许硬件没有在软复位时将其复位为输入,所以复位将取决于GPIO#0的状态。 因此,在重启之前我将GPIO#0设置为高电平,它可以正常工作! 补充:GPIO 15 低电平、GPIO 0 高电平 、GPIO 2 高电平为ESP8266程序运行模式,需要软重启功能有效 可能需要保证以上三个引脚的电平状态。 另外:GPIO 15 低电平、GPIO 0 低电平 、GPIO 2 高电平为ESP8266 UART下载模式。
1
Blinker 天气时钟 esp8266+SH1106 OLCD屏显示
1