蜂鸣器和按键的实质都是GPIO的使用,所以基本原理就不介绍啦,基本寄存器其实都是GPIO的高低电平的赋值,可以参考stm32——LEDGPIO的详细介绍
原理图:
beep.c。
void BEEP_Init(void)//使能PORTB的时钟,配置相关内容
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOB,ENABLE);
//F8
GPIO_InitStructure.GPIO_Pin=GPIO_Pin_10;
GPIO_InitStructure.GPIO_Mode=GPIO_Mode_OUT;//
GPIO_InitStructure.GPIO_Speed=GPIO_Speed_100MHz;//速度为50HHZ
GPIO_InitStructure.GPIO_OType=GPIO_OType_PP;//推挽输出
GPIO_InitStructure.GPIO_PuPd=GPIO_PuPd_DOWN;//下拉
GPIO_Init(GPIOB,&GPIO_InitStructure);
//GPIO_SetBits(GPIOB,GPIO_Pin_10); //输出为1
GPIO_ResetBits(GPIOB,GPIO_Pin_10); //输出为0
}
beep.h
#ifndef __BEEP_H
#define __BEEP_H
//#include "sys.h"
//#define BEEP PGout(7);
void BEEP_Init(void);
#endif
按键的公共端是GND,所以在设置按键的电阻的时候只能设置为上拉电阻,当按键按下的时候,就可以检测到该引脚口的电平为低电平。
按键所连接的引脚是PE4-6,还有一个KEY4是PC13
key.c
#include "delay.h"
#include "key.h"
#include "stm32f4xx.h"
//PE4-6,还有一个KEY4是PC13
void KEY_Init(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOE, ENABLE);//使能GPIOC,GPIOE时钟
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_4|GPIO_Pin_5|GPIO_Pin_6; //KEY0 KEY1 KEY2对应引脚
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN;//普通输入模式
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_100MHz;//100M
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP;//上拉-只能
GPIO_Init(GPIOE, &GPIO_InitStructure);//初始化
RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOC, ENABLE);//使能GPIOC,GPIOE时钟
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_13; //KEY4对应引脚
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN;//普通输入模式
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_100MHz;//100M
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP;//上拉-只能
GPIO_Init(GPIOC, &GPIO_InitStructure);//初始化
}
/*
u8 KEY_Scan(u8 mode)
{
static u8 key_up=1;//按键按松开标志
if(mode)key_up=1; //支持连按
if(key_up&&(KEY0==0||KEY1==0||KEY2==0||KEY3==0))
{
delay_ms(10);//去抖动
key_up=0;
if(KEY0==0) return 1;
else if(KEY1==0)return 2;
else if(KEY2==0)return 3;
else if(KEY3==0)return 4;
}else if(KEY0==1&&KEY1==1&&KEY2==1&&KEY3==1)key_up=1;
return 0;// 无按键按下
}
*/
u8 key_san(void)
{
static unsigned char keyvalue=0,flag=0;
if(KEY1 ==0){delay_ms(10);keyvalue=1;flag=1;while(KEY1==0);}
else if (KEY2 == 0){delay_ms(10);keyvalue=2;flag=1;while(KEY2==0);}
else if(KEY3 ==0){delay_ms(10);keyvalue =3;flag=1;while(KEY3==0);}
else if (KEY4 ==0){delay_ms(10);keyvalue =4;flag=1;while(KEY4==0);}
else if(KEY1==1&&KEY2==1&&KEY3==1&&KEY4==1&& flag==0)
{keyvalue=0;}
//else keyvalue=0;
return keyvalue;
}
其中使用的delay可以是自己设置的软件延迟,也可以是使用系统延迟,如果是系统延迟需要添加相关文件在SYSTEM中。
#include "stm32f4xx.h"
#include "LED.h"
#include "beep.h"
#include "key.h"
#include "delay.h"
u8 keynum=0;
//reset是0
int main(void)
{
LED_Init();
BEEP_Init();
KEY_Init();
delay_init(168);
while(1)
{
keynum=key_san();
if(keynum==1)
{
delay_ms(100);
//GPIO_ResetBits(GPIOE,GPIO_Pin_8|GPIO_Pin_9|GPIO_Pin_10);//输出为0,点亮LED
GPIO_ToggleBits(GPIOE,GPIO_Pin_8|GPIO_Pin_9|GPIO_Pin_10);
}
else if(keynum==2)
{
GPIO_SetBits(GPIOB,GPIO_Pin_10); //输出为1 蜂鸣器
}
}
}