百度知道 - 信息提示

日期:2025-01-13 07:32:47 人气:1

百度知道 - 信息提示

    A+
热门评论

单片机流水灯C语言程序(8个灯,依次点亮每个灯,延时500MS)

1、用精确定时的方法,设置流水灯运行时的时间间隔,延时时间为500MS。 2、#include "reg51.h"首先写出单片机的头函数。 3、#include "intrins.h"输入位移函数。 4、unsigned int count=0,led;定义函数。 5、输入主函数,定义单片机的端口,写入延时函数。 6、中断跳转,使流水灯运行起来。

阅读全文

51单片机流水灯用C语言编写的设计程序???

#include #include #define uchar unsigned char #define uint unsigned int void delay(uint z); main() { uchar aa; while(1) { aa=0xfe; P1=aa; delay(100); while(1) { aa=_crol_(aa,1); P1=aa; delay(100); } } } void delay(uint z) { uint x,y; for(x=z;x>0;x--) for(y=110;y>0;y--); }

阅读全文