蜂鸣器提示音+单片机+普中+江科大自化协
1 功能
按键提示音:用户按下独立按键时,蜂鸣器发出提示音,同时将按键值显示在数码管上。
2 原理图
3 参考程序
3.0 主程序
#include <REGX52.H> #include "Nixie.h" #include "Buzzer.h" #include "Key.h" unsigned char KeyNum; void main() { Nixie(1,0); //数码管初始化,显示0 while(1) { KeyNum = Key(); //4个独立按键扫描 if(KeyNum) { Buzzer_Time(200); //蜂鸣器鸣响200ms Nixie(1,KeyNum); //显示按键值 } } }
3.1 按键扫描函数(独立按键)
#include <REGX52.H> #include "Delay.h" /** * @brief 获取独立按键键码 * @param 无 * @retval 按下按键的键码,范围:0~4,无按键按下时返回值为0 */ unsigned char Key() { unsigned char KeyNumber=0; if(P3_1==0){Delay(20);while(P3_1==0);Delay(20);KeyNumber=1;} if(P3_0==0){Delay(20);while(P3_0==0);Delay(20);KeyNumber=2;} if(P3_2==0){Delay(20);while(P3_2==0);Delay(20);KeyNumber=3;} if(P3_3==0){Delay(20);while(P3_3==0);Delay(20);KeyNumber=4;} return KeyNumber; }
#ifndef __KEY_H__ #define __KEY_H__ unsigned char Key(); #endif
3.2 延时函数
void Delay(unsigned int xms) { unsigned char i, j; while(xms--) { i = 2; j = 239; do { while (--j); } while (--i); } }
#ifndef __DELAY_H__ #define __DELAY_H__ void Delay(unsigned int xms); #endif
3.3 数码管驱动函数
#include <REGX52.H> #include "Delay.h" //数码管段码表 unsigned char NixieTable[]={0x3F,0x06,0x5B,0x4F,0x66,0x6D,0x7D,0x07,0x7F,0x6F}; /** * @brief 数码管显示 * @param Location 要显示的位置,范围:1~8 * @param Number 要显示的数字,范围:段码表索引范围 * @retval 无 */ void Nixie(unsigned char Location,Number) { switch(Location) //位码输出 { case 1:P2_4=1;P2_3=1;P2_2=1;break; case 2:P2_4=1;P2_3=1;P2_2=0;break; case 3:P2_4=1;P2_3=0;P2_2=1;break; case 4:P2_4=1;P2_3=0;P2_2=0;break; case 5:P2_4=0;P2_3=1;P2_2=1;break; case 6:P2_4=0;P2_3=1;P2_2=0;break; case 7:P2_4=0;P2_3=0;P2_2=1;break; case 8:P2_4=0;P2_3=0;P2_2=0;break; } P0=NixieTable[Number]; //段码输出 // Delay(1); //显示一段时间 // P0=0x00; //段码清0,消影 }
#ifndef __NIXIE_H__ #define __NIXIE_H__ void Nixie(unsigned char Location,Number); #endif
3.4 蜂鸣器驱动函数
#include <REGX52.H> #include <intrins.H> //蜂鸣器端口 sbit Buzzer = P2^5; /** * @brief 蜂鸣器私有延时函数,延时500us * @param 无 * @retval 无 */ void Buzzer_Delay500us() //@11.0592MHz { unsigned char i; _nop_(); i = 227; while (--i); } /** * @brief 蜂鸣器发声 * @param ms 发声的时长,范围:0~32767 * @retval 无 */ void Buzzer_Time(unsigned int ms) { unsigned int i; for(i=0;i<ms*2;i++) { Buzzer = !Buzzer; Buzzer_Delay500us(); //高低电平各500us } }
#ifndef __Buzzer_H__ #define __Buzzer_H__ void Buzzer_Time(unsigned int ms); #endif