51单片机流水灯代码 这段流水灯代码熟练之后,基本上可以算入门了吧? #include <STC89C5xRC.H> #include <intrins.h> //延时函数 void delay(unsigned int n) { unsigned int i=0,j=0; for(i=0;i<n;i++) { for(j=0;j<120;j++); } } //流水灯显示函数 void led() { unsigned int i; u...
简介:51单片机汇编语言流水灯代码 效果图: 方法一: 写出所有亮灯可能,然后循环 MAIN:MOV P2, #11111110BLCALL DELAYMOV P2, #11111101BLCALL DELAYMOV P2, #11111011BLCALL DELAYMOV P2, #11110111BLCALL DELAYMOV P2, #11101111BLCALL DELAYMOV P2, #11011111BLCALL DELAYMOV P2, #10111111BLCALL DELAYMOV...
6、;delay(z);P0=0xff;void lsd2() /lsd2 两个灯流水双程模式1uchar a,i,j,k,l,l1,k1,j1,i1;a=0xfe;P0=a;delay(z);a=a<<1;P0=a;delay(z);for(i=0;i<6;i+) a=_crol_(a,1);P0=a;delay(z);P0=0x7f;P2=0xfe;delay(z);P0=0xff;a=0xfc;P2=a;delay(z);for(j=0;j<...
此图发光二极管采用共阳极式连接 流水灯C代码 代码语言:javascript 复制 #include<reg51.h>#defineTIME1//宏定义秒数,方便更改间隔时间voiddelaySec(unsigned char n);voidMovinglight();unsigned char code MovinglightArray[]={0xfe,0xfd,0xfb,0xf7,0xef,0xdf,0xbf,0x7f};unsigned char i,n=1;intmain()...
wwwdoczjcomdocca3349611html简单的51单片机花样流水灯c语言源代码include51系列单片机定义文件defineucharunsignedchar定义无符号字符defineuintunsignedint定义无符号整数voiddelaymsuintx定义延时函数uintij 简单的51单片机花样流水灯C语言源代码 #include //51系列单片机定义文件...
51单片机5种方式实现流水灯,代码分别如下:方式一:#include<reg52.h>#defineucharunsignedchar#defineuintunsignedintvoiddelay1ms(uint);voidmain(){ while(1){ P1=0xfe;delay1ms(1000);P1=0xfd;delay1ms(1000);P1=0xfb;delay1ms(1000);P1=0xf7;delay1ms(1000);P1=0xef;delay1ms(1000);P1=0xdf;delay...
LED流水灯参考代码如下:#include <reg52.h> //52系列单片机头文件 #include <intrins.h> #define uint unsigned int //宏定义 #define uchar unsigned char void delayms(uint); //声明子函数 uchar aa;void main() //主函数 { aa=0xfe; //赋初值11111110 while(1) //大循环 {...
简单的51单片机花样流水灯C语言源代码#include<reg51.h>//51系列单片机定义文件#defineucharunsignedchar//定义无符号字符#defineuintunsignedint//定义无符号整数voidDelayms(uintx){//定义延时函数uinti,j;for(i=x;i>0;i--)for(j=110;j>0;j--);}voidmain(){uinti;uchartemp;while(1){temp=0x01;//...
51单片机八个灯的流水灯代码:1、用精确定时的方法,设置流水灯运行时的时间间隔,延时时间为500MS。2、#include "reg51.h"首先写出单片机的头函数。3、#include "intrins.h"输入位移函数。4、unsigned int count=0,led;定义函数。5、输入主函数,定义单片机的端口,写入延时函数。编辑推荐 对于刚接触...