LCD_ShowString(2,0,"2:9V/8S ");
LCD_ShowString(3,0,"3:AC0~30V ");
LCD_ShowString(4,0,"4
C0~30V ");
LCD_ShowString();如下
void LCD_ShowString(u8 x,u8 y,const u8 *p)
{
u8 temp;
if(x>4) {x=1;}
if(y>4) {y=0;}
LCD12864_Pos(x,y);
temp=*p;
while(temp!=' ')
{
LCD12684_Wdat(temp);
temp=*(++p);
}
}
请问怎么修改可以再主程序里面 声明数组写成这样的形式
U8 FUN[]={
"3:AC0~30V ","3C0~30V "}
LCD_ShowString(2,0,FUN[0] ");
一周热门 更多>