IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 嵌入式 -> 基于STM32F407ZE粤嵌GEC-M4开发板的按键密码系统 -> 正文阅读

[嵌入式]基于STM32F407ZE粤嵌GEC-M4开发板的按键密码系统

基于STM32F407ZE粤嵌GEC-M4开发板的按键密码系统

该系统分为两个部分:
一是按键密码部分 密码为四位 输入错误则亮灯提示 正确则蜂鸣器提示 然后解锁进入主程序
二是主程序部分 根据四个按键做了不同功能 以便演示和后期改进

直接上代码:

# include "stm32f4xx.h"

void delay(uint32_t s)
{
	uint32_t i = 0x500000;
	int n;
	for(n=0;n<s;n++)
	{
	while(i--);
	}
}
void delay_s(uint32_t s)
{
	uint32_t i = 0x50000;
	int n;
	for(n=0;n<s;n++)
	{
	while(i--);
	}
}

//GPIOF_9_10初始化使能 低电平
void init_GPIOF_9_10_OUT()
{
	//定义GPIO结构体
	GPIO_InitTypeDef GPIOF_InitStruct;
	//使能GPIOF时钟
	RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOF, ENABLE);
	//初始化结构体
	GPIOF_InitStruct.GPIO_Pin  = GPIO_Pin_9 | GPIO_Pin_10; //定义引脚
	GPIOF_InitStruct.GPIO_Mode = GPIO_Mode_OUT;  //定义输出模式
	GPIOF_InitStruct.GPIO_Speed = GPIO_Speed_100MHz;	//定义速度
	GPIOF_InitStruct.GPIO_OType = GPIO_OType_OD;		//定义推免输出
	GPIOF_InitStruct.GPIO_PuPd = GPIO_PuPd_NOPULL;		//定义是否有上下拉电阻 普通
	//将结构体给GPIOF组
	GPIO_Init(GPIOF,&GPIOF_InitStruct);
}

void init_GPIOE_13_14_OUT()
{
	//定义GPIO结构体
	GPIO_InitTypeDef GPIOE_InitStruct;
	//使能GPIOF时钟
	RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOE, ENABLE);
	//初始化结构体
	GPIOE_InitStruct.GPIO_Pin  = GPIO_Pin_13 | GPIO_Pin_14; //定义引脚
	GPIOE_InitStruct.GPIO_Mode = GPIO_Mode_OUT;  //定义输出模式
	GPIOE_InitStruct.GPIO_Speed = GPIO_Speed_100MHz;	//定义速度
	GPIOE_InitStruct.GPIO_OType = GPIO_OType_PP;		//定义推挽输出
	GPIOE_InitStruct.GPIO_PuPd = GPIO_PuPd_NOPULL;		//定义是否有上下拉电阻 普通
	//将结构体给GPIOF组
	GPIO_Init(GPIOE,&GPIOE_InitStruct);
}

//两个引脚整体初始化函数
void init_GPIO_EF_OUT()
{
	//定义GPIO结构体
	GPIO_InitTypeDef GPIO_InitStruct;
	//使能GPIOF时钟
	RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOF, ENABLE);
	//初始化结构体
	GPIO_InitStruct.GPIO_Pin  = GPIO_Pin_9 | GPIO_Pin_10; //定义引脚
	GPIO_InitStruct.GPIO_Mode = GPIO_Mode_OUT;  //定义输出模式
	GPIO_InitStruct.GPIO_Speed = GPIO_Speed_100MHz;	//定义速度
	GPIO_InitStruct.GPIO_OType = GPIO_OType_PP;		//定义推挽输出
	GPIO_InitStruct.GPIO_PuPd = GPIO_PuPd_NOPULL;		//定义是否有上下拉电阻 普通
	//将结构体给GPIOF组
	GPIO_Init(GPIOF,&GPIO_InitStruct);
	
	GPIO_InitStruct.GPIO_Pin  = GPIO_Pin_13 | GPIO_Pin_14; //定义引脚
	//将结构体给GPIOE组
	GPIO_Init(GPIOE,&GPIO_InitStruct);
}

//蜂鸣器初始化
void init_BEEP(void)
{
	//定义GPIO结构体
	GPIO_InitTypeDef GPIOF_BEEP_InitStruct;
	//使能GPIOF时钟
	RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOF, ENABLE);
	//初始化结构体
	GPIOF_BEEP_InitStruct.GPIO_Pin  = GPIO_Pin_8; //定义引脚
	GPIOF_BEEP_InitStruct.GPIO_Mode = GPIO_Mode_OUT;  //定义输出模式
	GPIOF_BEEP_InitStruct.GPIO_Speed = GPIO_Speed_100MHz;	//定义速度
	GPIOF_BEEP_InitStruct.GPIO_OType = GPIO_OType_PP;		//定义推挽输出
	GPIOF_BEEP_InitStruct.GPIO_PuPd = GPIO_PuPd_DOWN;		//定义是否有上下拉电阻 普通
	//将结构体给GPIOF组
	GPIO_Init(GPIOF,&GPIOF_BEEP_InitStruct);
}


void init_KEEY(void)
{
	//定义GPIO结构体
	GPIO_InitTypeDef GPIO_KEEY_InitStruct;
	//使能GPIOF时钟
	RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOA, ENABLE);
	//初始化结构体
	GPIO_KEEY_InitStruct.GPIO_Pin  = GPIO_Pin_0; //定义引脚
	GPIO_KEEY_InitStruct.GPIO_Mode = GPIO_Mode_IN;  //定义输出模式
	GPIO_KEEY_InitStruct.GPIO_Speed = GPIO_Speed_100MHz;	//定义速度
	GPIO_KEEY_InitStruct.GPIO_OType = GPIO_OType_PP;		//定义推挽输出
	GPIO_KEEY_InitStruct.GPIO_PuPd = GPIO_PuPd_UP;		//定义是否有上下拉电阻 普通
	//将结构体给GPIOF组
	GPIO_Init(GPIOA,&GPIO_KEEY_InitStruct);
	
	GPIO_KEEY_InitStruct.GPIO_Pin  = GPIO_Pin_2 | GPIO_Pin_3 | GPIO_Pin_4;
	GPIO_Init(GPIOE,&GPIO_KEEY_InitStruct);
}

int main(void)
{
	int x=5;
	init_GPIOF_9_10_OUT();
	init_GPIOE_13_14_OUT();
	init_BEEP();
	init_KEEY();
	
	int y;
	int flag=0;
	delay(1);
	while(1)//按键锁循环
	{
		int buf[4];
		uint8_t key0 = GPIO_ReadInputDataBit(GPIOA,GPIO_Pin_0);
		uint8_t key1 = GPIO_ReadInputDataBit(GPIOE,GPIO_Pin_2);
		uint8_t key2 = GPIO_ReadInputDataBit(GPIOE,GPIO_Pin_3);
		uint8_t key3 = GPIO_ReadInputDataBit(GPIOE,GPIO_Pin_4);
		GPIO_SetBits(GPIOF,GPIO_Pin_9);
		GPIO_SetBits(GPIOF,GPIO_Pin_10);
		GPIO_SetBits(GPIOE,GPIO_Pin_13);
		GPIO_SetBits(GPIOE,GPIO_Pin_14);
		
		if( key0 == Bit_RESET)
		{
			y=0;
			flag++;
			while(1){GPIO_ResetBits(GPIOF,GPIO_Pin_9);
				uint8_t key0 = GPIO_ReadInputDataBit(GPIOA,GPIO_Pin_0);
				if(key0 == Bit_SET)GPIO_SetBits(GPIOF,GPIO_Pin_9);break;}
			delay(1);
		}
		if( key1 == Bit_RESET)
		{
			y=1;
			flag++;
			while(1){GPIO_ResetBits(GPIOF,GPIO_Pin_10);
				uint8_t key1 = GPIO_ReadInputDataBit(GPIOE,GPIO_Pin_2);
				if(key1 == Bit_SET)GPIO_SetBits(GPIOF,GPIO_Pin_10);break;}
			delay(1);
		}
		if( key2 == Bit_RESET)
		{
			y=2;
			flag++;
			while(1){GPIO_ResetBits(GPIOE,GPIO_Pin_13);
				uint8_t key2 = GPIO_ReadInputDataBit(GPIOE,GPIO_Pin_3);
				if(key2 == Bit_SET)GPIO_SetBits(GPIOE,GPIO_Pin_13);break;}
			delay(1);
		}
		if( key3 == Bit_RESET)
		{
			y=3;
			flag++;
			while(1){GPIO_ResetBits(GPIOE,GPIO_Pin_14);
				uint8_t key3 = GPIO_ReadInputDataBit(GPIOE,GPIO_Pin_4);
				if(key3 == Bit_SET)GPIO_SetBits(GPIOE,GPIO_Pin_14);break;}
			delay(1);
		}
		if (flag >= 1){buf[flag-1]=y;}
		if (flag == 4){
			buf[flag-1]=y;flag=0;
			if (buf[0]!=3 | buf[1]!=2 | buf[2]!=1 | buf[3]==0){
				GPIO_ResetBits(GPIOF,GPIO_Pin_9);
				GPIO_ResetBits(GPIOF,GPIO_Pin_10);
				GPIO_ResetBits(GPIOE,GPIO_Pin_13);
				GPIO_ResetBits(GPIOE,GPIO_Pin_14);
				delay(1);
				GPIO_SetBits(GPIOF,GPIO_Pin_9);
				GPIO_SetBits(GPIOF,GPIO_Pin_10);
				GPIO_SetBits(GPIOE,GPIO_Pin_13);
				GPIO_SetBits(GPIOE,GPIO_Pin_14);
			}
		}
		
		if (buf[0]==3 && buf[1]==2 && buf[2]==1 && buf[3]==0)
		{
					GPIO_SetBits(GPIOF,GPIO_Pin_9);GPIO_SetBits(GPIOF,GPIO_Pin_8);
					delay_s(1);
					GPIO_SetBits(GPIOF,GPIO_Pin_10);GPIO_ResetBits(GPIOF,GPIO_Pin_8);
					delay_s(1);
					GPIO_SetBits(GPIOE,GPIO_Pin_13);GPIO_SetBits(GPIOF,GPIO_Pin_8);
					delay_s(1);
					GPIO_SetBits(GPIOE,GPIO_Pin_14);GPIO_ResetBits(GPIOF,GPIO_Pin_8);
					delay_s(1);
					GPIO_ResetBits(GPIOF,GPIO_Pin_9);GPIO_SetBits(GPIOF,GPIO_Pin_8);
					delay_s(1);
					GPIO_ResetBits(GPIOF,GPIO_Pin_10);GPIO_ResetBits(GPIOF,GPIO_Pin_8);
					delay_s(1);
					GPIO_ResetBits(GPIOE,GPIO_Pin_13);GPIO_SetBits(GPIOF,GPIO_Pin_8);
					delay_s(1);
					GPIO_ResetBits(GPIOE,GPIO_Pin_14);GPIO_ResetBits(GPIOF,GPIO_Pin_8);
					delay_s(1);
					GPIO_ResetBits(GPIOE,GPIO_Pin_14);GPIO_SetBits(GPIOF,GPIO_Pin_8);
					delay_s(1);
					GPIO_ResetBits(GPIOE,GPIO_Pin_13);GPIO_ResetBits(GPIOF,GPIO_Pin_8);
					delay_s(1);
					GPIO_ResetBits(GPIOF,GPIO_Pin_10);GPIO_SetBits(GPIOF,GPIO_Pin_8);
					delay_s(1);
					GPIO_ResetBits(GPIOF,GPIO_Pin_9);GPIO_ResetBits(GPIOF,GPIO_Pin_8);
					delay_s(1);
					GPIO_SetBits(GPIOE,GPIO_Pin_14);GPIO_SetBits(GPIOF,GPIO_Pin_8);
					delay_s(1);
					GPIO_SetBits(GPIOE,GPIO_Pin_13);GPIO_ResetBits(GPIOF,GPIO_Pin_8);
					delay_s(1);
					GPIO_SetBits(GPIOF,GPIO_Pin_10);GPIO_SetBits(GPIOF,GPIO_Pin_8);
					delay_s(1);
					GPIO_SetBits(GPIOF,GPIO_Pin_9);GPIO_ResetBits(GPIOF,GPIO_Pin_8);
					delay_s(1);		
					break;
		}
	}
	
	
	while(1)//主循环
	{
		uint8_t key0 = GPIO_ReadInputDataBit(GPIOA,GPIO_Pin_0);
		uint8_t key1 = GPIO_ReadInputDataBit(GPIOE,GPIO_Pin_2);
		uint8_t key2 = GPIO_ReadInputDataBit(GPIOE,GPIO_Pin_3);
		uint8_t key3 = GPIO_ReadInputDataBit(GPIOE,GPIO_Pin_4);
		GPIO_SetBits(GPIOF,GPIO_Pin_9);
		GPIO_SetBits(GPIOF,GPIO_Pin_10);
		GPIO_SetBits(GPIOE,GPIO_Pin_13);
		GPIO_SetBits(GPIOE,GPIO_Pin_14);
		if( key0 == Bit_RESET) //低电平
		{
			GPIO_ResetBits(GPIOF,GPIO_Pin_10);
			GPIO_ResetBits(GPIOF,GPIO_Pin_9);
			GPIO_ResetBits(GPIOE,GPIO_Pin_13);
			GPIO_ResetBits(GPIOE,GPIO_Pin_14);
			GPIO_SetBits(GPIOF,GPIO_Pin_8);
		}
		if( key1 == Bit_RESET) //低电平
		{
			GPIO_SetBits(GPIOF,GPIO_Pin_10);
			GPIO_SetBits(GPIOF,GPIO_Pin_9);
			GPIO_SetBits(GPIOE,GPIO_Pin_14);
			GPIO_SetBits(GPIOE,GPIO_Pin_13);
			GPIO_ResetBits(GPIOF,GPIO_Pin_8);
		}
		if( key2 == Bit_RESET) //低电平
		{
			x=1;
			while(x--)
			{
					GPIO_SetBits(GPIOF,GPIO_Pin_9);//GPIO_SetBits(GPIOF,GPIO_Pin_8);
					delay_s(1);
					GPIO_SetBits(GPIOF,GPIO_Pin_10);//GPIO_ResetBits(GPIOF,GPIO_Pin_8);
					delay_s(1);
					GPIO_SetBits(GPIOE,GPIO_Pin_13);//GPIO_SetBits(GPIOF,GPIO_Pin_8);
					delay_s(1);
					GPIO_SetBits(GPIOE,GPIO_Pin_14);//GPIO_ResetBits(GPIOF,GPIO_Pin_8);
					delay_s(1);
					GPIO_ResetBits(GPIOF,GPIO_Pin_9);//GPIO_SetBits(GPIOF,GPIO_Pin_8);
					delay_s(1);
					GPIO_ResetBits(GPIOF,GPIO_Pin_10);//GPIO_ResetBits(GPIOF,GPIO_Pin_8);
					delay_s(1);
					GPIO_ResetBits(GPIOE,GPIO_Pin_13);//GPIO_SetBits(GPIOF,GPIO_Pin_8);
					delay_s(1);
					GPIO_ResetBits(GPIOE,GPIO_Pin_14);//GPIO_ResetBits(GPIOF,GPIO_Pin_8);
					delay_s(1);
			}
		}
			if( key3 == Bit_RESET) //低电平
		{
			x=1;
			while(x--)
			{
					GPIO_ResetBits(GPIOE,GPIO_Pin_14);//GPIO_SetBits(GPIOF,GPIO_Pin_8);
					delay_s(1);
					GPIO_ResetBits(GPIOE,GPIO_Pin_13);//GPIO_ResetBits(GPIOF,GPIO_Pin_8);
					delay_s(1);
					GPIO_ResetBits(GPIOF,GPIO_Pin_10);//GPIO_SetBits(GPIOF,GPIO_Pin_8);
					delay_s(1);
					GPIO_ResetBits(GPIOF,GPIO_Pin_9);//GPIO_ResetBits(GPIOF,GPIO_Pin_8);
					delay_s(1);
					GPIO_SetBits(GPIOE,GPIO_Pin_14);//GPIO_SetBits(GPIOF,GPIO_Pin_8);
					delay_s(1);
					GPIO_SetBits(GPIOE,GPIO_Pin_13);//GPIO_ResetBits(GPIOF,GPIO_Pin_8);
					delay_s(1);
					GPIO_SetBits(GPIOF,GPIO_Pin_10);//GPIO_SetBits(GPIOF,GPIO_Pin_8);
					delay_s(1);
					GPIO_SetBits(GPIOF,GPIO_Pin_9);//GPIO_ResetBits(GPIOF,GPIO_Pin_8);
					delay_s(1);					
			}
		}
	}
}

  嵌入式 最新文章
基于高精度单片机开发红外测温仪方案
89C51单片机与DAC0832
基于51单片机宠物自动投料喂食器控制系统仿
《痞子衡嵌入式半月刊》 第 68 期
多思计组实验实验七 简单模型机实验
CSC7720
启明智显分享| ESP32学习笔记参考--PWM(脉冲
STM32初探
STM32 总结
【STM32】CubeMX例程四---定时器中断(附工
上一篇文章      下一篇文章      查看所有文章
加:2021-11-23 12:31:43  更:2021-11-23 12:32:12 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2025年1日历 -2025/1/8 4:18:49-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码