Download Print this page

JARLTECH 8034 Operation Manual

Customer pole display

Advertisement

Quick Links

ISO 9002 Certified
Lead with technology
Win customers with service
Customer Pole Display
MODEL 8034
OPERATION
MANUAL
1

Advertisement

loading

Summary of Contents for JARLTECH 8034

  • Page 1 ISO 9002 Certified Lead with technology Win customers with service Customer Pole Display MODEL 8034 OPERATION MANUAL...
  • Page 3 © Jarltech International Inc. 1997. All rights reserved. Under the copyright laws, this manual may not be copied, in whole or in part, without the written consent of Jarltech. Every effort has been made to ensure that the information in this manual is accurate.
  • Page 5 This equipment has been tested and found to comply with the limits for Class A digital device. Pursuant to Part 15 of the FCC Rules. These limits are designed to provide reasonable protection against harmful interference in a residential installation. This equipment generates, uses, and if not installed and used in accordance with the instructions may cause harmful interference will not occur in a...
  • Page 7: Table Of Contents

    Contents 1. Before You Instal 2. Installing Model 8034 3. Programming Commands 4. Sample Program Appendix I: Specifications Appendix II:Select code table for ESC/POS Appendix III:Code Table Selection Appendix IV:The Code Table...
  • Page 9: Before You Instal

    Its outstanding features include high quality vacuum fluorescent display in blue-green color, RS232 interface, easy to use and powerful programming features. The 8034 can also attach to any brand of serial receipt printer. Step 1: Turn Off Your Computer By shutting off your computer, you will prevent any accidental damage to the pole display and computer.
  • Page 11: Installing Model 8034

    Step 2: Decide on baud rate, character set and command type There are some functions such as baud rate, character set and command type are selected by Dip switch. Please refer to Appendix I: Specification to set the 8034 to meet your requirement.
  • Page 12 Installing Model 8034 Step 3: Bulid up your 8034 Plug into 8Pin Phone Jack Socket...
  • Page 13 Alternatively, an internal power source may be available already if the 9-pin RS232 port on your computer or terminal matches the 8034 pin assignment (see Specifica- tions in Appendix I). Connect to COM...
  • Page 14 Installing Model 8034 Step 6: Connect to printer If you are not going to use 8034 pass through function, please go to step 7. If you are using a serial printer to work with 8034, please connect the Y cable (GC-8034YW) to serial RS232 port, receipt printer and 8034 display.
  • Page 15 Installing Model 8034 Step 8: Turn on your computer Turn on your computer. It should boot up normally. The pole display will show a self-diagnostic status and then the display will be blank. Step 9: Turn to Chapter 3 You are now ready for operation, please refer to Chapter 3 for programming to meet the specific requirement of your application environment.
  • Page 17: Programming Commands

    You just have to open the COM-port on which the display has been connected by you. Then, you just send the character you want the 8034 to display directly to the COM interface. Please use the following RS232 parameters:...
  • Page 18 Programming Commands Example: OPEN “COM1: 9600, N, 8, 1, DS0” FOR OUTPUT AS PRINT #1, “Hello World!” CLOSE #1 Programming using DOS routines You can also generate a display output using the simple DOS routines. Example: MODE COM1: 9600, N, 8, 1 ECHO Hello! >COM1: Control characters and special functions For special display functions, there are some commands which will...
  • Page 19 (48+1) Below is a list of command sequences for user to design an interface to the JARLTECH 8034 customer pole display. Please note that pole display is default with 9600 bps baud rate, no parity, 8 data bits, 1 stop bit.
  • Page 20 Programming Commands C O M M A N D S F U N C T I O N D E S C R I P T I O N Cursor Move CTRL H Move cursor left This is simply the BACK one column SPACE function, though Code: 008...
  • Page 21 Programming Commands C O M M A N D S F U N C T I O N D E S C R I P T I O N CTRL M Move cursor to This is CARRIAGE column 0 RETURN function Code: 013 which returns the cursor’s horizontal...
  • Page 22 Programming Commands COMMANDS FUNCTION DESCRIPTION Automatic Scrolling lines With the following commands, you can define up to 8 scrolling strings. Using another command, you can then start and stop them in a certain display line. Your PC does not have to care about this. The display does the scrolling on its own until it receives the stop command.
  • Page 23 Programming Commands C O M M A N D S F U N C T I O N D E S C R I P T I O N PARAMETER FORMAT : ESC ) <LINE> <DIRECTION> <SPEED> <BLOCK_NO> RANGES : LINE : "0"...
  • Page 24 Programming Commands C O M M A N D S F U N C T I O N D E S C R I P T I O N Clear character CTRL Z Home cursor, clear This function will clear characters to nulls all the characters to ESC :...
  • Page 25 Programming Commands C O M M A N D S F U N C T I O N D E S C R I P T I O N Delete an entire This function will ESC R line delete the current line Code: 027, 082 at cursor "Y"...
  • Page 26 If you have connected Enable printer, ESC_P both a serial printer and disable display 8034 display on the same Code: 027, 095, 080 COM port, you can use this command to start the access to the printer. After power on, only the display is active.
  • Page 27 Programming Commands C O M M A N D S F U N C T I O N D E S C R I P T I O N ESC_D Disable printer, This command quits enbale display the printer mode and Code: 027, 095, 068 return to display mode.
  • Page 28 Programming Commands C O M M A N D S F U N C T I O N D E S C R I P T I O N ESC H Turn on special The special character CTRL B character mode mode allows you to use Code: 027,072,002 the 8 user definable...
  • Page 29 Programming Commands C O M M A N D S F U N C T I O N D E S C R I P T I O N This is only useful upon power up, because if you have data in the next block, its data will be overwritten.
  • Page 30 Before you send commands, please make sure that you have already connected printer to 8034. Otherwise you send <ESC> <_> <P> <Hello> that will make your 8034 data buffer full, but after you connect printer to 8034 it will work normally.
  • Page 31: Sample Program

    Sample Program • • • • • • • 10 ’Sample program for Jarltech 8034 series 20 ’Copyright(C) Jarltech international INC. 1997 30 ’ 40 RESET:CLEAR:SCREEN 0:COLOR 7,0:CLS 50 ’ 60 OPEN “COM1:9600, N, 8, 1, CS0" AS #1 ’: Set RS232 Options 80 E$=CHR$(27) ’: Set E$= "[ESC]"...
  • Page 32 460 ’ 470 ’Program a Message For the Scrolling Lines & Start a Line Scrolling 480 ’ 490 PRINT #1,E$+";"+E$+"(1* Nice to see you! *"CHR$(13)+E$+")0091" 500 PRINT #1,E$+"(2* This is JARLTECH 8004 series DEMO *"+CHR$(13)+E$+")1192" 510 ’ 520 END ************************************* 530 ’...
  • Page 34: Appendix I: Specifications

    Appendix I • • • • • • • Specifications • Type: alphanumeric dot matrix vacuum fluorescent Display display • Text mode: 20 characters x 2 lines • Character size: 6.4(W) x 9.2mm(H), 5x7 dots • Display color: blue green •...
  • Page 35 8034 Specifications 8034 Y cable pinout DB-9F DB-25M RJ-45 8P Pin No. Signal Pin No. Singnal Dip Switch Setting Baud Rate SWITCH FUNCTION Baud Rate (bps) 9600 1200 38400 19200 Operation mode select SWITCH FUNCTION Operation Mode Jarltech Command ESC/POS...
  • Page 36 Specifications Dip Switch Setting International character set SWITCH CHARACTER SET SW3 SW4 SW5 SW6 International character Code table ASCII code 20H-7FH ACSII code 80H-FFH OFF OFF OFF OFF U.S.A PC-437 (USA standard Europe) OFF OFF OFF FRANCE PC-850 (multilingual) O N OFF OFF GERMANY PC-850 O N OFF OFF...
  • Page 37 Appendix II • • • • • • • The table indecates EPSON ESC/POS command list Command Code description(Hex) Function ESC t n 1B 74 n 0<=n<=7 Select code table (Refer Item I as bellow) ESC R n 1B 52 n 0<=n<=12 Select international character set(Refer Item II) I.
  • Page 38 II. Set international character set for ESC/POS International character set ASCII (20H~FFH) U.S.A FRANCE GERMANY U.K. DENMARK I SWEDEN ITALY SPAIN JAPAN NORWAY DENMARK II...
  • Page 39: Appendix Iii

    • • • • Code Table Selection This chapter introduce you how to define/setup the font table on the 8034 either through switch 3, 4, 5, 6 setting or EEPROM programming. The Switch Setting Step 1: Turn off your computer...
  • Page 40 Code Table Selection Step 4: Turn on your computer Turn on your computer. It should boot up normally. The pole display will show a self-diagnostic status and then the display will be blank.
  • Page 41 D L E M D 1 M D 2 M D 3 M D 4 M D 5 M D 6 M D 7 BS,MD8 H O M SLE1 RS,SLE2 US,SF2 Table IV-1: Control code set This is reserved by the 8034...
  • Page 42 The Code Table International Characters Set A B C D E F .................
  • Page 43 The Code Table International 23 24 40 5B 5C 5D 5E 60 7B 7C 7D 7E ...........
  • Page 44 The Code Table A B C D E F ..............
  • Page 45 The Code Table A B C D E F ......... OOOOO OOOOO OOOOO ........
  • Page 46 The Code Table A B C D E F .... OOOOO OOOO OOOOO OOOOO OOOOO ........... OOOOO OOOO OOOOO OOOOO...
  • Page 47 The Code Table A B C D E F ...............
  • Page 48 Copyright © 2001 Jarltech International Inc. Printed in Taiwan ISSUED: October'2002 - V 2.0...