• 大小: 2KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-01-07
  • 语言: 其他
  • 标签: TN905  

资源简介

无线红外测温模块TN901/TN905测试程序,STM32F103

资源截图

代码片段和文件信息

#include “TN905.h“
#include “stdio.h“

Temp_Value Temp;    //温度数据
u16 j = 0;

void TN905_GPIO_Configuration(void)
{
    GPIO_InitTypeDef GPIO_InitStructure;        //定义GPIO初始化结构体
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB ENABLE);
    
    GPIO_InitStructure.GPIO_Pin = GPIO_Pin_7 | GPIO_Pin_5 |GPIO_Pin_6; 
    GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; 
    GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_OD; 
    GPIO_Init(GPIOB &GPIO_InitStructure);
    
//    GPIO_InitStructure.GPIO_Pin = GPIO_Pin_6; 
//    GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; 
//    GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP; 
//    GPIO_Init(GPIOB &GPIO_InitStructure);
}

void TN905_Init(void)
{
    TN905_GPIO_Configuration();
    Set905A
    Set905D
    Set905C
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        3101  2017-01-06 15:20  TN905\TN905.c
     文件        1074  2017-01-01 15:15  TN905\TN905.h

评论

共有 条评论

相关资源