STM32CubeMx之esp8266的at指令使用

AT //返回ok则为正常

AT+CWMODE=1//设置为设备模式

AT+CWLAP//搜索附近可用wifi

AT+CWJAP="CMCC-5-7","chb513029"//连接热点

AT+CIPMUX=0//设置wifi为单连接

AT+CIPSTART="TCP","192.168.37.1",1001//连接tcp

这里遇到了重重问题 这里我最后发现是因为以前安装了虚拟机,导致了计算机wifi的网络和8266的ip不是同个网段

http://t.csdn.cn/G8wrg

AT+CIPSEND=5//代表发送5个字节
AT+CIPCLOSE//是断开tcp连接
AT+CWQAP//断开和路由器的连接

STM32CubeMx之esp8266的at指令使用_第1张图片

 

 STM32CubeMx之esp8266的at指令使用_第2张图片

 STM32CubeMx之esp8266的at指令使用_第3张图片

 

 STM32CubeMx之esp8266的at指令使用_第4张图片

 STM32CubeMx之esp8266的at指令使用_第5张图片

 这样就可以将8266当作设备,通过路由器wifi 和电脑服务器通信

下面是8266当服务器和设备的模式

STM32CubeMx之esp8266的at指令使用_第6张图片

 STM32CubeMx之esp8266的at指令使用_第7张图片

 STM32CubeMx之esp8266的at指令使用_第8张图片

 STM32CubeMx之esp8266的at指令使用_第9张图片

 STM32CubeMx之esp8266的at指令使用_第10张图片

 

 STM32CubeMx之esp8266的at指令使用_第11张图片

 STM32CubeMx之esp8266的at指令使用_第12张图片

 STM32CubeMx之esp8266的at指令使用_第13张图片

 STM32CubeMx之esp8266的at指令使用_第14张图片

 STM32CubeMx之esp8266的at指令使用_第15张图片

 STM32CubeMx之esp8266的at指令使用_第16张图片

 STM32CubeMx之esp8266的at指令使用_第17张图片

 STM32CubeMx之esp8266的at指令使用_第18张图片

 STM32CubeMx之esp8266的at指令使用_第19张图片

 

你可能感兴趣的:(stm32,嵌入式硬件,单片机)