[经验] 【一起玩ESP8266】修改网络参数解决reconnect问题

mikeliujia   2016-10-9 17:18 楼主
貌似有多位坛友出现类似问题:ESP8266通过mini USB线连接PC机后,打开串口工具,总会莫名弹出一句话,而且是不停弹,压根没法用命令行,重刷各种版本固件也不能解决。如下图
suoma_bug.jpg

my_bug.jpg
bug.jpg
其实这些大体都是网络参数问题。在大D的提醒下,修改网络参数就好了!具体做法如下:
新建一个文本文档,将修改网络参数的脚本复制进去,红色部分修改为你的SSID和密码,修改后全选复制
  1. import network

  2. wlan = network.WLAN(network.STA_IF) # create station interface
  3. wlan.active(True)       # activate the interface
  4. wlan.scan()             # scan for access points
  5. wlan.isconnected()      # check if the station is connected to an AP
  6. wlan.connect('<font color="#ff0000">Hello Motor</font>', '<font color="#ff0000">xny123456</font>') # connect to an AP
  7. wlan.config('mac')      # get the interface's MAC adddress
  8. wlan.ifconfig()         # get the interface's IP/netmask/gw/DNS addresses

  9. ap = network.WLAN(network.AP_IF) # create access-point interface
  10. ap.active(True)         # activate the interface
  11. ap.config(essid='ESP-AP') # set the ESSID of the access point
连接好ESP8266和PC机,通过KiTTY使用串口,快速使用ctrl+C中断当前弹出的语句,右击右键,会自动粘帖刚才复制的脚本语句,此时要快速的回车,让脚本执行。设置好后就正常了!
bug_ok.jpg
have fun!


回复评论 (3)

感谢分享,我也试看看。
点赞  2016-10-9 18:19
感谢分享
极致物业管理软件,将软件做到极致 www.jeez.com.cn 联系电话:4008880135
点赞  2016-10-12 13:19
谢谢分享学习一下
点赞  2016-10-18 21:30
电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 京公网安备 11010802033920号
    写回复