本帖最后由 superbigbaby 于 2010-2-3 15:15 编辑
#include <reg52.h>
#define uchar unsigned char
#define uint unsigned int
uchar code Pattern_P0[]=
{
0xfc,0xf9,0xf3,0xe7,0xcf,0x9f
};
uchar code Pattern_P2[]=
{
0xf5,0xf6,0xfe,0x54,0x56,0x76,0xd7,0x49,0xa9,0xe4,0xc6
};
void DelayMS(uint x)
{
uchar t;
while(x--)
{
for(t=120;t>0;t--);
}
}
void main()
{
uchar i;
while(1)
{
for(i=136;i>0;i--)
{
P0=Pattern_P0[ i];
P2=Pattern_P2[ i];
DelayMS(150);
}
}
}
现象是花样流水灯.
这个程序小弟咋看不懂捏?这个数组是什么意思?以及这个for循环, 进入for循环的时候i=136, 那P0数组里选的是哪个数呢? 应该没有136这个值啊? |