15
EA KIT129-6
ESC
R
L
x1
y1 x2 y2
Delete area
Deletes the area from the upper left corner (
x1,y1
) to the lower right corner (
x2,y2
).
Example: $1B
$44 $53
$1B
$52
$4C
$06
$04
$28
$19
The display is filled with
ESC D S
and then deleted from 6,4 to 40,25.
ESC
R
I
x1
y1 x2 y2
Invert area
Inverts the area from the upper left corner (
x1,y1
) to the lower right corner (
x2,y2
)
(black pixels turn white and vice versa).
Example: $1B
$52 $49
$00
$00
$17
$1B
Inverts the area from 0,0 to 23,27 with the display contents from the "Set font"
example.
ESC
R
S
x1
y1 x2 y2
Fill area
Fills the area from the upper left corner (
x1,y1
) to the lower right corner (
x2,y2
) (sets
the pixels to black).
Example: $1B
$52 $53
$09
$05
$16
$16
Sets the area from 9,5 to 22,22 black.
ESC
R
M
x1
y1 x2 y2 pat
Fill area with pattern
Fills a rectangular area from the upper left corner (
x1,y1
) to the lower right corner
(
x2,y2
) with the pattern
pat
taking into account the set graphics mode "ESC V' (set/
delete/invert/replace/inverse replace).
Example: $1B
$52 $4D
$05
$01
$2D
$1A
$07
Fills the area with the pattern 7=45°cross from 5,1 to 45,26.
ESC
R
O
x1
y1 x2 y2 pat
Draw box
Draws a rectangle from the upper left corner (
x1,y1
) to the lower right corner (
x2,y2
)
with the pattern
pat
. The background of the box is deleted. See 'ESC R R' (Draw
rectangle).
Example: $1B
$52 $4F
$02
$05
$12
$1E
$02
Draws a box from 2,5 to 18,30 with the pattern 2=25%gray.
ESC
R
J
x1
y1 x2 y2 pat
Draw rounded box
Draws a rectangle with rounded corners from the upper left corner (
x1,y1
) to the lower
right corner (
x2,y2
) with the pattern
pat
. The background is deleted. See 'ESC R N'
(Draw rounded rectangle).
Example: $1B
$52 $4A
$07
$03
$23
$16
$03
Draws a rounded box from 7,3 to 35,22 with the pattern 3=50%gray.
ESC
S
num
data...
Send bytes via RS-232
Outputs the next
num
(1..255, 0=256) bytes at the serial interface.
Example: $1B
$53 $04
$54
$45
$53
$54
Transmits the word 'TEST' via the RS-232C interface.