User`s manual

1 DATECS EP-50
32 33
User’s Manual
[Sample Program]
LPRINT “0123456789012345678901”;
LPRINT CHR$ (&HA);
LPRINT CHR$ (&H9) + “AAA”;
LPRINT CHR$ (&H9) + “BBB”;
LPRINT CHR$ (&HA);
LPRINT CHR$ (&H1B) + “D”;
LPRINT CHR$ (3) + CHR$ (7) + CHR$ (14) + CHR$ (0);
LPRINT CHR$ (&H9) + “AAA”;
LPRINT CHR$ (&H9) + “BBB”;
LPRINT CHR$ (&H9) + “CCC” + CHR$ (&HA);
[Print Results]
3. LF
Printing and Paper Feed Command
[Code] [0Ah]
[Outline] Prints data inside the input buffer and feeds lines based on
the line feed amount having been set.
The head of the line becomes the next print starting position.
[See Also] ESC 2, ESC 3
[Sample Program]
LPRINT “AAA” + CHR$ (&HA);
LPRINT “BBB” + CHR$ (&HA);
LPRINT CHR$ (&HA);
LPRINT “CCC” + CHR$ (&HA);
[Print Results]
4. CR
Print Command
[Code] [0Dh]
This command is ignored.
5. ESC RS
Sounds the beeper
[Code] [1Bh] + [1Eh]
[Outline] Sounds the beeper.
6. ESC SP n
Setting the right space amount of the character
[Code] [1Bh] + [20h] + n
[Range] {0 <= n <= 20}
[Outline] The rightward space amount is set in dot unit (1/203 inch unit).
[Caution] The rightward space amount in double width mode is made
double of the set volume.
[Default] n = 0
[Sample Program]
LPRINT CHR$ (&H1B) + “ “ + CHR$ (0);
LPRINT “AAAAA” + CHR$ (&HA);
LPRINT CHR$ (&H1B) + “ “ + CHR$ (1);
LPRINT “AAAAA” + CHR$ (&HA);
LPRINT CHR$ (&H1B) + “ “ + CHR$ (12);
LPRINT “AAAAA” + CHR$ (&HA);
[Print Results]