基本信息
源码名称:STM32通过ESP8266连接ONENET
源码大小:3.51M
文件格式:.rar
开发语言:C/C++
更新时间:2021-12-28
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍

STM32通过ESP8266连接ONENET



#include "sys.h"
#include "delay.h"
#include "usart.h"
#include "led.h"
#include "dht11.h"
#include "GY302.h"
#include "key.h"  
 //网络协议层
#include "onenet.h"

//网络设备
#include "esp8266.h"
//C库
#include <string.h> 
//单片机头文件
#include "stm32f10x.h"
#include "smog.h"
#include "adc.h"



/*
************************************************************
* 函数名称: Hardware_Init
*
* 函数功能: 硬件初始化
*
* 入口参数:
*
* 返回参数:
*
* 说明: 初始化单片机功能以及外接设备
************************************************************
*/
void Hardware_Init(void)
{

NVIC_PriorityGroupConfig(NVIC_PriorityGroup_2); //中断控制器分组设置

Adc2_Init();

delay_init(); //systick初始化

Usart1_Init(115200); //串口1,打印信息用

Usart2_Init(115200); //串口2,驱动ESP8266用

KEY_Init();

IIC_Init(); //光照传感器初始化

DHT11_Init();                 //温湿度传感器初始化

Smog_Init();                 //烟雾传感器初始化

UsartPrintf(USART_DEBUG, " Hardware init OK\r\n");

}

/*
************************************************************
* 函数名称: main
*
* 函数功能:
*
* 入口参数:
*
* 返回参数: 0
*
* 说明:
************************************************************
*/
int main(void)
{

unsigned short timeCount = 0; //发送间隔变量

unsigned char *dataPtr = NULL;

Hardware_Init(); //初始化外围硬件

ESP8266_Init(); //初始化ESP8266

while(OneNet_DevLink()) //接入OneNET
delay_ms(500);


while(1)
{

if( timeCount >= 500) //发送间隔5s
{
UsartPrintf(USART_DEBUG, "OneNet_SendData\r\n");
OneNet_SendData(); //发送数据
timeCount = 0;
ESP8266_Clear();
}

dataPtr = ESP8266_GetIPD(0);
if(dataPtr != NULL)
OneNet_RevPro(dataPtr);

delay_ms(10);

}

}

.
├── STM32RCT6连接onenet
│   ├── CORE
│   │   ├── core_cm3.c
│   │   ├── core_cm3.h
│   │   └── startup_stm32f10x_hd.s
│   ├── HARDWARE
│   │   ├── ADCsmg
│   │   │   ├── adc.c
│   │   │   └── adc.h
│   │   ├── DHT11
│   │   │   ├── dht11.c
│   │   │   └── dht11.h
│   │   ├── GY302
│   │   │   ├── GY302.c
│   │   │   └── GY302.h
│   │   ├── KEY
│   │   │   ├── MatrixKey.c
│   │   │   ├── MatrixKey.h
│   │   │   ├── key.c
│   │   │   └── key.h
│   │   ├── LED
│   │   │   ├── led.c
│   │   │   └── led.h
│   │   └── SMOG
│   │       ├── smog.c
│   │       └── smog.h
│   ├── NET
│   │   ├── MQTT
│   │   │   ├── Common.h
│   │   │   ├── MqttKit.c
│   │   │   ├── MqttKit.h
│   │   │   ├── SDK使用说明.txt
│   │   │   └── sample.c
│   │   ├── device
│   │   │   ├── esp8266.c
│   │   │   └── esp8266.h
│   │   └── onenet
│   │       ├── onenet.c
│   │       └── onenet.h
│   ├── OBJ
│   │   ├── LED.axf
│   │   ├── LED.build_log.htm
│   │   ├── LED.hex
│   │   ├── LED.htm
│   │   ├── LED.lnp
│   │   ├── LED_LED.dep
│   │   ├── adc.crf
│   │   ├── adc.d
│   │   ├── adc.o
│   │   ├── core_cm3.crf
│   │   ├── core_cm3.d
│   │   ├── core_cm3.o
│   │   ├── delay.crf
│   │   ├── delay.d
│   │   ├── delay.o
│   │   ├── dht11.crf
│   │   ├── dht11.d
│   │   ├── dht11.o
│   │   ├── esp8266.crf
│   │   ├── esp8266.d
│   │   ├── esp8266.o
│   │   ├── gy302.crf
│   │   ├── gy302.d
│   │   ├── gy302.o
│   │   ├── key.crf
│   │   ├── key.d
│   │   ├── key.o
│   │   ├── led.crf
│   │   ├── led.d
│   │   ├── led.o
│   │   ├── main.crf
│   │   ├── main.d
│   │   ├── main.o
│   │   ├── misc.crf
│   │   ├── misc.d
│   │   ├── misc.o
│   │   ├── mqttkit.crf
│   │   ├── mqttkit.d
│   │   ├── mqttkit.o
│   │   ├── onenet.crf
│   │   ├── onenet.d
│   │   ├── onenet.o
│   │   ├── smog.crf
│   │   ├── smog.d
│   │   ├── smog.o
│   │   ├── startup_stm32f10x_hd.d
│   │   ├── startup_stm32f10x_hd.o
│   │   ├── stm32f10x_adc.crf
│   │   ├── stm32f10x_adc.d
│   │   ├── stm32f10x_adc.o
│   │   ├── stm32f10x_dbgmcu.crf
│   │   ├── stm32f10x_dbgmcu.d
│   │   ├── stm32f10x_dbgmcu.o
│   │   ├── stm32f10x_exti.crf
│   │   ├── stm32f10x_exti.d
│   │   ├── stm32f10x_exti.o
│   │   ├── stm32f10x_gpio.crf
│   │   ├── stm32f10x_gpio.d
│   │   ├── stm32f10x_gpio.o
│   │   ├── stm32f10x_i2c.crf
│   │   ├── stm32f10x_i2c.d
│   │   ├── stm32f10x_i2c.o
│   │   ├── stm32f10x_it.crf
│   │   ├── stm32f10x_it.d
│   │   ├── stm32f10x_it.o
│   │   ├── stm32f10x_rcc.crf
│   │   ├── stm32f10x_rcc.d
│   │   ├── stm32f10x_rcc.o
│   │   ├── stm32f10x_usart.crf
│   │   ├── stm32f10x_usart.d
│   │   ├── stm32f10x_usart.o
│   │   ├── sys.crf
│   │   ├── sys.d
│   │   ├── sys.o
│   │   ├── system_stm32f10x.crf
│   │   ├── system_stm32f10x.d
│   │   ├── system_stm32f10x.o
│   │   ├── usart.crf
│   │   ├── usart.d
│   │   └── usart.o
│   ├── README.TXT
│   ├── STM32F10x_FWLib
│   │   ├── inc
│   │   │   ├── misc.h
│   │   │   ├── stm32f10x_adc.h
│   │   │   ├── stm32f10x_bkp.h
│   │   │   ├── stm32f10x_can.h
│   │   │   ├── stm32f10x_cec.h
│   │   │   ├── stm32f10x_crc.h
│   │   │   ├── stm32f10x_dac.h
│   │   │   ├── stm32f10x_dbgmcu.h
│   │   │   ├── stm32f10x_dma.h
│   │   │   ├── stm32f10x_exti.h
│   │   │   ├── stm32f10x_flash.h
│   │   │   ├── stm32f10x_fsmc.h
│   │   │   ├── stm32f10x_gpio.h
│   │   │   ├── stm32f10x_i2c.h
│   │   │   ├── stm32f10x_iwdg.h
│   │   │   ├── stm32f10x_pwr.h
│   │   │   ├── stm32f10x_rcc.h
│   │   │   ├── stm32f10x_rtc.h
│   │   │   ├── stm32f10x_sdio.h
│   │   │   ├── stm32f10x_spi.h
│   │   │   ├── stm32f10x_tim.h
│   │   │   ├── stm32f10x_usart.h
│   │   │   └── stm32f10x_wwdg.h
│   │   └── src
│   │       ├── misc.c
│   │       ├── stm32f10x_adc.c
│   │       ├── stm32f10x_bkp.c
│   │       ├── stm32f10x_can.c
│   │       ├── stm32f10x_cec.c
│   │       ├── stm32f10x_crc.c
│   │       ├── stm32f10x_dac.c
│   │       ├── stm32f10x_dbgmcu.c
│   │       ├── stm32f10x_dma.c
│   │       ├── stm32f10x_exti.c
│   │       ├── stm32f10x_flash.c
│   │       ├── stm32f10x_fsmc.c
│   │       ├── stm32f10x_gpio.c
│   │       ├── stm32f10x_i2c.c
│   │       ├── stm32f10x_iwdg.c
│   │       ├── stm32f10x_pwr.c
│   │       ├── stm32f10x_rcc.c
│   │       ├── stm32f10x_rtc.c
│   │       ├── stm32f10x_sdio.c
│   │       ├── stm32f10x_spi.c
│   │       ├── stm32f10x_tim.c
│   │       ├── stm32f10x_usart.c
│   │       └── stm32f10x_wwdg.c
│   ├── SYSTEM
│   │   ├── delay
│   │   │   ├── delay.c
│   │   │   └── delay.h
│   │   ├── sys
│   │   │   ├── sys.c
│   │   │   └── sys.h
│   │   └── usart
│   │       ├── usart.c
│   │       └── usart.h
│   ├── USER
│   │   ├── DebugConfig
│   │   │   └── LED_STM32F103ZE_1.0.0.dbgconf
│   │   ├── JLinkLog.txt
│   │   ├── JLinkSettings.ini
│   │   ├── LED.uvguix.Administrator
│   │   ├── LED.uvguix.zxt
│   │   ├── LED.uvoptx
│   │   ├── LED.uvprojx
│   │   ├── Listings
│   │   │   ├── LED.map
│   │   │   └── startup_stm32f10x_hd.lst
│   │   ├── Objects
│   │   ├── main.c
│   │   ├── stm32f10x.h
│   │   ├── stm32f10x_conf.h
│   │   ├── stm32f10x_it.c
│   │   ├── stm32f10x_it.h
│   │   ├── system_stm32f10x.c
│   │   └── system_stm32f10x.h
│   └── keilkilll.bat
└── 好例子网_STM32RCT6连接onenet.rar

25 directories, 177 files