void Set_LCD_Cursor(int x, int y)
{
	LCD_Move_Cursor( x, y);
}
Exemplo n.º 2
0
void screen_cursor(int x, int y)
{
    LCD_Move_Cursor(x * font->width, y * font->height);
}