使用单片机写一个在彩色液晶屏上画矩形的函数
时间:10-02
整理:3721RD
点击:
/****************************************************************************
*函数名:GUI_Box
*输 入: sx, sy, ex, ey, color
*输 出:
*功 能:给一个区域涂上颜色。
****************************************************************************/
void GUI_Box(uchar sx, uint sy, uchar ex, uint ey, uint color)
{
TFT_SetWindow(sx, sy, ex, ey);
sx = ex - sx + 1;
sy = ey - sy + 1;
while (sx--)
{
while (sy--)
{
TFT_WriteData(color);
}
}
}
这样写会把以前写的字、直线盖住。
/****************************************************************************
*函数名:GUI_Box
*输 入: sx, sy, ex, ey, color
*输 出:
*功 能:给一个区域涂上颜色。
****************************************************************************/
void GUI_Box(uchar sx, uint sy, uchar ex, uint ey, uint color)
{
uint temp;
TFT_SetWindow(sx, sy, ex, ey);
sx = ex - sx + 1;
sy = ey - sy + 1;
while (sx--)
{
temp = sy;
while (temp--)
{
TFT_WriteData(color);
}
}
}
这样就行,为什么?
附:TFT_Setwindow()函数
/****************************************************************************
*函数名:void TFT_Setwindow
*输入:xStart, yStart, xEnd, yEnd
*输出:
*功能:设置窗口的范围,起始地址和终止地址。
****************************************************************************/
void TFT_SetWindow(uint xStart, uint yStart,uint xEnd, uint yEnd)
{
uint x, y, xy;
x=(xEnd<<8)|xStart; //将两个8位组合成十六位
y=(yEnd<<8)|yStart;
xy=(yStart<<8)|xStart;
//---设置X轴坐标---//
TFT_WriteCmd(0x0044);
TFT_WriteData(x);
//---设置Y轴坐标---//
TFT_WriteCmd(0x0045);
TFT_WriteData(y);
TFT_WriteCmd(0x0021);
TFT_WriteData(xy);
TFT_WriteCmd(0x0022);
}
*函数名:GUI_Box
*输 入: sx, sy, ex, ey, color
*输 出:
*功 能:给一个区域涂上颜色。
****************************************************************************/
void GUI_Box(uchar sx, uint sy, uchar ex, uint ey, uint color)
{
TFT_SetWindow(sx, sy, ex, ey);
sx = ex - sx + 1;
sy = ey - sy + 1;
while (sx--)
{
while (sy--)
{
TFT_WriteData(color);
}
}
}
这样写会把以前写的字、直线盖住。
/****************************************************************************
*函数名:GUI_Box
*输 入: sx, sy, ex, ey, color
*输 出:
*功 能:给一个区域涂上颜色。
****************************************************************************/
void GUI_Box(uchar sx, uint sy, uchar ex, uint ey, uint color)
{
uint temp;
TFT_SetWindow(sx, sy, ex, ey);
sx = ex - sx + 1;
sy = ey - sy + 1;
while (sx--)
{
temp = sy;
while (temp--)
{
TFT_WriteData(color);
}
}
}
这样就行,为什么?
附:TFT_Setwindow()函数
/****************************************************************************
*函数名:void TFT_Setwindow
*输入:xStart, yStart, xEnd, yEnd
*输出:
*功能:设置窗口的范围,起始地址和终止地址。
****************************************************************************/
void TFT_SetWindow(uint xStart, uint yStart,uint xEnd, uint yEnd)
{
uint x, y, xy;
x=(xEnd<<8)|xStart; //将两个8位组合成十六位
y=(yEnd<<8)|yStart;
xy=(yStart<<8)|xStart;
//---设置X轴坐标---//
TFT_WriteCmd(0x0044);
TFT_WriteData(x);
//---设置Y轴坐标---//
TFT_WriteCmd(0x0045);
TFT_WriteData(y);
TFT_WriteCmd(0x0021);
TFT_WriteData(xy);
TFT_WriteCmd(0x0022);
}