没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
stm32+esp8266实现局域网下小灯控制源码。 1,串口写指令 通过stm32串口2发送AT指令给esp8266,此时可以通过串口一查看配置的AT指令。可以在程序中找到对应的语句 具体指令 AT AT+RST AT+CWMODE_CUR=1 //模式选择 AT+CWJAP_CUR="WIFI名","密码" //注意这里对应连接路由器的 AT+CIFSR //获取IP,用于随后TCP/IP通讯 AT+CIPMUX=1 //多连接模式 AT+CIPSERVER=1,8288 //设置通讯端口 上述写入语句可以在串口1查看,并获得相应的OK回复。 2,stm32程序 主要包含了一些初始化配置,然后在main函数,通过判断接收到的指令来控制小灯的亮灭。部分程序如下: while ( 1 ) { switch(flag) { case 'a': GPIO_SetBits(GPIOA,GPIO_Pin_0 );break;//开灯 case 'c': GPIO_ResetBits(GPIOA,GPIO_Pin_0 );break;/ } }
资源详情
资源评论
资源推荐
收起资源包目录
STM32+ESP8266+APP手机控制.zip (89个子文件)
ESP8266-STA-master
Link.uvoptx 19KB
演示3.mp4 2.91MB
网络调试助手
USR-TCP232-Test.cfg 315B
USR-TCP232-Test.exe 1001KB
AiThinker_Serial_Tool_V1.2.3
AiThinker Serial Tool V1.2.3.exe 742KB
en
AiThinker_Serial_Tool.resources.dll 283KB
aithinker_serial_tool.cfg 4KB
User
usart
usart.c 5KB
usart.h 5KB
Common
Common.c 3KB
Common.h 464B
main.c 1004B
Test
test.c 894B
test.h 920B
delay
delay.c 840B
delay.h 222B
esp8266
esp8266.c 14KB
esp8266.h 6KB
stm32f10x_it.c 4KB
stm32f10x_conf.h 3KB
system_stm32f10x.c 36KB
stm32f10x_it.h 2KB
sys
sys.c 2KB
sys.h 2KB
Libraries
inc
stm32f10x_spi.h 17KB
stm32f10x_crc.h 2KB
stm32f10x_tim.h 51KB
stm32f10x_usart.h 16KB
stm32f10x_dma.h 20KB
stm32f10x_fsmc.h 26KB
stm32f10x_i2c.h 29KB
stm32f10x_dac.h 15KB
stm32f10x_iwdg.h 4KB
misc.h 9KB
stm32f10x_bkp.h 7KB
stm32f10x_pwr.h 4KB
stm32f10x_dbgmcu.h 4KB
stm32f10x_exti.h 7KB
stm32f10x_can.h 27KB
stm32f10x_adc.h 21KB
stm32f10x_cec.h 6KB
stm32f10x_rcc.h 30KB
stm32f10x_rtc.h 4KB
stm32f10x_flash.h 25KB
stm32f10x_sdio.h 21KB
stm32f10x_wwdg.h 3KB
stm32f10x_gpio.h 20KB
CMSIS
system_stm32f10x.h 2KB
core_cm3.c 17KB
core_cm3.h 84KB
stm32f10x.h 619KB
startup
startup_stm32f10x_hd.s 15KB
startup_stm32f10x_ld.s 12KB
startup_stm32f10x_ld_vl.s 13KB
startup_stm32f10x_md.s 12KB
startup_stm32f10x_xl.s 16KB
startup_stm32f10x_md_vl.s 14KB
startup_stm32f10x_cl.s 15KB
startup_stm32f10x_hd_vl.s 15KB
system_stm32f10x.c 36KB
src
stm32f10x_adc.c 46KB
stm32f10x_fsmc.c 35KB
misc.c 7KB
stm32f10x_flash.c 61KB
stm32f10x_rcc.c 50KB
stm32f10x_wwdg.c 6KB
stm32f10x_tim.c 107KB
stm32f10x_iwdg.c 5KB
stm32f10x_gpio.c 23KB
stm32f10x_dbgmcu.c 5KB
stm32f10x_pwr.c 9KB
stm32f10x_crc.c 3KB
stm32f10x_dac.c 19KB
stm32f10x_sdio.c 28KB
stm32f10x_can.c 44KB
stm32f10x_bkp.c 8KB
stm32f10x_cec.c 11KB
stm32f10x_rtc.c 8KB
stm32f10x_usart.c 37KB
stm32f10x_i2c.c 45KB
stm32f10x_spi.c 30KB
stm32f10x_exti.c 7KB
stm32f10x_dma.c 29KB
Listings
Template.map 117KB
startup_stm32f10x_hd.lst 53KB
README.md 1B
keilkill.bat 401B
Link.uvguix.Harry 70KB
Link.uvprojx 22KB
共 89 条
- 1
跋扈洋
- 粉丝: 6018
- 资源: 146
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功
评论30