基本信息
源码名称:基于STM32的温感GPS终端设计
源码大小:7.77M
文件格式:.rar
开发语言:C/C++
更新时间:2021-10-15
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

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

本次赞助数额为: 2 元 
   源码介绍
野火的指南者,GPS是ATGM332D,温度传感器是DHT11。实现定位温度的采集、LCD显示及WIFI传输 /**

温感GPS终端设计.rar  

******************************************************************************

  * @file    main.c
  * @author  fire
  * @version V1.0
  * @date    2013-xx-xx
  * @brief   对GPS模块传输的数据进行解码,获取定位信息。
  ******************************************************************************
  * @attention
  *
  * 实验平台:秉火  STM32 F103-指南者 开发板 
  * 论坛    :http://www.firebbs.cn
  * 淘宝    :https://fire-stm32.taobao.com
  *
  ******************************************************************************
  */

#include "stm32f10x.h"
#include "./usart/bsp_usart.h"
#include "./gps/gps_config.h"
#include "./lcd/bsp_ili9341_lcd.h"
#include "./systick/bsp_SysTick.h"
#include "./dht11/bsp_dht11.h"
#include "./i2c/bsp_i2c_ee.h"
#include "./flash/bsp_spi_flash.h"
#include "usart1.h"
#include "test.h"
#include "bsp_esp8266.h"
#include <stdio.h>
#include <string.h>

extern void nmea_decode_test(void);
extern void ESP8266_StaTcpClient_UnvarnishTest2(void);


int main(void)
{

ILI9341_Init ();
SysTick_Init();
DHT11_Init ();
ILI9341_GramScan ( 6 );
USART_Config();
USARTx_Config();
ESP8266_Init (); 
GPS_Config();                                                                                                                 

while(1)
{

ESP8266_StaTcpClient_UnvarnishTest2();
nmea_decode_test();

}

}