基于51单片机的8个LED流水灯的的设计

本设计旨在实现8个LED流水灯的设计。

原理图:

参考代码:

#include<reg52.h>
#include<intrins.h>
#define uint unsigned int 
uint temp;

void Delay500ms()	//延时0.5秒函数	//@11.0592MHz
{
	unsigned char i, j, k;

	_nop_();
	i = 4;
	j = 129;
	k = 119;
	do
	{
		do
		{
			while (--k);
		} while (--j);
	} while (--i);
}

void main()
 { 
	P1=0xfe;         //IO口初始化
	temp=0xfe;
	Delay500ms();
    while(1)
   	{	
		temp=_crol_(temp,1);   //左移1位操作
		P1=temp;
		Delay500ms();	
	}
}

备注:

比如:P=0x 1111 1110,则

意思表示
字符循环左移1位:_crol_ (P,1)P=0x 1111 1101
字符循环右移2位:_cror_(P,2)P=0x 1011 1111

 

有疑问者,欢迎私聊。

 

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值