微波EDA网,见证研发工程师的成长!
首页 > 研发问答 > 嵌入式设计讨论 > MCU和单片机设计讨论 > 求一个8按键的简易电子琴c51的程序与原理图

求一个8按键的简易电子琴c51的程序与原理图

时间:10-02 整理:3721RD 点击:
求一个8按键的简易电子琴c51的程序与原理图!  谢谢谢谢!
马上要交实验作品了所以,所以希望各位能帮帮忙。

#include <reg52.h>
#define uchar unsigned char
#define uint unsigned int
sbit BEEP = P3^7;
sbit K1   = P1^4;
sbit K2   = P1^5;
sbit K3   = P1^6;
sbit K4   = P1^7;
void DelayMS(uint x)
{
        uchar t;
        while(x--)
        {
                 for(t=0;t<120;t++);
        }
}
void Play(uchar t)
{
        uchar i;
        for(i=0;i<100;i++)
        {
                 BEEP = ~BEEP;
                DelayMS(t);
        }
        BEEP = 0;
}
void main()
{
        P1 = 0xff;
        while(1)
        {
                 if(K1==0) Play(1);
                if(K2==0) Play(2);
                if(K3==0) Play(3);
                if(K4==0) Play(4);
        }
}

自己加几个开关加油


Copyright © 2017-2020 微波EDA网 版权所有

网站地图

Top