基于STM32三电极体系 弱电流检测

本设计包含程序代码+原理图+PCB

📚开发环境

程序编译器:keil 5
编程语言:C语言
设计编号:C0014

📚设计要求

此产品可用在三电极体系中,产品主要功能有:
1.具有0-600mV可调输出电压,由内置可调电位器调压;
2.可检测信号范围:0-20mA;
3.额定电压:5V;3-7V之间均可以正常工作;
4.可外接3.7V锂电池,留有相应的孔位;
5.可接USB作为充电接口,使用非常方便;
6.内置拨码开关作为总开关,有复位微动开关,一路功能预留的微动开关;
7.电源上电有LED灯常亮指示,程序运行有 LED闪烁指示;
8.采用SWD模式,程序下载和仿真一体,操作方便
9.可外接12864屏幕,程序中已写好显示浓度值的程序,对应关系为0-20mA对应0-10mol/L,对应关系可在程序中修改;

📚原理图

在这里插入图片描述

📚PCB

在这里插入图片描述

📚源程序

 int main(void)
 {	
	 delay_init();
	 	// uart_init(115200);
	 	// RS485_Init(9600);	//初始化RS485
	 Adc_Init(); 
	 TIM3_Int_Init(9999,7199);
	 JLX12864G_086_GPIOInit();
	 initial_lcd();
	 delay_ms(500);
	clear_screen();

	 
	 
  while(1)
	{
	  x=Get_Adc_Average(ADC_Channel_1,5);             //MAX:32767 
		y=x*0.5;    //
		adc_SS=y;//y_y*100;
		if(time_s%1 == 0)
		{
			adc_S=adc_SS;
		}
		
		//adc_S_f=adc_S/10000;
		//adc_S_s=adc_S/1000-adc_S/10000*10;
		adc_S_s=adc_S/1000;
		adc_S_t=adc_S/100-adc_S/1000*10;
		adc_S_fo=adc_S%100/10;
		adc_S_l=((adc_S%100)%10);
		
		adc_M_f=adc_M/1000;
		adc_M_s=adc_M/100-adc_M/1000*10;
		adc_M_t=adc_M%100/10;
		adc_M_l=(adc_M%100)&10;
		
		
		
		time_s_f=time_s/10;
		time_s_l=time_s%10;
		time_m_f=time_m/10;
		time_m_l=time_m%10;
		time_h_f=time_h/10;
		time_h_l=time_h%10;

		
		TimeShow();
	  ADshow();
		
	//	display_string_5x8(1,1,0,"FIB concentration");	//在第1页,第1列,显示一串16x16点阵汉字或8x16的ASCII字
		display_GB2312_string(1,1,0,"FIB");
		display_GB2312_string(1,104,0,":");		
		display_GB2312_string(1,80,0,":");
    display_GB2312_string(3,1,0,"concentration");	
    
		display_GB2312_string(5,56,0,".");
    display_GB2312_string(7,80,0,"mmol/L");
		
	/*	display_string_5x8(2,13,0,":");	//在第1页,第1列,显示一串16x16点阵汉字或8x16的ASCII字
		display_string_5x8(2,31,0,":");	//在第1页,第1列,显示一串16x16点阵汉字或8x16的ASCII字
		
		display_string_5x8(4,61,0,"mg/dL");*/
	}
 }

 void  Adc_Init(void)
{ 	
	ADC_InitTypeDef ADC_InitStructure; 
	GPIO_InitTypeDef GPIO_InitStructure;

	RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA |RCC_APB2Periph_ADC1, ENABLE );	  //使能ADC1通道时钟
 

	RCC_ADCCLKConfig(RCC_PCLK2_Div6);   //设置ADC分频因子6 72M/6=12,ADC最大时间不能超过14M

	//PA1 作为模拟通道输入引脚                         
	GPIO_InitStructure.GPIO_Pin = GPIO_Pin_1;
	GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AIN;		//模拟输入引脚
	GPIO_Init(GPIOA, &GPIO_InitStructure);	

	ADC_DeInit(ADC1);  //复位ADC1 

	ADC_InitStructure.ADC_Mode = ADC_Mode_Independent;	//ADC工作模式:ADC1和ADC2工作在独立模式
	ADC_InitStructure.ADC_ScanConvMode = DISABLE;	//模数转换工作在单通道模式
	ADC_InitStructure.ADC_ContinuousConvMode = DISABLE;	//模数转换工作在单次转换模式
	ADC_InitStructure.ADC_ExternalTrigConv = ADC_ExternalTrigConv_None;	//转换由软件而不是外部触发启动
	ADC_InitStructure.ADC_DataAlign = ADC_DataAlign_Right;	//ADC数据右对齐
	ADC_InitStructure.ADC_NbrOfChannel = 1;	//顺序进行规则转换的ADC通道的数目
	ADC_Init(ADC1, &ADC_InitStructure);	//根据ADC_InitStruct中指定的参数初始化外设ADCx的寄存器   

  
	ADC_Cmd(ADC1, ENABLE);	//使能指定的ADC1
	
	ADC_ResetCalibration(ADC1);	//使能复位校准  
	 
	while(ADC_GetResetCalibrationStatus(ADC1));	//等待复位校准结束
	
	ADC_StartCalibration(ADC1);	 //开启AD校准
 
	while(ADC_GetCalibrationStatus(ADC1));	 //等待校准结束
 
//	ADC_SoftwareStartConvCmd(ADC1, ENABLE);		//使能指定的ADC1的软件转换启动功能

}	
u16 Get_Adc(u8 ch)   
{
  	//设置指定ADC的规则组通道,一个序列,采样时间
	ADC_RegularChannelConfig(ADC1, ch, 1, ADC_SampleTime_239Cycles5 );	//ADC1,ADC通道,采样时间为239.5周期	  			    
  
	ADC_SoftwareStartConvCmd(ADC1, ENABLE);		//使能指定的ADC1的软件转换启动功能	
	 
	while(!ADC_GetFlagStatus(ADC1, ADC_FLAG_EOC ));//等待转换结束

	return ADC_GetConversionValue(ADC1);	//返回最近一次ADC1规则组的转换结果
}
u16 Get_Adc_Average(u8 ch,u8 times)
{
	u32 temp_val=0;
	u8 t;
	for(t=0;t<times;t++)
	{
		temp_val+=Get_Adc(ch);
		delay_ms(5);
	}
	return temp_val/times;
} 	

在这里插入图片描述

📚下载链接

https://pan.baidu.com/s/1nZA9kKJ757N0f6Tq6zesGg?pwd=2log(可点击)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值