找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
查看: 5283|回复: 1
收起左侧

电脑通过ESP8266控制DS18B20的电源,及上传DS18B20的温度

[复制链接]
ID:194804 发表于 2017-4-29 16:22 | 显示全部楼层 |阅读模式
此贴是根据野火的程序修改的,只能控制一个DS18B20。
0.png
0.png


单片机源程序:
  1. /**
  2.   ******************************************************************************
  3.   * @file    main.c
  4.   * @author  fire
  5.   * @version V1.0
  6.   * @brief   WF-ESP8266 WiFi模块测试
  7.   ******************************************************************************
  8.   * @attention
  9.   *
  10.   * 实验平台:野火 iSO STM32 开发板
  11.   ******************************************************************************
  12.   */

  13. #include "stm32f10x.h"
  14. #include "bsp_usart1.h"
  15. #include "bsp_SysTick.h"
  16. #include "bsp_esp8266.h"
  17. #include "test.h"
  18. #include "bsp_dht11.h"

  19. /**************************************************************************************
  20. * 描  述 : GPIO_DSB初始化
  21. * 入  参 : 无
  22. * 返回值 : 无
  23. **************************************************************************************/
  24. void LED_Configuration(void)
  25. {
  26.         GPIO_InitTypeDef GPIO_InitStructure;
  27.         
  28.         /* Enable the GPIO_LED Clock */
  29.         RCC_APB2PeriphClockCmd( RCC_APB2Periph_GPIOB , ENABLE);                                                  
  30.                
  31.   GPIO_DeInit(GPIOB);         //将外设GPIOB寄存器重设为缺省值
  32.         GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9;
  33.         GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
  34.         GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
  35.         GPIO_Init(GPIOB, &GPIO_InitStructure);
  36.         
  37.         GPIO_ResetBits(GPIOB , GPIO_Pin_9);   //初始状态,熄灭指示亮
  38. }
  39. /**
  40.   * @brief  主函数
  41.   * @param  无
  42.   * @retval 无
  43.   */
  44. int main ( void )
  45. {
  46.         /* 初始化 */
  47.         LED_Configuration ();
  48.         USARTx_Config ();                                                              //初始化串口1
  49.         SysTick_Init ();                                                               //配置 SysTick 为 1ms 中断一次
  50.         ESP8266_Init ();                                                               //初始化WiFi模块使用的接口和外设
  51.         //DHT11_Init ();                //初始化ds10b20


  52. …………限于本文篇幅 余下代码请从51黑下载附件…………
复制代码

下载:
向电脑网络助手上传 ds18b20 温度禁止修改 已验证.rar (757.5 KB, 下载次数: 52)
回复

使用道具 举报

ID:194804 发表于 2017-4-29 16:39 | 显示全部楼层
还需要下载一个猎豹WiFi热点。开启热点后ESP8266回自动连接到热点上,连接上后就可以通信了
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|51黑电子论坛 |51黑电子论坛6群 QQ 管理员QQ:125739409;技术交流QQ群281945664

Powered by 单片机教程网

快速回复 返回顶部 返回列表