User manual CITIZEN CBM-272

Lastmanuals offers a socially driven service of sharing, storing and searching manuals related to use of hardware and software : user guide, owner's manual, quick start guide, technical datasheets... DON'T FORGET : ALWAYS READ THE USER GUIDE BEFORE BUYING !!!

If this document matches the user guide, instructions manual or user manual, feature sets, schematics you are looking for, download it now. Lastmanuals provides you a fast and easy access to the user manual CITIZEN CBM-272. We hope that this CITIZEN CBM-272 user guide will be useful to you.

Lastmanuals help download the user guide CITIZEN CBM-272.


Mode d'emploi CITIZEN CBM-272
Download
Manual abstract: user guide CITIZEN CBM-272

Detailed instructions for use are in the User's Guide.

[. . . ] CBM-272 --1-- Declaration of Conformity Manufacturer's Name : Japan CBM Corporation Manufacturer's Address : CBM Bldg. , 5-68-10, Nakano, Nakano-ku Tokyo, 164-0001, Japan Declare the Product Product Name Model Number(s) Line Thermal Printer CBM-272 Series (CBM-272R, CBM-272P) (S. No. 0190001 ~ ) Conform to the following Standards LVD : EN60950 : A4: 1997, A11: 1997 EMC : EN55022 : 1998 Class A : EN61000-3-2 : 1995 +A1:1998+A2:1998 : EN61000-3-3 : 1995 : EN55024 : 1998 : EN61000-4-2 : 1995 ±4KV CD, ±8 KV AD : EN61000-4-3 : 1996 4. 5 V/m, 80 MHz-1000 MHz AM 1 KHz 80 % : EN61000-4-4 : 1995 ±1. 0 KV (AC Mains), ±0. 5 KV (Signal Lines) : EN61000-4-5 : 1995 ±1 KV (Normal mode), ±2 KV (Common mode) : EN61000-4-6 : 1996 3 V, 0. 15 MHz-80 MHz AM 1 KHz 80 % : EN61000-4-8 : 1993 50 Hz, 3 A/m : EN61000-4-11 : 1994 0%, 5000ms/70%, 500ms/0%, 10ms Supplementary Information "The product complies with the requirements of the Low Voltage Directive 73/ 23/EEC, 93/68/EEC and the EMC Directive 89/336/EEC, 92/31/EEC, 93/68/EEC" Place Date Tokyo, Japan August 2001 Full Name : Mikio Moriya Position : General Manager R & D Department European Contact : Norco Declaration AB Box 7146 S-250 07 Helsingborg Sweden Signature Warning : This is a Class A product. In a domestic environment this product may cause radio interference in which case the user may be required to take adequate measures. This declaration is applied only for 230 V model. --i-- IMPORTANT SAFETY INSTRUCTIONS · Read all of these instructions and save them for future reference. · Follow all warnings and instructions marked on the product. [. . . ] [ ]k in the table denotes k-times of repeat. -- 45 -- 10. 2 Command Details 10. 2. 1 Descriptions of Each Item XXXXX [Function] [Code] Command Function A sequence of code constituting a command is represented in hexadecimal number for < >H, binary number for < >B, and decimal number for < >, respectively; [ ]k represents a repeat count of k-times. Describes an argument value (Setting range) for the command. Describes an initial value for the command when accompanied by an argument. Describes the associated commands for use. Describes a coding example in the BASIC sample program. * This example is only for your reference and differs depending on the language used, version, and so on. For details, see the manual for the language used. Shows a print result obtained by running the abovementioned program. However, the print result shown here has a different scale from the actual print result. Represents the command. [Range] [Outline] [Caution] [Default] [See Also] [Sample Program] [Print Result] XXXX -- 46 -- 10. 2. 2 Command Details HT [Function] [Code] [Outline] Horizontal tab <09> H Shifts the printing position to the next horizontal tab position. · Ignored when the next horizontal tab position has not been set. The horizontal tab position is set by ESC D. Initial setting of the horizontal tab position is each 8 characters in 9th, 17th, 25th, 33rd, columns. ESC D 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) ; END [Caution] [Default] [See Also] [Sample Program] [Print Results] 0123456789012345678901 AAA BBB < < AAA BBB CCC Initially set horizontal tab When set to the 4th, 8th, and 15th columns -- 47 -- LF [Function] [Code] [Outline] Printing and Paper Feed <0A>H 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. ESC 2, ESC 3 LPRINT "AAA" ; CHR$ (&HA) ; LPRINT "BBB" ; CHR$ (&HA) ; LPRINT CHR$ (&HA) ; LPRINT "CCC" ; CHR$ (&HA) ; END AAA BBB CCC < < < < Print and line feed Print and line feed Line feed only Print and line feed [Caution] [See Also] [Sample Program] [Print Results] -- 48 -- CR [Function] [Code] [Outline] Print <0D>H 1) When DS1-2 is OFF: This command is ignored. 2) When DS1-2 is ON: With data held inside the internal print buffer, printing and line feed are performed. Without data inside the internal print buffer, however, no printing is performed. LF LPRINT "AAA" ; CHR$ (&HD) ; LPRINT "BBB" ; CHR$ (&HD) ; LPRINT CHR$ (&HD) ; LPRINT "CCC" ; CHR$ (&HD) ; END When DS1-2 is OFF AAA BBB CCC < When DS1-2 is ON AAA BBB CCC < < < < Print and line feed Print and line feed Line feed only Print and line feed [See Also] [Sample Program] [Print Results] Print and line feed -- 49 -- ESC SP n [Function] [Code] [Range] [Outline] [Caution] Setting the right spacing of the character <1B> H <20> H <n> 0 n 32 The rightward space amount is set in dot unit (1/203 inch unit). · The rightward space amount in double wide mode is made double of the set volume. · This command does not affect Kanji characters. n=0 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) END AAAAA < AAAAA < AAAAA< 0-dot space 1-dot space 12-dot space [Default] [Sample Program] [Print Results] -- 50 -- ESC ! [. . . ] Bei der Arbeit mit 2-Farbenpapier dies immer beachten. · Nicht normalen Hochenergiedrucka auf Einzelfarbpapier (normalem Thermalpapier) ausführen. Dadurch kann die Lebensdauer des Thermalkopfs oder die Druckqualität beeinrächtigt werden. · Zur Einstellung siehe Befehle (DC3: Switching the Red/Black Printing) -- 132 -- 5. [. . . ]

DISCLAIMER TO DOWNLOAD THE USER GUIDE CITIZEN CBM-272

Lastmanuals offers a socially driven service of sharing, storing and searching manuals related to use of hardware and software : user guide, owner's manual, quick start guide, technical datasheets...
In any way can't Lastmanuals be held responsible if the document you are looking for is not available, incomplete, in a different language than yours, or if the model or language do not match the description. Lastmanuals, for instance, does not offer a translation service.

Click on "Download the user manual" at the end of this Contract if you accept its terms, the downloading of the manual CITIZEN CBM-272 will begin.

Search for a user manual

 

Copyright © 2015 - LastManuals - All Rights Reserved.
Designated trademarks and brands are the property of their respective owners.

flag