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);//调用库中的延时函数
}
}
}