STM32按键控制蜂鸣器

key.c

#include"key.h"
void Key_Init(void)
{
	GPIO_InitTypeDef GPIO_VALUE; 
	RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOC|RCC_APB2Periph_GPIOA,ENABLE);
	GPIO_VALUE.GPIO_Mode=GPIO_Mode_IPU;
	GPIO_VALUE.GPIO_Pin=GPIO_Pin_9|GPIO_Pin_8;
	GPIO_Init(GPIOC,&GPIO_VALUE);	
	
	GPIO_VALUE.GPIO_Mode=GPIO_Mode_IPD;
	GPIO_VALUE.GPIO_Pin=GPIO_Pin_0;
	GPIO_Init(GPIOC,&GPIO_VALUE);	
}
int Key_status(int nu)
{
	int ret=0;
	switch(nu)
	{
		case 0:ret=GPIO_ReadInputDataBit(GPIOC,GPIO_Pin_9);break;
		case 1:ret=GPIO_ReadInputDataBit(GPIOC,GPIO_Pin_8);break;
		case 2:ret=GPIO_ReadInputDataBit(GPIOA,GPIO_Pin_0);ret=!ret;break;
	}
	return !ret;
	
}

key.h

#ifndef __KEY_H
#define __KEY_H
#include "stm32f10x_conf.h"
extern void Key_Init(void);
extern int Key_status(int nu);

#endif 

main.c

#include"fmq.h"
#include"key.h"
int main(void)
{
	int i=0,j=0;
	Fmq_Init();
	Key_Init();
	for(i=0;i<3;i=(i+1)%3)
	{
	  if(i==0)  
	  Key_status(i)?Fmq_On():Fmq_Off();
  }
	return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值