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);//调用库中的延时函数
}
}
}
AVR单片机LED流水 相关文章:
- Windows CE 进程、线程和内存管理(11-09)
- RedHatLinux新手入门教程(5)(11-12)
- uClinux介绍(11-09)
- openwebmailV1.60安装教学(11-12)
- Linux嵌入式系统开发平台选型探讨(11-09)
- Windows CE 进程、线程和内存管理(二)(11-09)