User manual CITIZEN IDP3240 QUICK GUIDE

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. Diplodocs provides you a fast and easy access to the user manual CITIZEN IDP3240. We hope that this CITIZEN IDP3240 user guide will be useful to you.


CITIZEN IDP3240 QUICK GUIDE: Download the complete user guide (2588 Ko)

Manual abstract: user guide CITIZEN IDP3240QUICK GUIDE

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

[. . . ] 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 iDP3240 Series (iDP3240RF/PF) (S. No. 9990001~) Conform to the following Standards LVD : EN60950 EMC : EN55022 : EN61000-3-2 : EN61000-3-3 : EN55024 : EN61000-4-2 : EN61000-4-3 : EN61000-4-4 : EN61000-4-5 : EN61000-4-6 : EN61000-4-8 : EN61000-4-11 : A11: 1997 : 1998 Class A : 1995 : 1995 : 1998 : 1995 ±4KV CD, ±8 KV AD : 1995 3 V/m, 80 MHz-1000 MHz AM 1 KHz 80 % : 1995 ±1. 0 KV(AC Mains), ±0. 5 KV(Signal Lines) : 1995 ±1 KV Normal mode, ±2 KV Common mode : 1996 3 V, 0. 15 MHz-80 MHz AM 1 KHz 80 % : 1993 50 Hz, 3 A/m(Out of scope) : 1994 10 ms/95 %, 500 ms/30 %, 5000 ms/100 % 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, 1999 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. · Do not place this product on an unstable cart, stand or table. [. . . ] Regardless of the setting of this command, the FEED switch is always enable while the switch is being waited for at the time of macro execution. n=0 LPRINT CHR$(&H1B) + "c5" + CHR$(0); When enabling the FEED switch LPRINT CHR$(&H1B) + "c5" + CHR$(1); When disabling the FEED switch [Default] [Sample Program] -- 90 -- ESC d n [Function] [Code] [Range] [Outline] Printing and feeding the paper by "n" lines <1B>H<64>H<n> 0 n 255 Prints data in the print buffer and feeds paper by "n" lines. · The beginning of the line is specified as the next print start position. [Caution] [Default] [Sample Program] If [n × line feed width] exceeds approximately 1016 mm, this command feeds paper by approximately 1016 mm (40 inches). LPRINT "AAAAA"; LPRINT CHR$(&H1B) + "d" + CHR$(2); LPRINT "AAAAA" + CHR$(&HA); END AAAAA [Print Results] AAAAA 2/6-inch line feed -- 91 -- ESC p m n1 n2 [Function] [Code] [Range] Generating the specified pulses <1B>H<70>H<m><n1><n2> m = 0, 1, 48, 49 0 0 [Outline] n1 n2 255 255 The signals specified by "n1" and "n2" are output to the connector pin specified by "m". · "m" has the followings. m 0, 48 1, 49 Connector Pin Drawer Kick-Out pin No. 2 Drawer Kick-Out pin No. 5 · The ON time is n1 × 2 ms, and OFF time n2 × 2 ms. [Caution] · When "m" is beyond a definition range, no signal is output, discarding "n1" and "n2". · The drawer drive duty must be within the following range: ON time ON time + OFF time (The OFF time should be 4 times or more longer than the ON time. ) [Default] [Sample Program] LPRINT CHR$(&H1B) + "p"; LPRINT CHR$(0); Selects pin No. LPRINT CHR$(5); Sets ON time to 10ms LPRINT CHR$(50); Sets OFF time to 100ms END The initial value for "m", "n1" and "n2" is not defined. 0. 2 -- 92 -- ESC t n [Function] [Code] [Range] [Outline] Selecting the character code table <1B>H<74>H<n> 0 n 9, n = 255 Selecting the character code table: The character code table is selected based on the value of "n". n 0 1 2 3 4 5 6 7 8 9 255 Character Code Table Codepage PC437 (USA, European Standard) Codepage Katakana (Japanese) Codepage PC850 (Multilingual) Codepage PC860 (Portuguese) Codepage PC863 (Canadian-French) Codepage PC865 (Nordic) Codepage PC852 (Eastern Europe) Codepage PC866 (Russian) Codepage PC857 (Turkish) Windows Codepage Space Page (For user setting) [Default] [See Also] [Sample Program] This is a character code table specified with DIP Switch. CHARACTER CODES TABLE" LPRINT CHR$(&H1B) + "t" + CHR$(0); LPRINT "n"=0; FOR C=&HB2 TO &HB5 LPRINT CHR$(C); NEXT C LPRINT CHR$(&HA); LPRINT CHR$(&H1B) + "t" + CHR$(9); LPRINT "n"=9; FOR C=&HB2 TO &HB5 LPRINT CHR$(C); NEXT C LPRINT CHR$(&HA); END n=0 n = 0 [Print Results] n= 9 23'µ -- 93 -- n = 9 ESC { n [Function] [Code] [Range] [Outline] Specifying/Canceling the inverted characters <1B>H<7B>H<n> 0 n 255 Specifying/canceling inverted characters. Specifying inverted characters. [Caution] · Inverted printing means printing the line turned 180°. · This command is valid only when it is specified at the beginning of a line. · The settings of this command have no effect on PAGE MODE, but items set in PAGE MODE are valid even after STANDARD MODE resumes. [Default] [Sample Program] n=0 LPRINT CHR$(&H1B) + "{" + CHR$(0); LPRINT "AAAAA" + CHR$(&HA); LPRINT "BBBBB" + CHR$(&HA); LPRINT CHR$(&H1B) + "{" + CHR$(1); LPRINT "AAAAA" + CHR$(&HA); LPRINT "BBBBB" + CHR$(&HA); END [Print Results] AAAAA BBBBB Inversion Specified Inversion Canceled Paper Feed Direction -- 94 -- AAAAA BBBBB GS !n [Function] [Code] [Range] Specifying the character size <1D>H<21>H<n> 0 1 1 [Outline] n 255, where: 8, 8 vertical magnification horizontal magnification Specifies the character size (Vertical and horizontal magnification). Bit 0 1 2 3 4 5 6 7 Function Value Hex. Number Decimal Number Refer to Table 2, "Vertical Magnification". Vertical magnification specification Horizontal magnification specification Refer to Table 1, "Horizontal Magnification". Table 1 Horizontal Magnification Hex. Decimal 00 0 10 16 20 32 30 48 40 64 50 80 60 96 70 112 Magnification 1 ×(Standard) 2 ×(Double width) 3× 4× 5× 6× 7× 8× Table 2 Vertical Magnification Hex. Decimal 00 0 01 1 02 2 03 3 04 4 05 5 06 6 07 Magnification 1 ×(Standard) 2 ×(Double height) 3× 4× 5× 6× 7× 8× 7 [Caution] · This command works for all ANK characters except for HRI characters. · This command is ignored if either the vertical magnification or horizontal magnification is out of the defined range. · In STANDARD MODE, the vertical direction is defined as the paper feed direction, and the horizontal direction is defined as the direction perpendicular to the paper feed. These definitions are, therefore, interchanged when 90 -right-turned characters are specified. · In PAGE MODE, the vertical direction means the top-bottom direction of each character. The horizontal direction means the side-to-side direction of each character. -- 95 -- · If characters of different vertical magnification are contained in a line, the baseline of each character is lined up. [. . . ] Wenn die Pulsbreite des Signals 1 ms oder länger beträgt, wird eine Rücksetzungssignal übertragen. (5) INIT Dieses Signal kann als Rücksetzungssignal verwendet werden, nachdem Sie die Stellung des entsprechenden DIP-Schalters geändert haben (siehe 5. 2 "DIPSchaltertabelle"). Wenn die Pulsbreite des Signals im Leerzeichenzustand 1 ms oder länger beträgt, wird ein Rücksetzungssignal übertragen. (6) FG Hierbei handelt es sich um ein Massesignal. -- 205 -- (7) GND Hierbei handelt es sich um die gemeinsame Erde von Schaltkreisen. 7. 3. 2 Fehlererkennung Dieser Drucker kann Paritätsfehler, DÜ-Blockfehler und Überlauffehler erkennen. [. . . ]

DISCLAIMER TO DOWNLOAD THE USER GUIDE CITIZEN IDP3240




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

 

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