资料编号:107 下面是相关功能视频演示:
107-基于stm32单片机体重秤电子秤称重超重报警Proteus仿真(源码+仿真+全套资料)
功能介绍:
采用stm32单片机,可以设置称重上限制,LCD1602显示重量,如果称重超过这个重量蜂鸣器会发出提醒,程序采用C语言,仿真采用Proteus,程序有中文注释,比较容易看懂;
全套仿真资料齐全:
下面是该资料的部分程序展示:
void LED_Init(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE); //使能P端口时钟
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_3; //LED0 端口配置
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP; //推挽输出
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOA, &GPIO_InitStructure);
GPIO_SetBits(GPIOA,GPIO_Pin_3); //输出高
}
void KEY_Init(void)
{
GPIO_InitTypeDef GPIO_InitStructure; //定义结构体变量
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA,ENABLE);
GPIO_InitStructure.GPIO_Pin=GPIO_Pin_8|GPIO_Pin_9|GPIO_Pin_10;
GPIO_InitStructure.GPIO_Mode=GPIO_Mode_IPU; //上拉输入
GPIO_InitStructure.GPIO_Speed=GPIO_Speed_50MHz;
GPIO_Init(GPIOA,&GPIO_InitStructure);
}
int main(void)
{
int a,b,c,d;
int temp;
delay_init(); //延时函数初始化
LCD1602_Init();
ADC1_GPIO_Config();
ADC_Config();
LCD1602_ShowStr(1,0,"WEIGHT=000kg",12);
LED_Init();
KEY_Init();
while(1)
{
b=ADC_GetConversionValue(ADC1);
temp=(float)b*(3.4/4096)*100;
a=temp/100;
c=temp%100/10;
d=c%10;
LCD_ShowNum(8,0,a);
LCD_ShowNum(9,0,c);
LCD_ShowNum(10,0,d);
if(temp>100) LED=0;//称重超过100kg 开始报警
else LED=1;
delay_ms(500);
}
}
下面是该资料的分享下载链接: