void Set_LCD_Cursor(int x, int y)
{
	LCD_Move_Cursor( x, y);
}
示例#2
0
文件: screen.c 项目: BigEd/pyldin
void screen_cursor(int x, int y)
{
    LCD_Move_Cursor(x * font->width, y * font->height);
}