if (temp<32)temp=32; //屏蔽控制字符,不予顯示
Display( temp++ );
Delay400Ms();
}
}
//顯示字符串
void ePutstr(Uchar x,Uchar y, Uchar code *ptr)
{
Uchar i,l=0;
while (ptr[l] >31){l++;};
for (i=0;i<l;i++) {
DispOneChar(x++,y,ptr[i]);
if ( x == 16 )
{
x = 0; y ^= 1;
}
}
}