ESC [ H /Move cursor to home position/
HOM /Move cursor to home position/
ASCII Format ESC [ H
Dec. Format [027][091][072]
Hex. Format [1Bh][5Bh][48h]
ASCII Format HOM
Dec. Format [011]
Hex. Format [0Bh]
Description The cursor will move to the left-end position of the upper line
ESC [ L /Move cursor to left-most position/
CR /Move cursor to left-most position/
ASCII Format ESC [ L
Dec. Format [027][091][076]
Hex. Format [1Bh][5Bh][4Ch]
ASCII Format CR
Dec. Format [013]
Hex. Format [0Dh]
Description The cursor will be moved to the left-end position of the current line.
ESC [ R /Move cursor to right-most position/
ASCII Format ESC [ R
Dec. Format [027][091][082]
Hex. Format [1Bh][5Bh][52h]
Description The cursor will be moved to the right-end position of the current line.
ESC [ K /Move cursor to bottom position/
ASCII Format ESC [ K
Dec. Format [027][091][075]
Hex. Format [1Bh][5Bh][4Bh]
Description The cursor will be moved to the right-end position on the lower line.
ESC 1 x y /Move cursor to specified position/
ASCII Format ESC l x y
Dec. Format [027][108] x y { 1<x<20 , 1<y<2 }
Hex. Format [1Bh][6Ch][x][y]
Description The cursor will be moved to the x column on the y line.
ESC @ /Initialize display/
ASCII Format ESC @
Dec. Format [027][064]
Hex. Format [1Bh][40h]
Description The data in the input buffer will be cleared and reset from default.
ESC W s x1x2 y /Reset the window/
ASCII Format ESC W s x1 x2 y
Dec. Format [027][087][000]
[027][087][001] x1 x2 y { 1<=x1<=x2<=20 , 1<=y<=2 }
Hex. Format [1Bh][57h][000]
[1Bh][57H][01h][x1][x2][y]
Description Reset the window on the display. When s = 0, window is cancelled (values: x1, x2, and y are not
required.)
When s = 1 the window will be reset (values: x1, x2, and y are required.) The x1 and x2 set the
position of the left column and right column, respectively, of the window. The y sets the upper line or
the lower line of the window. This function is valid within the horizontal mode.