来个开关控制的
/******************************************************************
//文件名称:Swh_led
//功 能:开关控制开关灯
//作 者:懒猫爱飞
//日 期:2010.05.25
*******************************************************************/
#include<iom8515v.h>
#include<macros.h>
#define uchar unsigned char
#define uint unsigned int
//宏定义左移,右移函数crol为循环左移,cror为循环右移
#define crol(a,n) a=(a<<n)|(a>>(8-n))
#define cror(a,n) a=(a>>n)|(a<<(8-n))
#define Bit(n) (1<<n)
#define Beep_off() PORTC&=~Bit(0)
#define Beep_on() PORTC|=Bit(0)
uchar Key_code;
/****************************************************************
//函数名称: delay(void)
//功 能:延时
//入口参数:无
//出口参数:无
*****************************************************************/
void delay(void)
{
uint i;
for(i=1;i<100;i++)
;
}
/****************************************************************
//函数名称:delay_1ms(void)
//功 能:延时1ms
//入口参数:无
//出口参数:无
*****************************************************************/
void delay_1ms(void)//1ms
{
uint i;
for(i=1;i<(uint)(8*143-2);i++)
;
}
/****************************************************************
//函数名称:delay_ms(uint time)
//功 能:延时time ms
//入口参数:time
//出口参数:无
*****************************************************************/
void delay_ms(uint time)//time*1ms
{
uint i="0";
while(i<time)
{
delay_1ms();
i++;
}
}
/****************************************************************
//函数名称:Port_init(void)
//功 能:端口初始化
//入口参数:无
//出口参数:无
*****************************************************************/
void Port_init(void)
{
DDRA = 0xff; //A口输出口,控制数码管
PORTA = 0xff;
DDRB = 0x00; //B口
PORTB = 0xff;
DDRC = 0xff; //C口
PORTC = 0xff;
DDRD = 0x00; //D口高阻状态
PORTD = 0x00;
}
/****************************************************************
//函数名称:void Key_scan(void)
//功 能:读取开关状态
//入口参数:无
//出口参数:无
*****************************************************************/
void Key_scan(void)
{
if(PINB!=Key_code)
{
delay_ms(10); //延时去抖动
if(PINB!=Key_code)
{
Key_code=PINB;
switch(Key_code)
{
case 0xfe:PORTA=0x00;PORTC=0xff;break; //各种情况都要考虑到哦^_^
case 0xfd:PORTA=0xff;PORTC=0x00;break;
case 0xfc:PORTA=0x00;PORTC=0x00;break;
case 0xff:PORTA=0xff;PORTC=0xff;break;
default: break;
}
}
}
}
/****************************************************************
//函数名称:main(void)
//功 能:主程序
//入口参数:无
//出口参数:无
*****************************************************************/
void main(void)
{
Port_init();
while(1)
{
Key_scan();
}
}
每天进步一点点,开心多一点^_^
文章评论(0条评论)
登录后参与讨论