User manual CITIZEN IDP-3240

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 IDP-3240. We hope that this CITIZEN IDP-3240 user guide will be useful to you.

Lastmanuals help download the user guide CITIZEN IDP-3240.


Mode d'emploi CITIZEN IDP-3240
Download

You may also download the following manuals related to this product:

   CITIZEN IDP-3240 MANUAL 2 (2992 ko)

Manual abstract: user guide CITIZEN IDP-3240

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

[. . . ] LINE THERMAL PRINTER MODEL iDP3240 User's Manual WEEE MARK En Ge Fr Sp It Du Da Por Pol Declaration of Conformity This printer conforms to the following Standards: Low Voltage Directive 73/23/EEC, 93/68/EEC and the EMC Directive 89/336/EEC, 92/31/EEC, 93/68/EEC. LVD : EN60950 EMC : EN55022 EN61000-3-2 EN61000-3-3 EN55024 Class A This declaration is applied only for 230V model. 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. CITIZEN is registered trade mark of CITIZEN WATCH CO. , LTD. , Japan CITIZEN es una marca registrada de CITIZEN WATCH CO. , LTD. , Japón Windows codepage is a registered trademark of Microsoft Corporation --i-- IMPORTANT SAFETY INSTRUCTIONS · Read all of these instructions and save them for future reference. · Follow all warnings and instructions marked on the product. · Unplug this product from the wall outlet before cleaning. [. . . ] Each bit for "n" has the following meaning: Bit 0 1 2 3 4 5 6 7 Position Paper Near-end Paper Near-end Undefined Undefined Undefined Undefined Undefined Undefined Value 0 1 Disabled Enabled Disabled Enabled This printer can only select one kind of Paper Sensor, a Paper Near-end Sensor. [Default] n=0 -- 89 -- ESC c 5 n [Function] [Code] [Range] [Outline] Enabling/Disabling the panel switches <1B>H<63>H<35>H<n> 0 n 255 Enabling/disabling the FEED switch. · "n" is valid only in the lowest bit. n0 0 1 Condition FEED switch valid FEED switch invalid [Caution] When the panel switch is disabled with this command, the FEED switch is also disabled. Therefore, the paper cannot be fed by operating the FEED switch. 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] The initial value for "m", "n1" and "n2" is not defined. 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 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. · "n" is valid only for the lowest bit. n0 0 1 Condition 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. [. . . ] (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. Wenn ein Fehler erkannt wird, werden die fehlerhaften Daten im Pufferspeicher als "?" gespeichert. [. . . ]

DISCLAIMER TO DOWNLOAD THE USER GUIDE CITIZEN IDP-3240

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 IDP-3240 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