流水灯

流水灯

1.延时函数
自定义函数:延时函数delay(毫秒级)
void delay(unsigned int z)
{
unsigned int x,y;
for(x = z; x > 0; x–)
for(y = 114; y > 0 ; y–);
}
给形参z赋值,如延时100毫秒:delay(100);

标准库函数:intrins.h
内部函数
字符型循环左移:crol
字符型循环右移:cror
#include <intrins.h>
void test_crol (void) {
unsigned char a;
unsigned char b;
a = 0xFE; //1111 1110
b = crol(a,1); // b now is 0xFD 二进制为1111 1101
}

2.循环移位函数与左移和右移运算符的区别
使用字符型循环左移:
#include <intrins.h>
void test_crol (void) {
unsigned char a;
unsigned char b;
a = 0xFE; //1111 1110
b = crol(a,1); // b now is 0xFD 二进制为1111 1101
}
使用左移运算符
a = 0xFE; //1111 1110
b = a<<1; // b now is 0xFC 二进制为1111 1100
区别:循环左移是把最高位移到最低位上,左移运算符是把最高位移除最低位补0

3.接下来展示下完整的编程代码:

#include<reg52.h>
#include<intrins.h>

void delay(unsigned char i)
{
unsigned char m,n;
for(m=i;m>0;m–)
for(n=125;n>0;n–);
}

void main()
{ unsigned char k;
while(1)
{
P1=0xfe;
for(k=0;k<8;k++)
{
delay(2000);
P1=crol(P1,1);
}
}
}
4.最后展示一下
![在这里插入图片描述](https://www.icode9.com/i/ll/?i=20201206232206510.jpg?,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3FxXzUyNzQ3MzIy,size_16,color_FFFFFF,t_7流水灯流水灯

上一篇:TI小车中国基础版---走迷宫代码


下一篇:探索Integer.toBinaryString源码