Exemplo n.º 1
0
/*****************************************************************************
 *
 * Description:
 *    Update xy-position (by also creating a window).
 *
 ****************************************************************************/
void
lcdGotoxy(tU8 x, tU8 y)
{
  lcd_x = x;
  lcd_y = y;
  lcdWindow(x, y, 129, 129);
}
Exemplo n.º 2
0
/*****************************************************************************
 *
 * Description:
 *    Update xy-position (by also creating a window).
 *
 ****************************************************************************/
void lcdGotoxy (uint8 x, uint8 y)
{
	lcd_x = x;
	lcd_y = y;
	lcdWindow (x, y, 129, 129);
}