单片机流水灯程序(单片机编程:8个流水灯每隔一秒亮一个,用中断的方式。求完整编程啊!(低电平亮的,而且只能有)
发布时间:2022-09-23 20:50
浏览量:9
unsigned int TimeCounter=0;
主程序定时器初始化256分之一秒;while(1);
//这段你自己写,因为不知道什么单片机,时钟多少。。。计数范围可能不够考虑累加计时
中断服务程序里:
TimeCounter++;
if ((TimeCounter & 0xff)==0) {
PX= ~(1<<((TimeCounter/256)&3)); //PX是你输出口
}
标签: