in using the Parallax serial text (pst)
denno
Posts: 223
in Propeller 1
What is the proper syntax to get the cursor to return to the HOME position...aka...0,0? I have a list of the various commands, however, it does not show how to return to 0,0 to write over the last output at the HOME position. And to place the cursor at any position...for a new write...thanks DennO
Comments
Hey denno, I attach some snippets from the code of Parallax Serial Terminal. I suggest you look directly at the code to figure out the commands - the program it is well documented and structured.
PUB Home
{{Send cursor to home position (top-left).}}
Char(HM)
PUB Position(x, y)
{{Position cursor at column x, row y (from top-left).}}
Char(PC)
Char(x)
Char(y)