资料编号:099 下面是相关功能视频演示:
99-基于stm32单片机随机数自动摇号抽奖系统(源码+仿真+全套资料)
采用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,e,f;
int temp=0,temp1=0;
delay_init(); //延时函数初始化
LCD1602_Init();
// ADC1_GPIO_Config();
// ADC_Config();
LED_Init();
KEY_Init();
LCD1602_ShowStr(4,0,"number",6);
while(1)
{
a=temp%10; //计算数值
b=temp/10%10;
c=temp/100%10;
d=temp1%10;;
e=temp1/10%10;
f=temp1/100%10;
LCD_ShowNum(4,1,a);//显示函数
LCD_ShowNum(5,1,b);//显示函数
LCD_ShowNum(6,1,c); //显示函数
LCD_ShowNum(7,1,d);//显示函数
LCD_ShowNum(8,1,e);//显示函数
LCD_ShowNum(9,1,f); //显示函数
if(KEY3==0)
{
temp=rand()%1000; //产生随机数
temp1=rand()%1000;
}
delay_ms(200);
}
}
下面是该资料的分享下载链接: