예제 #1
0
파일: input.go 프로젝트: Charlesetc/pat
func updateCursor() {
	display.SetCursor(cursor - currentScroll)
	display.DrawLine()
}
예제 #2
0
파일: input.go 프로젝트: Charlesetc/pat
func Draw() {
	display.ShowLine(visibleLine())
	display.SetCursor(cursor - currentScroll)
	display.DrawLine()
	display.Flush()
}