dbarscan-sl Components for Windows Phone

Size: px
Start display at page:

Download "dbarscan-sl Components for Windows Phone"

Transcription

1 dlsoft dbarscan-sl Components for Windows Phone By dlsoft

2

3 This manual was produced using ComponentOne Doc-To-Help.

4

5 Contents Introduction... 1 dbarscan.sl 1D... 1 Using dbarscan.sl Components in Visual Studio Setting and retrieving property values programmatically... 2 Decoding a barcode image... 3 Licensing the component D decoding Reference... 4 Methods... 4 Properties... 5 Index 13 dlsoft dbarscan-sl Components for Windows Phone Contents v

6

7 Introduction dbarscan.sl Components are components that allows barcode images to be decoded within the developer s own Windows Phone application. dbarscan accepts graphic images, typically from the phone s camera, scans an area of the image for a barcode, and decodes the barcode into its textual data. TestWare versions randomly scramble the decoded data. Developer versions require the developer s serial number to be passed to the component using the Serial property. Incorrectly licensed version will behave as TestWare and produce randomly scrambled decoding data. dbarscan.sl Components are designed to work with Visual Studio 2010 or later and require the Windows Phone SDK to be installed on any PC using the components during development. Example code is provided with the component for use with C#. The sample can be deployed to a developer unlocked Windows Phone or to the emulator although the Windows Phone emulator is not able to emulate a camera. The sample project was created in Visual Studio 2010 to target Windows Phone OS 7.1, but may be loaded into Visual Studio 2012 and the target changed to Windows Phone OS 8.0 dbarscan.sl 1D The dbarscan.sl 1D Component can identify and decode the following barcode types: Type Code Value Code 39 C39 0 Extended Code 39 E39 1 Standard 2 of 5 TOF 2 Interleaved 2 of 5 ITF 3 Codabar CDA 4 ITF-14 ITF14 5 Code 93 C93 6 Extended Code 93 E93 7 Code 128 C28 8 GS1/EAN/UCC 128 E28 9 EAN/UCC 14 E ,2 EAN-13/JAN-13 E EAN-8 EA UPC-E UPE 13 1 UPC-A UPA 14 IATA 2 of 5 IAT 15 Notes: 1. including 2 and 5 digit supplementaries 2. including ISBN, ISSN, ISMN dlsoft dbarscan-sl Components for Windows Phone Index 1

8 It is important to note that, as with a normal barcode scanner, it is not a good idea to enable every type and hope the scanner will decode the image correctly. Some barcode types are very easily mistaken for others, particularly if the image is imperfect. The ideal would probably be to know exactly what barcode type is being scanned and enable dbarscan for just that type. However, even this has disadvantages for example Interleaved 2 of 5 is notorious for resulting in short scans where only part of the barcode data is returned. Similarly a partial scan of several barcode types can be mistaken for a UPC-E code. The dbarscan scan() methods each return one of the following values: -1 = a barcode detected and decoded, but not confirmed by finding the stop bars -2= a barcode detected and decode and the stop bars confirmed any other value represents an error code (see reference section) Our advice is to enable only those barcode types you expect to be scanning, and to check the value returned from one of the scan() methods. Using dbarscan.sl Components in Visual Studio 2010 The package in which the dbarscan SL component is provided for developers includes a Windows Phone 7.1 sample application developed using Visual Studio 2010 and the Windows Phone SDK 7.1. (The sample application will not compile with the 7.0 SDK) If the sample application is built in release mode it can only be tested on a developer unlocked Windows Phone because the emulator does not have a real camera. However, it can be built in debug mode, in which case pushing the Scan button causes a sample picture to be loaded in place of a camera image. Adding a dbarscan.sl component to a project. Copy the component DLL (eg. DLSCAN7.DLL) to the directory containing the source files for the project. In the Solution Explorer window expand the project name and select the References item. Right-click on References and choose Add Reference. Select the Browse tab in the Add Reference dialog, the select the component DLL from the list of files. In the relevant code of your project (which can be the application App.xaml.cs, or a specific page, such as Page1.xaml.cs) create a variable of the class, eg. DLSCAN7.DLSCAN BarScan1=new DLSCAN7.DLSCAN(); Setting and retrieving property values programmatically The dbarscan.sl Components may be operated entirely by setting or retrieving Property values programmatically. Some properties must be set before a scan is attempted, eg. BarScan1.TypeMask = TypeMask; BarScan1.dImage = bmp; While other aill be returned after a scan has been initiated, eg. 2 Index dlsoft dbarscan-sl Components for Windows Phone

9 Output = BarScan1.oData; Report = BarScan1.report; Decoding a barcode image dbarscan provides a single method for decoding a barcode image. The scan() method attempts to decode the image by starting at the centre of the image and searching for a barcode. The method assumes that the image is in landscape orientation (most 1D barcodes are wider than they are tall, and in any case it is the width of the bars that is important rather than their height). A simple example of the code required to decode an image from a bitmap image using the scan() method is: BarScan1.TypeMask = TypeMask; BarScan1.dImage = bmp; Int err = Barscan1.scan(); if (err<0) { Output=Barscan1.oData(); // returns the barcode data Status = BarScan1.Status; } else { Ouput = ; Status = Scan failed ; } Licensing the component dbarscan.sl components will behave as Testware versions (returning scrambled barcode scans) unless correctly licensed. Developer versions require the developer s serial number to be passed to the component using the Serial property before the scan() method is called. The Serial property should be set to the serial number provided for your component, e.g. Barscan1.Serial="12345" for VB Barscan1.Serial="12345"; for C# If your own application supports tombstoning it is important to ensure that the Serial property is set at a point in your code after an instance of the DLSCAN class has been created. dlsoft dbarscan-sl Components for Windows Phone Index 3

10 1D decoding Reference Methods Scan() Return type: int Declaration: public int scan() Parameters: none This method scans the entire width of the image, starting to the centre of the image and scanning a height equivalent to the aperture ( or 4 scan lines if the aperture is 0). Returns -1 if a barcode has been identified and decoded; returns -2 if a decode is known to be complete (i.e the stop bars have been identified). Otherwise returns an error value (see ErrorCode). TargetType() Return type: string Declaration: public string TargetType(int itype) Parameters: int itype the barcode code type value whose name is required. Returns the string form of a barcode type name (e.g. Code 39) corresponding the the code type value itype. For a list of the barcode types supported see ocode. If itype has a value that is not supported the method returns an empty string. The number of available types is found in the ntargettypes property (currently 14). Fncval() Return type: void Declaration: public void Fncval(int icode, char charval) Parameteres: int icode the position in the FNC128 string of Code128/GS1-128 Special Characters which appear in these barcodes. Char charval the actual character that you wish to appear in the output string in place of the default character. Note that the entire range of the 12 special characters may be seen and modified using the FNC128 property (see below). It is usual for the special characters to be chosen so that they canot be mistaken for normal barcode data characters, so the default values used and shown in the table below are not characters encountered on US/English keyboards. The default Code 128 special characters are shown in the following table. These characters may be provided to the Fncval() method as Chr(XYZ) (in VB) or entered on a PC keyboard as <ALT>0XYZ, where XYZ is the correspopnding 3 digit ASCII code: XYZ character Code A Code B Code C 197 Å DEL 198 Æ func. 3 func Ç func. 2 func È shift shift 4 Index dlsoft dbarscan-sl Components for Windows Phone

11 201 É code C code C 202 Ê code B func. 4 code B 203 Ë func. 4 code A code A 204 Ì func. 1 func. 1 func Í Start A Start A Start A 206 Î Start B Start B Start B 207 Ï Start C Start C Start C 208 Ð NUL Examples: VB Barscan1.Fncval(7, Chr(204)) C# Barscan1.Fncval(7, Ì); Sets the character used for the fnc1 character to Ì. Properties aperture type: int default: 1. Minimum value 1. The number of pixels across the image combined when searching for bars and spaces. The default value is suitable for scanning using the VideoBrush. High resolution images obtained from CaptureImageAvailable() would be more rapidly decoded with a larger value, eg 2 4. bcheckcheck type: bool default: true When true bcheckcheck causes dbarscan to check the check digit(s) for all EAN/UPC/UCC, Code 39 and Code 93 barcodes, the result being returned through the bchecked property. bchecked type: bool, read-only If bcheckcheck is true the barcode check digit calculations are check for decoded barcodes of EAN/UPC/UCC, Code 39 and Code 93 types. If the calculated value matches that included in the barcode bchecked is true. If the calculated value does not match the included value bchecked is false. In either case the calculated and found values are available in ichkc1 and ichka1. For Code 93 barcodes the second check digits are in ichkc2 and ichka2. dlsoft dbarscan-sl Components for Windows Phone Index 5

12 blandscape type bool default: true To obtain the best results images will normally be obtained so that the width of the barcode uses maximum number of image pixels. For a Windows Phone the available image size is typically 640 x 480 or larger, so the barcode is best captured in landscape mode as shown below. Landscape image When blandscape is true the image is scanned across the image as illustrated by the red line. If blandscape is false it is assumed that the image has been captured in portrait mode, so the image is scanned as shown below. Portrait image dcontrol1 type: int default: 0; A control flag for modifying the output from specific barcode types. At the present time this flag effects only Coadbar barcodes. A value of 0 permits the start and stop character to be included in the odata output. A value of 1 removes the start and stop characters. 6 Index dlsoft dbarscan-sl Components for Windows Phone

13 dcontrol2 type: int default: 0; A control flag for modifying the output from specific barcode types. At the present time this flag affects only EAN and UPC barcodes. A value of 1 permits the detection of 2 or 5 digit supplementaries; a value of 0 means that any supplementaries present in the barcode a not scanned or decoded. This flag is applied to the following barcodes: EAN-8 EAN-13/JAN-13 UPC-A UPC-E dimage type: WriteableBitmap default: none The dimage property contains the WriteableBitmap to be decoded. The image may be obtained from a resource (e.g. using Uri jpeguri = new Uri("pic1.jpg",UriKind.Relative); BitmapImage bb = new BitmapImage(jpegUri); WriteableBitmap bmp = new WriteableBitmap(bb); bc.dimage = bmp; Or from the phone s camera using code of the form void OnCameraCaptureTaskCompleted(object sender, PhotoResult args) { if (args.taskresult == TaskResult.OK) { BitmapImage bb = new BitmapImage(); bb.setsource(args.chosenphoto); WriteableBitmap bmp = new WriteableBitmap(bb.PixelWidth, bb.pixelheight); bmp.setsource(args.chosenphoto); scanit(); } } ErrorCode Type: int, read only After one of the scan() methods is used, the ErrorCode property may contain one of the following: ErrorCode meaning 0 no barcode detected 1 invalid region of image specified 3 error opening bitmap 8 incomplete decoding dlsoft dbarscan-sl Components for Windows Phone Index 7

14 9 reverse orientation FNC128 type: string (of 12 characters) default: ÅÆÇÈÉÊËÌÍÎÏÐ Code 128 and EAN/UCC 128 barcodes include in their character sets 12 special characters which are used for a variety of purposes but not generally required in any human readable form. dbarscan can report these characters using the character substitutions specified by the FNC128 string, so the developer may set these characters to any convenient values that do not conflict with the barcode data. The default Code 128 special characters are shown in the following table. These characters may be provided to the Fncval() method as Chr(XYZ) (in VB) or entered on a PC keyboard as <ALT>0XYZ, where XYZ is the correspopnding 3 digit ASCII code: XYZ character Code A Code B Code C 197 Å DEL 198 Æ func. 3 func Ç func. 2 func È shift shift 201 É code C code C 202 Ê code B func. 4 code B 203 Ë func. 4 code A code A 204 Ì func. 1 func. 1 func Í Start A Start A Start A 206 Î Start B Start B Start B 207 Ï Start C Start C Start C 208 Ð NUL ichk values Four integer values representing the calculated and found values of check digits. These values are filled only if the bcheckcheck property is true and only for EAN/UPC/UCC, Code 39 and Code 93 barcodes. ichkc1 calculated first check digit ichka1 found value of first check digit. For Code 93 and Extended 93 barcodes a second check digit is used: ichkc2 calculated second check digit ichka2 found value of second check digit. nspread type: int default value = 0 8 Index dlsoft dbarscan-sl Components for Windows Phone

15 allowed values 0,1,2 If nspread is 0 the image is scanned across the center of the image, ie. At a position which is half the height of the image.. If nspread is 1 the image is scanned across the center of the image, and, if this scan does not decode a barcode, the image is scanned again at a height of 3/8 and (if that fails) again at 5/8. If nspread is greater than 1 then the action for nspread =1 is performed and, if that fails, the image is scanned again at positions of + and - n/64 from the center of the height of the image, where n ranges from 0 to nspread. odata type: string; read only odata is a string that contains the decoded data after a successful return from one of the scan() methods. The string content is valid only if the scan() methods return a value <0. ocode type: int; read only ocode is an integer representing the type of barcode identified and decoded after a successful return from one of the scan() methods. The value is valid only if the scan() methods return a value <0. The code values are shown in the table below. A string representation of the barcode type may be obtained by using the method TypeName(i). Type Code Value Code 39 C39 0 Extended Code 39 E39 1 Standard 2 of 5 TOF 2 Interleaved 2 of 5 ITF 3 Codabar CDA 4 MSI/Plessey MSI 5 Code 93 C93 6 Extended Code 93 E93 7 Code 128 C28 8 EAN/UCC 128 E28 9 EAN/UCC 14 E ,2 EAN-13/JAN-13 E EAN-8 EA UPC-E UPE 13 1 UPC-A UPA 14 Notes: 1. including 2 and 5 digit supplementaries when dcontrol2 is true 2. including ISBN, ISSN, ISMN dlsoft dbarscan-sl Components for Windows Phone Index 9

16 Nbars Type: int; read only After a successful return from one of the scan() methods, Nbars contains the number of barcode elements identified (bars and spaces), couting from the first bar to the last bar inclusive. ntargettypes type: int; read only The number of barcode types that can be identified and decoded by dbarscan 1D. Currently 14. See ocode for a list of the types supported. Report type: string; read only The Report string provides a brief analysis of a decode, including (where relevant) the barcode type detected, details of any check digit and subtype changes (as in subtypes A, B and C in Code 128 and GS1-128 symbols) present in the barcode, the mean bar and space element widths (in pixels), the Gain and the mean and maximum deviations of bar and space widths from the expected values. Status type: string; read only After a call to one of the scan() methods the Status string contains one of the following messages (where type indicates the type of barcode identified): Scan() return Status contains -2 Found (type) complete scan -1 Found (type) INCOMPLETE scan 0 failed TypeMask Type: int Default: 7945 ( x1F09) A bitwise mask where each bit represents one of the barcode types that dbarscan can attempt to identify and decode. When a bit is a 1 the corresponding barcode type is included in the scan. If the bit is a 0 the barcode type is not included The value of TypeMask may be derived by ORing together the hexadecimal codes of the barcode types required. Type Bit number hexadecimal Code Index dlsoft dbarscan-sl Components for Windows Phone

17 Extended Code Standard 2 of Interleaved 2 of Codabar 4 0x0010 MSI/Plessey 5 0x0020 Code x0040 Extended Code x0080 Code x0100 EAN/UCC x0200 EAN/UCC x0400 1,2 EAN-13/JAN x EAN x UPC-E 13 0x UPC-A 14 0x4000 Notes: 1. including 2 and 5 digit supplementaries when dcontrol2 is true 2. including ISBN, ISSN, ISMN dlsoft dbarscan-sl Components for Windows Phone Index 11

18

19 M Methods 4 Index N Nbars 10 nspread 8 ntargettypes 10 O ocode 9 odata 9 1 1D decoding Reference 4 A Adding a dbarscan.sl component to a project. 2 aperture 5 B bcheckcheck 5 bchecked 5 blandscape 6 D dbarscan.sl 1D 1 dcontrol1 6 dcontrol2 7 Decoding a barcode image 3 dimage 7 E ErrorCode 7 P Properties 5 R Report 10 S Scan() 4 Setting and retrieving property values programmatically 2 Status 10 T TargetType() 4 TypeMask 10 U Using dbarscan.sl Components in Visual Studio F FNC128 8 Fncval() 4 I ichk values 8 Introduction 1 L Licensing the component 3 dlsoft dbarscan-sl Components for Windows Phone Index 13

dbarcode-sl Components for Windows Phone

dbarcode-sl Components for Windows Phone dlsoft dbarcode-sl Components for Windows Phone By dlsoft This manual was produced using ComponentOne Doc-To-Help. Contents dbarcode.sl Components for Windows Phone 7 1 Introduction... 1 The components...

More information

dlsoft Barcode Fonts By dlsoft

dlsoft Barcode Fonts By dlsoft dlsoft Barcode Fonts By dlsoft This manual was produced using ComponentOne Doc-To-Help. Contents dlsoft Barcode Fonts 1 Introduction... 1 Barcode fonts... 3 Installing your barcode font... 4 Getting started...

More information

PureScan - ML1. Configuration Guide. Wireless Linear Imager Wireless Laser scanner - 1 -

PureScan - ML1. Configuration Guide. Wireless Linear Imager Wireless Laser scanner - 1 - PureScan - ML1 Wireless Linear Imager Wireless Laser scanner Configuration Guide - 1 - Table of Contents Chapter 1 System Information 1.1 About this manual 3 1.2 How to set up the parameter 3 Chapter 2

More information

dlsoft Barcode Desk By dlsoft

dlsoft Barcode Desk By dlsoft dlsoft Barcode Desk By dlsoft This manual was produced using ComponentOne Doc-To-Help. Contents dlsoft Barcode Desk 1 Introduction... 1 System Requirements... 1 Installation... 1 Using Barcode Desk...

More information

If you want to have other configurations please refer to below programming barcodes. Check Scanner Version

If you want to have other configurations please refer to below programming barcodes. Check Scanner Version NT-1228BL V18.7.12 Quick Setup Guide This model can work both via USB cable or via bluetooth. Connection Mode Working via USB cable Get Started: Connect scanner with your device via USB cable. If you use

More information

C O N F I G U R A T I O N G U I D E

C O N F I G U R A T I O N G U I D E C O N F I G U R A T I O N G U I D E Copyright @ 2013, This manual is copyrighted, with all right reserved. Under the copyright laws, this manual may not, in whole or in part, be copied, photocopied, reproduced,

More information

Barcode BC-29. Decoder & Platform. Programming Manual

Barcode BC-29. Decoder & Platform. Programming Manual Barcode BC-29 Decoder & Platform Programming Manual CONTENTS Getting Started...2 Setting Procedures...3 Setting Flow Chart......4 Group 1 : Multi Validation....5 Group 2 : Hold Time...6 Group 3: Scan Mode

More information

Manual de Programación

Manual de Programación Manual de Programación SM2410, SM2410B, SM2420 y SM2430 ESPECIFICACIONES SUJETAS A CAMBIO SIN PREVIO AVISO. Enter/Exit Programming Mode (This barcode is also found at page 8.) IMPORTANT NOTICE Every effort

More information

Table of contents. Change scanner settings Factory default settings Default message format Programming flow chart

Table of contents. Change scanner settings Factory default settings Default message format Programming flow chart Table of contents Change scanner settings Factory default settings Default message format Programming flow chart 1. General 1.1 Open programming mode or Close programming mode with update 1.2 Close programming

More information

C O N F I G U R A T I O N G U I D E

C O N F I G U R A T I O N G U I D E C O N F I G U R A T I O N G U I D E Copyright @ 2013, This manual is copyrighted, with all right reserved. Under the copyright laws, this manual may not, in whole or in part, be copied, photocopied, reproduced,

More information

Omni-Directional Barcode Scanner Model No. OM7120

Omni-Directional Barcode Scanner Model No. OM7120 Omni-Directional Barcode Scanner Model No. OM7120 User s Manual Programming with barcodes The BARCODE PROGRAMMING feature gives the possibility to change scanner settings without any tools or dismounting

More information

BARCODE SCANNER. Configuration Guide - 1 -

BARCODE SCANNER. Configuration Guide - 1 - BARCODE SCANNER Configuration Guide - 1 - Table of Contents Chapter 1 System Information 1.1 About this manual 3 1.2 How to set up the parameter 3 1.3 How to set up the parameter - II 4 Chapter 2 System

More information

Programming with barcodes

Programming with barcodes Configuration Guide Programming with barcodes The BARCODE PROGRAMMING feature gives the possibility to change the Scantech scanner settings without any tools or dismounting the scanner from the check stand.

More information

NC-1200 BARCODE SCANNER. Configuration Guide - 1 -

NC-1200 BARCODE SCANNER. Configuration Guide - 1 - NC-1200 BARCODE SCANNER Configuration Guide - 1 - Table of Contents Chapter 1 System Information 1.1 About this manual 3 1.2 How to set up the parameter-i 3 1.3 How to set up the parameter II 4 1.4 Resetting

More information

COPYRIGHT 2009,SCSC. Manual P/No: SCCM - 80S-01A Released Date: Oct 31, 2009

COPYRIGHT 2009,SCSC. Manual P/No: SCCM - 80S-01A Released Date: Oct 31, 2009 To begin the configuration procedures Thank you for purchasing the scanner. Inside each packaging box, you may find the scanner, the interface cable and user's fuide. Configuration manual might be optional

More information

Code Interleaved 2 of 5. Plessey Minimum And Plessey Maximum Length. Field Size/Char. Enabled.

Code Interleaved 2 of 5. Plessey Minimum And Plessey Maximum Length. Field Size/Char. Enabled. Chapter 5: Configuration Decoded (HHP) Plessey Minimum And Plessey Maximum Length These parameters apply to Plessey bar codes.the length of a code refers to the number of characters (i.e., human readable

More information

Product Engineering Specification Scan Utility

Product Engineering Specification Scan Utility Product Engineering Specification Scan Utility Overview: 1. What is Scan Utility? Scan Utility provides a user interface that communicates with the scanner. It can set up the scanner, download the scanner

More information

Bizagi BPM Suite. User Guide

Bizagi BPM Suite. User Guide Bizagi BPM Suite User Guide Table of Contents Part I Configuring and using the Bar code generator Widget 3 2 2 Part I Configuring and using the Bar code generator Widget Configuring and using the Bar code

More information

Innovation By Design

Innovation By Design Innovation By Design LAZERLOGIC LL2424 Programme Manual 01256 840927 @ sales@lazerlogic.com Kensington House, 21 Mill Road, Basingstoke, Hampshire RG24 9SN Enter/Exit Programming Mode ( represents the

More information

Table of Contents Sleep Settings How to Configure the Scanner. 7 Chapter 2 System Setup

Table of Contents Sleep Settings How to Configure the Scanner. 7 Chapter 2 System Setup Table of Contents Chapter 1 System Information 1.1 Setup Scanner with PC 1.2 Setup Scanner with Mobile Device 1.3 Configure ios On-Screen Keyboard 1.4 Memory Mode 3 4 4 5 1.5 Sleep Settings 6 1.6 How to

More information

APPENDIX E COMMAND BARCODES

APPENDIX E COMMAND BARCODES APPENDIX E COMMAND BARCODES Scan command barcode(s) to quickly configure the CHS 7X or 7XRx. By default, the CHS is in HID mode as a Keyboard device. IMPORTANT! Make sure the CHS is not connected to a

More information

FS02 user manual. HID mode for IOS 1. Turn on the barcode reader, and read below barcodes sequence, the blue LED will flash rapidly.

FS02 user manual. HID mode for IOS 1. Turn on the barcode reader, and read below barcodes sequence, the blue LED will flash rapidly. FS02 user manual HID Mode for IOS HID mode for IOS 1. Turn on the barcode reader, and read below barcodes sequence, the blue LED will flash rapidly. 2. Enable the bluetooth of IOS to pair with the barcode

More information

Windows Driver Manual SRP-350IIOBE Thermal printer Rev. 1.00

Windows Driver Manual SRP-350IIOBE Thermal printer Rev. 1.00 Windows Driver Manual SRP-350IIOBE Thermal printer Rev. 1.00 http://www.bixolon.com Table of Contents 1. Manual Information... 3 2. Operating System (OS) Environment... 3 3. Windows Driver Preparation...

More information

Nuscan 3200 Optical Laser Barcode Scanner

Nuscan 3200 Optical Laser Barcode Scanner Nuscan 3200 Optical Laser Barcode Scanner Programming Manual FCC Compliance This equipment has been tested and found to comply with the limits for a Class A digital device, pursuant to Part 15 of the FCC

More information

2D Barcode Reader User Guide V 1.2.1

2D Barcode Reader User Guide V 1.2.1 2D Barcode Reader User Guide V 1.2.1 Table of Contents 1 Getting Started... 3 1.1 About This Guide... 3 1.2 Barcode Scanning... 3 1.3 Factory Defaults... 3 1.4 Firmware Version Number... 3 2 Communication

More information

MK D Imager Barcode Scanner Configuration Guide

MK D Imager Barcode Scanner Configuration Guide MK-5500 2D Imager Barcode Scanner Configuration Guide V1.4 Table of Contents 1 Getting Started... 3 1.1 About This Guide... 3 1.2 Barcode Scanning... 3 1.3 Factory Defaults... 3 2 Communication Interfaces...

More information

APPENDIX C - SP2100 1D LASER Setup Barccodes

APPENDIX C - SP2100 1D LASER Setup Barccodes APPENDIX C - SP2100 1D LASER Setup Barccodes C.A - Method of programming the SP2100 1D Laser decoder with Setup Barcodes The decoder on the SP2100 1D laser scanner is the firware chip directly related

More information

GS500 2D Area-Imaging Scanner. User Manual

GS500 2D Area-Imaging Scanner. User Manual GS500 2D Area-Imaging Scanner User Manual Table of Contents Table Of Contents... 1 Chapter 1 Getting Started... 6 About This Guide... 6 Barcode Scanning... 6 Barcode Programming... 6 Factory Defaults...

More information

User s Manual. Xi3000 Scanner. Table of Contents

User s Manual. Xi3000 Scanner. Table of Contents Xi3000 Scanner User s Manual Table of Contents Restore Default Settings... 1 Exit Setup without Changes... 1 Configure Through RS232... 1 List Setting... 1 Buzzer Settings... 2 Reading Redundancy Setting...

More information

C O N F I G U R A T I O N G U I D E

C O N F I G U R A T I O N G U I D E C O N F I G U R A T I O N G U I D E Copyright @ 2009, This manual is copyrighted, with all right reserved. Under the copyright laws, this manual may not, in whole or in part, be copied, photocopied, reproduced,

More information

If you want to do other configurations please refer to below programming barcodes.

If you want to do other configurations please refer to below programming barcodes. NT-W8 V18.9.1 Quick Setup Guide This model can work both via USB cable or 2.4G receiver. Connection Mode Working via USB cable Get Started: Connect scanner with your device via USB cable. If you use US

More information

FD-011WU. 2D Barcode Reader User Guide V1.6CC

FD-011WU. 2D Barcode Reader User Guide V1.6CC FD-011WU 2D Barcode Reader User Guide V1.6CC Table of Contents 1 Getting Started... 1 1.1 Factory Defaults... 1 2 Communication Interfaces...2 2.1 TTL-232 Interface... 2 2.2 Baud Rate... 3 2.3 Data Bit

More information

PP Thermal Printer. User Manual. Infinite Peripherals, Inc. PP-60 User Manual v1.00

PP Thermal Printer. User Manual. Infinite Peripherals, Inc.  PP-60 User Manual v1.00 Thermal Printer PP-60 User Manual www.ipcprint.com 0 Legal notice The Bluetooth word mark and logos are owned by the Bluetooth SIG, Inc. and any use of such marks by Infinite Peripherals is under license.

More information

Xi2000-BT Series Configuration Guide

Xi2000-BT Series Configuration Guide U.S. Default Settings Sequence Reset Scanner Xi2000-BT Series Configuration Guide Auto-Sense Mode ON UPC-A Convert to EAN-13 OFF UPC-E Lead Zero ON Save Changes POS-X, Inc. 2130 Grant St. Bellingham, WA

More information

PrecisionID ITF Barcode Fonts User Manual

PrecisionID ITF Barcode Fonts User Manual PrecisionID ITF Barcode Fonts User Manual Updated 2018 Copyright 2018 PrecisionID.com All Rights Reserved Legal Notices Page 1 PrecisionID ITF (Interleaved 2 of 5) Barcode Font User Manual Notice: When

More information

Windows Driver Manual SPP-R220 Mobile Printer Rev. 1.00

Windows Driver Manual SPP-R220 Mobile Printer Rev. 1.00 Windows Driver Manual SPP-R220 Mobile Printer Rev. 1.00 http://www.bixolon.com Table of Contents 1. Manual Information... 3 2. Operating System (OS) Environment... 3 3. Windows Driver Preparation... 3

More information

RT206 User Guide. RT206 OEM 2d Scan Engine User Guide

RT206 User Guide. RT206 OEM 2d Scan Engine User Guide RT206 OEM 2d Scan Engine User Guide Table Of Contents Chapter 1 Getting Started... 1 About This Guide... 1 Connecting EVK to PC... 1 Barcode Programming... 2 Factory Defaults... 2 Custom Defaults... 3

More information

5.22 Manage Triggers. Tap on the Hardware tab, and choose a GPS hardware port and the appropriate Baud rate.

5.22 Manage Triggers. Tap on the Hardware tab, and choose a GPS hardware port and the appropriate Baud rate. Manage Triggers Tap on the Hardware tab, and choose a GPS hardware port and the appropriate Baud rate. Windows Mobile 6 automatically manages access to the GPS receiver. However, some programs may not

More information

Configuration Manual PULSAR C CCD SCANNER. Table of Contents

Configuration Manual PULSAR C CCD SCANNER. Table of Contents Table of Contents PULSAR C CCD SCANNER Configuration Manual Metrologic Instruments GmbH Dornier Strasse 2 82178 Puchheim Germany Tel +49 89 890190 Fax +49 89 89019200 www.europe.metrologic.com Metrologic

More information

Windows Driver Manual SRP-350II Thermal printer Rev. 1.04

Windows Driver Manual SRP-350II Thermal printer Rev. 1.04 Windows Driver Manual SRP-350II Thermal printer Rev. 1.04 http://www.bixolon.com Table of Contents 1. Manual Information... 3 2. Operating System (OS) Environment... 3 3. Windows Driver Preparation...

More information

IPDA014-2D. Embedded 2D Barcode Scan Engine. User Guide

IPDA014-2D. Embedded 2D Barcode Scan Engine. User Guide IPDA014-2D Embedded 2D Barcode Scan Engine User Guide 1 Table Of Contents Chapter 1 Getting Started...8 Introduction...8 About This Guide...8 Barcode Scanning...9 Barcode Programming...9 Factory Defaults...9

More information

Windows Driver Manual SRP-352plusIII Thermal printer Rev. 1.02

Windows Driver Manual SRP-352plusIII Thermal printer Rev. 1.02 Windows Driver Manual SRP-352plusIII Thermal printer Rev. 1.02 http://www.bixolon.com Table of Contents 1. About this Manual... 3 2. OS Environment... 3 3. Windows Driver Preparation... 3 4. Windows Driver

More information

Windows Driver Manual SPP-R310 Mobile Printer Rev. 1.01

Windows Driver Manual SPP-R310 Mobile Printer Rev. 1.01 Windows Driver Manual SPP-R310 Mobile Printer Rev. 1.01 http://www.bixolon.com Table of Contents 1. Manual Information... 3 2. Operating System (OS) Environment... 3 3. Windows Driver Preparation... 3

More information

Windows Driver Manual SRP-350II Thermal printer Rev. 1.03

Windows Driver Manual SRP-350II Thermal printer Rev. 1.03 Windows Driver Manual SRP-350II Thermal printer Rev. 1.03 http://www.bixolon.com Table of Contents 1. Manual Information... 3 2. Operating System (OS) Environment... 3 3. Windows Driver Preparation...

More information

Advanced Handheld High-Speed Laser Scanner

Advanced Handheld High-Speed Laser Scanner GLLS 1 Advanced Handheld High-Speed Laser Scanner Revision History Changes to the original manual are listed below: Version Date Description of Version 1.0 2015/03/03 Initial release 1.1 2015/04/15 Added

More information

Windows Driver Manual SRP-S300 Thermal printer Rev. 1.01

Windows Driver Manual SRP-S300 Thermal printer Rev. 1.01 Windows Driver Manual SRP-S300 Thermal printer Rev. 1.01 http://www.bixolon.com Table of Contents 1. Manual Information... 3 2. Operating System (OS) Environment... 3 3. Windows Driver Preparation... 3

More information

1D IMAGER MODELS - 7Ci, 7Di, D700

1D IMAGER MODELS - 7Ci, 7Di, D700 COMMAND BARCODES 1D IMAGER MODELS - 7Ci, 7Di, D700 This document pertains to the following 7Ci, 7Di, D700: The part number (P/N) is labeled inside the battery compartment for the CHS 7 Series. Ci Di Model

More information

2D Imaging Barcode Scanner GLLS. Programming Guide. Advanced Handheld High-Speed Laser Scanner

2D Imaging Barcode Scanner GLLS. Programming Guide. Advanced Handheld High-Speed Laser Scanner 2D Imaging Barcode Scanner GLLS Programming Guide 1 Advanced Handheld High-Speed Laser Scanner Revision History Changes to the original manual are listed below: Version Date Description of Version 1.0

More information

Developer Documentation

Developer Documentation Developer Documentation Development of Scanner Applications for ACD Windows CE Second Edition Devices Version: 3.0 Copyright ACD Gruppe This document may not be duplicated or made accessible to third parties

More information

CONNECTING A BAR-CODE WAND TO THE MP3 CONTROLLER/PLAYER

CONNECTING A BAR-CODE WAND TO THE MP3 CONTROLLER/PLAYER CONNECTING A BAR-CODE WAND TO THE MP3 CONTROLLER/PLAYER Barcode readers/scanners typically provide interfaces for keyboard emulation, the RS232 port and, more recently, the USB port. Some offer wand emulation,

More information

Z3S. Quick Setup Guide V Connection Mode. Working via Bluetooth. Barcode Programming. Working via USB cable

Z3S. Quick Setup Guide V Connection Mode. Working via Bluetooth. Barcode Programming. Working via USB cable Z3S V18.9.7 Quick Setup Guide Connection Mode Working via USB cable Get Started: Connect scanner with your device via USB cable. If you use US keyboard, it's a plug and play model. If you use other type

More information

NT-1200 CCD Wired Barcode Scanner Overview

NT-1200 CCD Wired Barcode Scanner Overview NT-1200 CCD Wired Barcode Scanner Overview Netum wired CCD Plug and Play barcode scanner integrates a high-performance processer with an effective decoding board, combining a fast decoding speed. IP67

More information

MS336 2D Imager Scanner

MS336 2D Imager Scanner MS336 2D Imager Scanner Product Reference Guide Rev. C Preface About This Manual This manual explains how to install, operate and maintain the Unitech MS336 Imager Scanner. No part of this publication

More information

RT209 OEM 2d Scan Engine User Guide

RT209 OEM 2d Scan Engine User Guide RT209 OEM 2d Scan Engine User Guide Table Of Contents Chapter 1 Getting Started... 1 About This Guide... 1 Connecting EVK to PC... 1 Barcode Scanning... 1 Barcode Programming... 1 Custom Defaults... 3

More information

ComponentOne. BarCode for WinForms

ComponentOne. BarCode for WinForms ComponentOne BarCode for WinForms ComponentOne, a division of GrapeCity 201 South Highland Avenue, Third Floor Pittsburgh, PA 15206 USA Website: http://www.componentone.com Sales: sales@componentone.com

More information

If you want to do other configurations please refer to below programming barcodes.

If you want to do other configurations please refer to below programming barcodes. NT-1202 Quick Setup Guide This is 1D&2D plug and play model if you use a US keyboard. If you use other type of keyboard, plug the USB cable on your device, setup keyboard language before you use it. (refer

More information

WinPOS system. Co., ltd. WP-K837 series. Esc/POS Command specifications Ver.0.94

WinPOS system. Co., ltd. WP-K837 series. Esc/POS Command specifications Ver.0.94 WinPOS system. Co., ltd. WP-K837 series Esc/POS Command specifications 2014-05-06 Ver.0.94 LF Prints buffered data and feeds one line. Syntax: ASCII LF Hex 0A Decimal 10 Remarks: This command sets the

More information

BD-6500BT Bluetooth 2D Barcode Scanner Configuration Guide

BD-6500BT Bluetooth 2D Barcode Scanner Configuration Guide BD-6500BT Bluetooth 2D Barcode Scanner Configuration Guide V 2.1 Table of Contents 1 Getting Started. 3 1.1 About This Guide.. 3 1.2 Barcode Scanning.. 3 1.3 Factory Defaults.. 3 1.4 Pairing Cradle 4 1.5

More information

Quick Start Guide Bar Code Fonts for the Macintosh

Quick Start Guide Bar Code Fonts for the Macintosh Quick Start Guide Bar Code Fonts for the Macintosh Bitstream s Bar Code font collection includes fonts for the following bar code standards. Each of these fonts come with a utility to create and format

More information

wireless barcode scanner X-620 User Manual

wireless barcode scanner X-620 User Manual wireless barcode scanner X-620 User Manual V:1.0 Performance Strong decoding capability Rugged housing design Proprietary intellectual property Comfortable and convenient to use long life time button--3

More information

ActiveBarcode for developers

ActiveBarcode for developers ActiveBarcode for developers http://www.activebarcode.com/ Content About this manual...1 Setup ActiveBarcode...2 Visual Studio 2012 Barcodes in projects...3 Visual Basic Barcodes in projects...8 Visual

More information

Is there a way to hard reset the terminal to factory settings and delete all the programs that have been installed on the terminal?

Is there a way to hard reset the terminal to factory settings and delete all the programs that have been installed on the terminal? CATEGORY OS Could you tell me how to upgrade to the other OS version? There are two ways to upgrade it by the "Active sync" and the "SD card" You can find a manual for upgrading in "Download" page. ( Download

More information

MP80xx Image Platform

MP80xx Image Platform MP80xx Image Platform User Manual Version: MP80xx_UM_EN_V1.1.3 NOTICE Warning: Ensure that the optional DC adapter works at +5V, especially for the RS-232 interface cable. 1. All software, including firmware,

More information

marson MT8200S 2D Handheld Scanner User Manual V / 6 / 25 - I -

marson MT8200S 2D Handheld Scanner User Manual V / 6 / 25 - I - marson MT8200S 2D Handheld Scanner User Manual V1.1 2018 / 6 / 25 - I - Table of Contents 1 Gettting Started...1 1.1 Introduction...1 1.2 Configuring MT8200S...1 1.2.1 Barcode Configurability...1 1.2.2

More information

530-2D-USB 2D Scanner High Speed Imaging USB Bar Code Scanner

530-2D-USB 2D Scanner High Speed Imaging USB Bar Code Scanner 530-2D-USB 2D Scanner High Speed Imaging USB Bar Code Scanner Worth Data USB 2D Bar Code Scanner - Scan 1D & 2D Matrix Bar codes www.worthdata.com Owner s Manual Warning: This equipment generates, uses

More information

2.8. Decision Making: Equality and Relational Operators

2.8. Decision Making: Equality and Relational Operators Page 1 of 6 [Page 56] 2.8. Decision Making: Equality and Relational Operators A condition is an expression that can be either true or false. This section introduces a simple version of Java's if statement

More information

How to Configure AML 7220 Handheld Scanner For Use With Pacesetter

How to Configure AML 7220 Handheld Scanner For Use With Pacesetter How to Configure AML 7220 Handheld Scanner For Use With Pacesetter September 2015 Version 1.2 AML 7220 Scanner Configuration Guide Change Log September 21, 2015 Update from AML to change programming of

More information

COMMAND REFERENCE COMMAND REFERENCE PLUS II

COMMAND REFERENCE COMMAND REFERENCE PLUS II COMMAND REFERENCE PLUS II Edit by: CUSTOM ENGINEERING S.p.A. Str. Berettine 2-43010 Fontevivo (PARMA) - Italy http: www.custom.biz All rights reserved 2 Command Reference Introduction 1 INTRODUCTION 1.1

More information

MP168 Screen Barcode Image Platform

MP168 Screen Barcode Image Platform MP168 Screen Barcode Image Platform User Manual Version: MP168_UM_EN_V1.1.1 Notice Ensure that the optional DC adapter works at + 5 VDC, especially for the RS-232 interface cable. 1. All software, including

More information

BAR CODE. SYMBOLOGY PROGRAMMING for POCKET SCANNERS

BAR CODE. SYMBOLOGY PROGRAMMING for POCKET SCANNERS BAR CODE SYMBOLOGY PROGRAMMING for POCKET SCANNERS Programming Menu V4.1 Notice The manufacturer shall not be liable for technical or editorial errors or omissions contained herein; nor for incidental

More information

XL D Barcode Scanner User's Manual V1.0

XL D Barcode Scanner User's Manual V1.0 XL-3100 2D Barcode Scanner User's Manual V1.0 Table of Contents Revision History...-3- Chapter 1 Getting Started... 1 Introduction... 1 About This Guide... 2 Barcode Scanning... 2 Configuring the XL-3100...

More information

Barcode Scanner SDK Handbook. MT65 Platform

Barcode Scanner SDK Handbook. MT65 Platform Barcode Scanner SDK Handbook MT65 Platform Revision History Version Description Date V1.0 Initial release. August 13, 2015 V1.1 Modified Chapter 3 and Chapter 4. June 12, 2017 Table of Contents Chapter

More information

Disclaimer. Please read through the manual carefully before using the product and operate it

Disclaimer. Please read through the manual carefully before using the product and operate it ONEBRAND,ONESOLUTI ON 2D Handhel dbar codescanner UserManual Disclaimer Please read through the manual carefully before using the product and operate it according to the manual. It is advised that you

More information

SRP-QE300/QE302 THERMAL RECEIPT PRINTER

SRP-QE300/QE302 THERMAL RECEIPT PRINTER Windows Driver Manual SRP-QE300/QE302 THERMAL RECEIPT PRINTER Rev. 1.00 http://www.bixolon.com Introduction This Windows Driver Installation Manual provides information on installation, detailed specifications,

More information

Introduction FCC Statement

Introduction FCC Statement Introduction Bar code technology enables efficient data collection in various businesses including both commercial office and industrial automation. Importantly, bar code technology also ensures the accuracy

More information

Specification or version may be subject to change without notice. The actual specification and version are based on the product delivered.

Specification or version may be subject to change without notice. The actual specification and version are based on the product delivered. 1 IMPORTANT NOTICE No warranty of any kind is made in regard to this material, including, but not limited to, implied warranties of merchantability or fitness for any particular purpose. We are not liable

More information

El5220. Image Platform. User Manual

El5220. Image Platform. User Manual El5220 Image Platform User Manual Version: El5220 _UM_EN_V1.1.3 NOTICE Ensure that the optional DC adapter works at +5V, especially for the RS-232 interface cable. 1. All software, including firmware,

More information

ScanManager for Scanner Configuration

ScanManager for Scanner Configuration ScanManager for Scanner Configuration For 1 Series Barcode Scanners: 1000, 1090+, 1100, 1105, 1166, 1200 & 1266 Version 3.01 Copyright 2006~2011 CIPHERLAB CO., LTD. All rights reserved The software contains

More information

If you want to do other configurations please refer to below programming barcodes.

If you want to do other configurations please refer to below programming barcodes. NT-M3 Quick Setup Guide This is a plug and play model if you use a US keyboard. If you use other type of keyboard, plug the USB cable on your device, setup keyboard language before you use it. (refer to

More information

DataWedge User Guide For DataWedge v1.0

DataWedge User Guide For DataWedge v1.0 DataWedge User Guide For DataWedge v1.0 Table of Contents Overview... 2 Menu Functions... 3 Setup Dialog... 3 Test Window... 4 AutoPIE Mode... 5 Registry Settings... 6 Params Dialog... 7 Codes Dialog...

More information

This configuration including four steps. Please scan below codes one by one.

This configuration including four steps. Please scan below codes one by one. Bluetooth Wireless Barcode Scanner Overview Netum bluetooth wireless model integrates a high-performance processer with an effective decoding board, combining a fast decoding speed. High precision and

More information

Nikon Capture NX "How To..." Series

Nikon Capture NX How To... Series 1 of 8 5/14/2007 2:55 PM Nikon Capture NX "How To..." Series Article 1 - How to convert multiple RAW (NEF) images into JPEG format, for use on a web page. Procedure: Step 1 - Resize an image. Step 2 -

More information

Introduction. Installation- Keyboard Wedge

Introduction. Installation- Keyboard Wedge Introduction Installation- Keyboard Wedge 1) First of all, you must switch off power for the terminal/computer. 2) Disconnect the keyboard cable from the back of the terminal/computer. 3) Connect the appropriate

More information

PP8X Printer Command Manual

PP8X Printer Command Manual PP8X Printer Command Manual Pinnacle Technology Corp. CONTENTS 1 COMMANDS... 1 2 COMMAND SAMPLE (hex command)... 29 1 COMMANDS Command Decimal Hex Function HT 9 9 Horizontal tab LF 10 0A Print and line

More information

PP8X Printer Command Manual

PP8X Printer Command Manual PP8X Printer Command Manual Pinnacle Technology Corp. CONTENTS 1 COMMANDS... 1 2 COMMAND SAMPLE (hex command)... 29 1 COMMANDS Command Decimal Hex Function HT 9 9 Horizontal tab LF 10 0A Print and line

More information

R1000 user manual. HID mode for IOS 1. Turn on the barcode reader, and read below barcodes sequence, the blue LED will flash rapidly.

R1000 user manual. HID mode for IOS 1. Turn on the barcode reader, and read below barcodes sequence, the blue LED will flash rapidly. HID Mode for IOS R10 user manual HID mode for IOS 1. Turn on the barcode reader, and read below barcodes sequence, the blue LED will flash rapidly. 2. the bluetooth of IOS to pair with the barcode reader.

More information

Section 5.5: Reduced Space Symbology and Composite Symbology

Section 5.5: Reduced Space Symbology and Composite Symbology Section 5.5: Reduced Space Symbology and Composite Symbology Table of Contents 5.5.1 Introduction... 3 5.5.1.1 Composite Symbol Features...6 5.5.2 Reduced Space Symbology (RSS)...7 5.5.2.1 Introduction...

More information

Setup Procedures 2 Batch Setup 3. Bar Code Setup Menu 5. 1 Device Selection and Default. 2 Beep and Delay Keyboard Wedge..

Setup Procedures 2 Batch Setup 3. Bar Code Setup Menu 5. 1 Device Selection and Default. 2 Beep and Delay Keyboard Wedge.. Contents Setup Procedures 2 Batch Setup 3 Bar Code Setup Menu 5 1 Device Selection and Default 5 2 Beep and Delay... 7 3 Keyboard Wedge.. 9 4 RS232 Serial Setting.... 11 5 Scanner.. 13 7 Symbologies(I):

More information

Windows Driver Manual SRP-382 Thermal printer Rev. 1.00

Windows Driver Manual SRP-382 Thermal printer Rev. 1.00 Windows Driver Manual SRP-382 Thermal printer Rev. 1.00 http://www.bixolon.com Table of Contents 1. Manual Information... 3 2. Operating System (OS) Environment... 3 3. Windows Driver Preparation... 3

More information

2D Imaging Barcode Scanner GLLS. Programming Guide. Advanced Handheld High-Speed Laser Scanner

2D Imaging Barcode Scanner GLLS. Programming Guide. Advanced Handheld High-Speed Laser Scanner 2D Imaging Barcode Scanner GLLS Programming Guide 1 Advanced Handheld High-Speed Laser Scanner Revision History Changes to the original manual are listed below: Version Date Description of Version 1.0

More information

Windows Driver Manual SPP-R400 Mobile Printer Rev. 1.05

Windows Driver Manual SPP-R400 Mobile Printer Rev. 1.05 Windows Driver Manual SPP-R400 Mobile Printer Rev. 1.05 http://www.bixolon.com Table of Contents 1. Manual Information... 3 2. Operating System (OS) Environment... 3 3. Windows Driver Preparation... 3

More information

Wired Laser Barcode Scanner User Manual V:1509

Wired Laser Barcode Scanner User Manual V:1509 Wired Laser Barcode Scanner User Manual 7 1 2 1 1 0 0 0 0 4 V:1509 Thanks you for choosing our company s product. To have a better operating experience, please read this manual carefully. Reading Angle

More information

ZBX P/N : MUL LASER LIGHT CAUTION DO NOT STARE INTO BEAM

ZBX P/N : MUL LASER LIGHT CAUTION DO NOT STARE INTO BEAM LASER LIGHT CAUTION DO NOT STARE INTO BEAM 670nm LASER DIODE,1.0mW MAX OUTPUT IEC 825-1(1993)CLASS I,US 21 CFR 1040 CLASS IIa LASER PRODUCT ZBX99030301 P/N : MUL-53221-04 USER'S MANUAL Handheld laser scanner

More information

User s Manual WARNING CIPHER 1000 CCD SERIES

User s Manual WARNING CIPHER 1000 CCD SERIES CIPHER 1000 CCD SERIES User s Manual WARNING This equipment has been tested and found to comply with the limits for a Class A digital device, pursuant to Part 15 of FCC Rules. These limits are designed

More information

DLL2020. Software Configuration Manual

DLL2020. Software Configuration Manual DLL2020 Software Configuration Manual DLL2020 SOFTWARE CONFIGURATION MANUAL DATALOGIC S.p.A. Via Candini 2 40012 - Lippo di Calderara di Reno Bologna - Italia DLL2020 Software Configuration Manual Ed.:02/2003

More information

MS810 Laser Scanner. Product Reference Guide. Rev. A

MS810 Laser Scanner. Product Reference Guide. Rev. A MS810 Laser Scanner Product Reference Guide Rev. A 1 Preface About This Manual This manual explains how to install, operate and maintain the Unitech MS810 Laser Scanner. No part of this publication may

More information

MS810 Laser Scanner. Product Reference Guide. Rev. A

MS810 Laser Scanner. Product Reference Guide. Rev. A MS810 Laser Scanner Product Reference Guide Rev. A 1 Preface About This Manual This manual explains how to install, operate and maintain the Unitech MS810 Laser Scanner. No part of this publication may

More information

MD60xx Image Barcode Scanner

MD60xx Image Barcode Scanner MD60xx Image Barcode Scanner User Manual Version: MD60xx_UM_EN_V1.1.2 Notice Ensure that the optional DC adapter works at +5V, especially for the RS-232 interface cable. 1. All software, including firmware,

More information

NCR Realscan 7837 High-Performance Scanners. User s Guide Issue A

NCR Realscan 7837 High-Performance Scanners. User s Guide Issue A NCR Realscan 7837 High-Performance Scanners User s Guide 497-0427357 Issue A Table of Contents Chapter 1 - Getting Started About This Manual... 1-1 Unpacking the Scanner... 1-2 RealScan 7837 High-Performance

More information

MP720 Presentation Imager

MP720 Presentation Imager MP720 Presentation Imager User Manual Version: MP720_UM_EN_V1.1.3 Notice Ensure that the optional DC adapter works at +5V, especially for the RS-232 interface cable. 1. All software, including firmware,

More information