登录 注册
当前位置:主页 > 资源下载 > 50 > WIFI—ESP8266.rar下载

WIFI—ESP8266.rar下载

  • 更新:2024-11-11 22:16:05
  • 大小:12.96MB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:硬件开发 - 开发技术
  • 格式:RAR

资源介绍

内含app控制控制例程,WIFI透传,还有用户手册 本例程演示如何使用串口调试助手测试WF-ESP8266 WiFi模块 通过串口调试助手配置模块,并与外界进行数据传输 ESP8266 作为 STA TCP Client 向网络助手上传 DHT11 温湿度 参考代码如下: #include "stm32f10x.h" #include "bsp_usart1.h" #include "bsp_SysTick.h" #include "bsp_esp8266.h" #include "test.h" #include "bsp_dht11.h" /** * @brief 主函数 * @param 无 * @retval 无 */ int main ( void ) { /* 初始化 */ USARTx_Config (); //初始化串口1 SysTick_Init (); //配置 SysTick 为 1ms 中断一次 ESP8266_Init (); //初始化WiFi模块使用的接口和外设 printf ( "\r\n野火 WF-ESP8266 WiFi模块测试例程\r\n" ); //打印测试例程提示信息 ESP8266_StaTcpClient_UnvarnishTest (); while ( 1 ); }