资料编号:153
一:功能介绍
1、采用stm32单片机+LCD1602显示屏+电位器,制作一个基于stm32单片机简易电压表测量串口蓝牙上传数据Proteus仿真;
2、通过电位器调节模拟电压变化;
3、通过stm32单片机内部ADC进行采集电位器的电压变化,转换成对应的电压值显示到LCD1602显示屏上;
4、通过仿真软件自带串口工具,将数据通过串口上传(模拟串口蓝牙上传数据);
二:仿真演示视频+程序简要讲解(程序有中文注释,新手容易看懂)
153-基于stm32单片机简易电压表测量串口蓝牙上传数据Proteus仿真+源程序
三:设计软件介绍
本设计使用C语言编程设计,程序代码采用keil5编写,程序有中文注释,新手容易看懂,仿真采用Proteus软件进行仿真,演示视频使用的是Proteus8.9版本;资料包里有相关软件包,可自行下载安装。
四:程序打开方法
特别注意:下载资料包以后一定要先解压! !!(建议解压到桌面上,文件路径太深会导致程序打开异常),解压后再用keil5打开。
程序部分展示,有中文注释,新手容易看懂
/*****************引脚配置********************/
void GPIO_Configuration(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB,ENABLE);
//LCD1602 管脚
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_8| GPIO_Pin_9| GPIO_Pin_10| GPIO_Pin_11| GPIO_Pin_12| GPIO_Pin_13| GPIO_Pin_14| GPIO_Pin_15;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_2MHz;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_OD;
GPIO_Init(GPIOB, &GPIO_InitStructure);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_7 |GPIO_Pin_6|GPIO_Pin_5;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_2MHz;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_Init(GPIOB, &GPIO_InitStructure);
}
void Delay(uint i)
{
for (;i>0;i--)
{uint j=1000;while(--j);}
}
int main(void)
{
int ADC_num1;
int temp1;
RCC_SYSCLKConfig(RCC_SYSCLKSource_HSI);
NVIC_PriorityGroupConfig(NVIC_PriorityGroup_2);//设置中断优先级分组为组2:2位抢占优先级,2位响应优先级
uart_init(9600);
delay_init();
GPIO_Configuration();//初始化
ADC1_GPIO_Config();
ADC_Config();
Init1602();
WrByte1602(0,1,' '); //字符显示
WrByte1602(0,2,'U');
WrByte1602(0,3,'=');
WrByte1602(0,4,' ');
WrByte1602(0,9,'V');
WrByte1602(1,1,' ');
Delay(1000);
printf("基于stm32单片机简易电压表串口蓝牙测试 \r\n");//蓝牙上传数据
Delay(1000);
printf("正在测量,请稍等 \r\n");//蓝牙上传数据
Delay(1000);
while(1)
{
ADC_num1=Get_ADC(ADC_Channel_0);//读取电压ADC值
temp1=ADC_num1*100/4096;
WrByte1602(0,5,AsciiCode[temp1%1000/100]);//显示电压
WrByte1602(0,6,AsciiCode[temp1%100/10]);
WrByte1602(0,7,AsciiCode[temp1%10]);
printf("电压:%d V\r\n",temp1);//蓝牙上传数据
Delay(1000);
}
}
五:仿真文件(采用Proteus打开)
六:资料清单展示(文件中包含的相关资料)