Brother HL 8050N User Manual
Have a look at the manual Brother HL 8050N User Manual online for free. It’s possible to download the document as PDF or print. UserManuals.tech offer 331 Brother manuals and user’s guides for free. Share the user manual or guide on Facebook, Twitter or Google+.
A - 53 APPENDIXES Bar code, expanded character, line block drawing and box drawing height n = hnnn, Hnnn, dnnn, or Dnnn ( 1) EAN13, EAN8, UPC-A, ISBN (EAN13, EAN8, UPC-A), ISBN (UPC-E): 22 mm (2) UPC-E: 18 mm (3) Others: 12 mm Expanded characters → 2.2 mm (preset) Line block drawing and box drawing → 1 dot This parameter shows the height of bar codes or expanded characters as shown above. It can start with h, H, d, or D. The height of bar codes is shown in the u- or U-specified unit. The factory setting of the bar code height (12 mm, 18 mm or 22 mm) is determined by the bar code mode selected by t or T. Expanded character width, line block drawing and box drawing n = wnnn or Wnnn Expanded character → 1.2 mm Line block drawing and box drawing → 1 dot This parameter shows the width of expanded characters as shown above. Expanded character rotation n = a0 or A1 Upright (preset) n = a1 or A1 Rotated 90 degrees n = a2 or A2 Upside down, rotated 180 degrees n = a3 or A3 Rotated 270 degrees Bar code data start n = b or B Data that follows b or B is read in as bar code data. Bar code data must end with the code (5CH), which also ends this command. The acceptable bar code data is determined by the bar code mode selected by t or T. ■When CODE 39 is selected with the parameter t0 or T0 Forty three characters 0 to 9, A to Z, -, . , (space), $, / , +, and % can be accepted as bar code data. Other characters will cause a data error. The number of characters for bar codes is not limited. The bar code data automatically starts and ends with an asterisk * (start character and stop character). If the received data has an asterisk * at the beginning or end, the asterisk is regarded as a start character or stop character. ■When Interleaved 2 of 5 is selected with the parameter t1 or T1: Ten numerical characters 0 to 9 can be accepted as bar code data. Other characters cause a data error. The number of characters for bar codes is not limited. Because this mode of bar codes needs even characters, if the bar code data has odd characters, 0 is automatically added to the end of the bar code data. ■When FIM (US-Post Net) is selected with the parameter t3 or T3 Characters A to D are valid and one digit of data can be printed. Upper-case and lower-case alphabet characters can be accepted.
APPENDIXES A - 54 ■When Post Net (US-Post Net) is selected with the parameter t4 or T4 Numbers 0 to 9 can be data and it must end with a check digit. ? can be used instead of the check digit. ■When EAN 8, EAN 13, or UPC A is selected with the parameter t5 or T5 Ten numbers 0 to 9 can be accepted as bar code data. The number of characters for bar codes is limited as follows: EAN 8: Total 8 digits (7 digits + 1 check digit) EAN 13: Total 13 digits (12 digits + 1 check digit) UPC A: Total 12 digits (11 digits + 1 check digit) A number of characters other than above will cause data error that results in the bar code data being printed as normal print data. If the check digit is not correct, the printer calculates the correct check digit automatically so that the correct bar code data will be printed. When EAN13 is selected, adding + and a two-digit or five-digit number after the data can create an add-on code. ■When UPC-E is selected with the parameter t6 or T6: The numbers 0 to 9 can be accepted as bar code data. 1 Eight digits (standard format) The first character must be 0 and the data must end with a check digit. Total eight digits = 0 plus 6 digits plus 1 check digit. 2 Six digits The first character and the last check digit are removed from the eight digit data. 1: For eight digits, ? can be used instead of a check digit. 2: Adding + and two-digit or five-digit number after the data creates an add-on code for all six and eight digit formats . ■When Codebar is chosen with the parameter t9 or T9 Characters 0 to 9, -, . , $, /, +, : can be printed. Characters A to D can be printed as a start-stop code, which can be upper case or lower case. If there is no start-stop code, errors will happen. A check digit cannot be added and using ? causes errors. ■When Code 128 Set A, Set B, or Set C is selected with the parameter t12 or T12, t13 or T13, or t14 or T14 Code 128 sets A, B and C can be individually selected. Set A indicates characters Hex 00 to 5F. Set B includes characters Hex 20 to 7F. Set C includes the pairs 00 to 99. Switching is allowed between the code sets by sending %A, %B, or %C. FNC 1, 2, 3, and 4 are produced with %1, %2, %3, and %4. The SHIFT code, %S, allows temporary switching (for one character only) from set A to set B and vice versa. The % character can be encoded by sending it twice. ■When ISBN (EAN) is selected with the parameter t130 or T130 The same rules apply as for t5 or T5. ■When ISBN (UPC-E) is selected with the parameter t131 or T131: The same rules apply as for t6 or T6. ■When EAN 128 set A, set B or set C is selected with the parameter t132 or T132, t133 or T133 or t134 or T134 The same rules apply as for t12 or T12, t13 or T13, or t14 or T14.
A - 55 APPENDIXES Box drawing ESC i ... E (or e) E or e is a terminator. Line block drawing ESC i ... V (or v) V or v is a terminator. Expanded character data start n = l or L Data that follows l or L is read as expanded character data (or labeling data). Expanded character data must end with the code (5CH), which also ends this command.
APPENDIXES A - 56 Example Program Listings WIDTH LPT1:,255 CODE 39 LPRINT CHR$(27);it0r1s0o0x00y00bCODE39?\; Interleaved 2 of 5 LPRINT CHR$(27);it1r1s0o0x00y20b123456?\; FIM LPRINT CHR$(27);it3r1o0x00y40bA\; Post Net LPRINT CHR$(27);it4r1o0x00y60b1234567890?\; EAN-8 LPRINT CHR$(27);it5r1o0x00y70b1234567?\; UPC-A LPRINT CHR$(27);it5r1o0x50y70b12345678901?\; EAN-13 LPRINT CHR$(27);it5r1o0x100y70b123456789012?\; UPC-E LPRINT CHR$(27);it6r1o0x150y70b0123456?\; Codabar LPRINT CHR$(27);it9r1s0o0x00y100bA123456A\; Code 128 set A LPRINT CHR$(27);it12r1o0x00y120bCODE128A12345?\; Code 128 set B LPRINT CHR$(27);it13r1o0x00y140bCODE128B12345?\; Code 128 set C LPRINT CHR$(27);it14r1o0x00y160b;CHR$(1);CHR$(2);?\; ISBN(EAN) LPRINTCHR$(27);it130r1o0x00y180b123456789012?+12345\; EAN 128 set A LPRINT CHR$(27);it132r1o0x00y210b1234567890?\; LPRINT CHR$(12) END
I - 1 Index Symbols + or - button .................................................. 4-3 A Accessories and supplies (USA) ............. VIII, XI Alarm LED ..................................................... 4-8 Automatic emulation selection .................... 3-16 Automatic interface selection ...................... 3-17 B Back button ................................................... 4-4 Back cover .................................................... 1-2 Bar code control ......................................... A-50 Bitmapped font ........................................... A-32 Booklet ................................................... 3-3, 3-4 BRAdmin professional ................................ 3-12 Brother Solutions Center .......................... VII, XI BR-Script 3 ........................................... 3-1, 4-22 Buttons .......................................................... 4-2 Buzzer ......................................................... 4-26 C Center output tray ......................................... 1-1 Cleaning the printer ..................................... 6-15 CompactFlash card (option) ......................... A-4 Consumable items ....................................... A-3 Control panel .......................................... 1-1, 4-1 D Date and time setting .................................. 4-21 Delete storage ............................................. 4-15 Device options .............................................. 3-5 DIMM memory (option) ....................... 2-26, A-6 DOS ............................................................ 5-14 Duplex printing ............................................ 2-29 Duplex unit (option) ............................. A-2, A-16 Duplex unit connector ................................... 1-2 E Emulation mode .......................................... 3-16 Envelopes .................................. 2-4, 2-19, A-29 EPSON FX-850 mode ................................. 4-22 Error messages ........................................... 5-15 Ethernet interface connector ......................... 1-2 F Face-up Output Tray ................................... 2-25 Face-up output tray ....................................... 1-2Factory settings ..................................3-18, 4-23 Faded printouts ............................................. 5-7 Fuser parts .................................................. 6-11 Fuser unit and transfer roll cartridge ..... 6-5, A-3 G Go button ...................................................... 4-2 H HP LaserJet mode ...................................... 4-22 HP-GL mode ............................................... 4-22 HRC (High Resolution Control) ..................... 3-7 I IBM Proprinter XL mode .......... 4-17, 4-18, 4-22 INFORMATION menu ................................. 4-13 INTERFACE menu ...................................... 4-20 J Job Cancel button ......................................... 4-2 L Labels ................................................. 2-4, A-29 LCD menu ................................................... 4-12 LED ............................................................... 4-9 Lower tray unit (option) ................................ A-8 M Macintosh® ..........................................2-28, 5-5 Menu button .................................................. 4-2 Modes ......................................................... 4-22 N Network ....................................................... 5-13 NETWORK menu ........................................ 4-19 O Offset catch tray (option) ..................... A-2, A-20 Options ................................................ 2-26, A-1 P Paper .....................................................2-1, 2-7 Paper jams .................................................. 5-17 PAPER menu .............................................. 4-13 Paper meter .................................................. 1-1 Paper stopper ............................................... 1-1 Paper tray .................. 1-1, 2-9, 2-12, 2-15, 2-20 Parallel interface connector .......................... 1-2
I - 2 PCL6 ............................................................. 3-1 Power ............................................................ 5-2 Power cord and connector ..................... 1-2, 1-4 Power save mode ....................................... 4-23 Power switch ................................................. 1-1 PRINT MENU menu .................................... 4-16 Print quality ............................................3-3, 5-6 Printer driver (Macintosh®) ................ 3-13, 3-14 Printer driver (Windows®) ...............3-1, 3-2, 3-9 PROOF data ................................................. 4-6 PUBLIC data ................................................. 4-6 Q QUALITY menu ........................................... 4-14 R Ready LED .................................................... 4-8 Register your printer (USA) ...................... VII, XI Reprint button ............................................... 4-4 RESET MENU menu .................................. 4-20 S Scalable font .............................................. A-32 SECURE data ............................................... 4-6 Secure Print button ....................................... 4-3 Set button ...................................................... 4-3 SETUP menu .............................................. 4-14 Software (Windows®) ................................. 3-12 Suitable paper types ..................................... 2-1 T Toner cartridge ...................................... 6-1, A-3 Toner save mode ........................................ 4-14 Transfer roll cartridge ................................... A-3 Transparencies .......................... 2-4, 2-23, A-29 U Unsuitable paper types ................................. 2-7 USB interface ................................................ 1-2 USB interface connector ............................... 1-2 V Ventilation grille ...................................... 1-1, 1-2 W Watermark .................................................... 3-4 Windows® ............................................2-28, 5-4