用keil_5编写的AT89C51单片机程序实现用外部中断0实现P1口连接8个发光二极管,要求中断未发生时LED闪烁,中断发生时LED流水
时间: 2023-06-13 20:05:54 浏览: 252
下面是一个简单的AT89C51单片机程序,实现了使用外部中断0控制8个发光二极管的流水灯效果。
```
#include<reg51.h> //引入头文件
sbit LED1 = P1^0; //定义LED1
sbit LED2 = P1^1; //定义LED2
sbit LED3 = P1^2; //定义LED3
sbit LED4 = P1^3; //定义LED4
sbit LED5 = P1^4; //定义LED5
sbit LED6 = P1^5; //定义LED6
sbit LED7 = P1^6; //定义LED7
sbit LED8 = P1^7; //定义LED8
void delay(unsigned int t) //自定义延时函数
{
unsigned int i,j;
for(i=0;i<t;i++)
{
for(j=0;j<125;j++);
}
}
void main()
{
EA = 1; //打开总中断
EX0 = 1; //打开外部中断0
IT0 = 1; //设置中断类型为下降沿触发
while(1) //主循环
{
LED1 = ~LED1; //LED1闪烁
delay(500); //延时500ms
}
}
void INT0_ISR() interrupt 0 //中断0的中断服务函数
{
LED1 = 1; //LED1点亮
LED2 = 1; //LED2点亮
LED3 = 1; //LED3点亮
LED4 = 1; //LED4点亮
LED5 = 1; //LED5点亮
LED6 = 1; //LED6点亮
LED7 = 1; //LED7点亮
LED8 = 1; //LED8点亮
delay(500); //延时500ms
LED1 = 0; //LED1熄灭
LED2 = 0; //LED2熄灭
LED3 = 0; //LED3熄灭
LED4 = 0; //LED4熄灭
LED5 = 0; //LED5熄灭
LED6 = 0; //LED6熄灭
LED7 = 0; //LED7熄灭
LED8 = 0; //LED8熄灭
delay(500); //延时500ms
}
```
在上面的代码中,我们首先定义了8个发光二极管的引脚,并且编写了一个自定义的延时函数delay()。然后在主函数中,我们打开了总中断、外部中断0,并且设置了中断类型为下降沿触发。在主循环中,我们让LED1不停地闪烁。
当外部中断0触发时,程序会跳转到中断服务函数INT0_ISR()中,这时我们让8个发光二极管依次点亮,并且延时500ms,然后再让它们依次熄灭,并且再延时500ms。这样就实现了流水灯的效果。
阅读全文