#includeconfig.h//流水灯数值表intLed_Table[]={0x00fe0000,0x00fd0000,0x00fb0000,0x00f70000,0x00ef0000,0x00d
#include “config.h”
//流水灯数值表
int Led_Table[]={
0x00fe0000,0x00fd0000,0x00fb0000,0x00f70000,0x00ef0000,
0x00df0000,0x00bf0000,0x007f0000};
//主函数
int main()
{
int i=0;
PINSEL1=0x00000000;
IO1DIR=0xff<<16; //这个写法很清楚,引荐
while(1)
{
IO1SET=Led_Table[i];//设置高电平引脚
IO1CLR=~Led_Table[i]; //设置低电平引脚
delay(60);
i++;
if(i==8)
{
i=0;
}
}
return 0;
}
附图:
声明:本文内容来自网络转载或用户投稿,文章版权归原作者和原出处所有。文中观点,不代表本站立场。若有侵权请联系本站删除(kf@86ic.com)https://www.86ic.net/news/guandian/264414.html