貌似有多位坛友出现类似问题:ESP8266通过mini USB线连接PC机后,打开串口工具,总会莫名弹出一句话,而且是不停弹,压根没法用命令行,重刷各种版本固件也不能解决。如下图
其实这些大体都是网络参数问题。在大D的提醒下,修改网络参数就好了!具体做法如下:
新建一个文本文档,将修改网络参数的脚本复制进去,红色部分修改为你的SSID和密码,修改后全选复制
- import network
- wlan = network.WLAN(network.STA_IF) # create station interface
- wlan.active(True) # activate the interface
- wlan.scan() # scan for access points
- wlan.isconnected() # check if the station is connected to an AP
- wlan.connect('<font color="#ff0000">Hello Motor</font>', '<font color="#ff0000">xny123456</font>') # connect to an AP
- wlan.config('mac') # get the interface's MAC adddress
- wlan.ifconfig() # get the interface's IP/netmask/gw/DNS addresses
- ap = network.WLAN(network.AP_IF) # create access-point interface
- ap.active(True) # activate the interface
- ap.config(essid='ESP-AP') # set the ESSID of the access point
连接好ESP8266和PC机,通过KiTTY使用串口,快速使用ctrl+C中断当前弹出的语句,右击右键,会自动粘帖刚才复制的脚本语句,此时要快速的回车,让脚本执行。设置好后就正常了!
have fun!