微波EDA网,见证研发工程师的成长!
首页 > 硬件设计 > 嵌入式设计 > AVR单片机从左到右LED流水灯C语言程序

AVR单片机从左到右LED流水灯C语言程序

时间:11-30 来源:互联网 点击:
AVR单片机第一个实验,从左到右的LED流水灯C语言程序,编程环境是WinAVR,8MHZ晶振。

#include avr/io.h>//相关库

#include

typedef unsigned int uint;

typedef unsigned char uchar;

uchar const tab[]={0xfe,0xfd,0xfb,0xf7,0xef,0xdf,0xbf,0x7f};

void main(void)//主函数

{

PORTB=0xff;//PB口输出为高电平

DDRB=0xff;//高PB口为输出

uchar a;//定义变量

while(1)//无限循环

{

for(a=0;a<8;a++)

{

PORTB=tab[a];//流水灯十六进制数组

_delay_ms(500);//调用库中的延时函数

}

}

}

Copyright © 2017-2020 微波EDA网 版权所有

网站地图

Top