Elo-touchsystems 1525L User Manual

Browse online or download User Manual for Monitors Elo-touchsystems 1525L. Elo TouchSystems 1525L User Manual

  • Download
  • Add to my manuals
  • Print
  • Page
    / 181
  • Table of contents
  • BOOKMARKS
  • Rated. / 5. Based on customer reviews

Summary of Contents

Page 1 - Revision A

Elo Entuitive Touchmonitor User Guide15" LCD Desktop Touchmonitor with Magnetic Swipe Reader (USB)1525L SeriesRevision AP/N 008569Elo TouchSyste

Page 2 - Trademark Acknowledgments

2-7STEP 1-Removing the Back Cover• The cables are routed through the back of the stand. • To remove the back cover, place one hand at the top of the s

Page 3 - Table of Contents

SECTION 2. PROPERTIES This section lists the properties that are used in the MagTek Drivers. Properties can be interrogated by issuing a get c

Page 4 - NTRODUCTION

MagTek Device Drivers for Windows 98Property Access Description c_writeR 1 if the device can encode a magnetic card in either LoCo or HiCo; 2 if t

Page 5

Section 2. Properties 99Property Access Description enc_keyR/W Encryption key to use for the next encryption process (IntelliPIN): M for Master

Page 6 - NSTALLATION

MagTek Device Drivers for Windows 100Property Access Description offline_encR/W Set to 1 to enable encode capability in standalone mode with keybo

Page 7 - Product Overview

101SECTION 3. COMMANDS This section describes all of the commands that can be used with the MagTek Windows Device Drivers. Some commands require

Page 8 - Base Bottom View

MagTek Device Drivers for Windows 102Examples: 000000000011111111112222222222012345678901234567890123456789/read -00082/get trk_enable 110 NOTAT

Page 9 - Touch Interface Connection

Section 3. Commands 103display Function Show a single message or two alternating messages on the device’s display. Syntax /display [x] The optio

Page 10 - Bottom cut-out

MagTek Device Drivers for Windows 104event Function Response to an unsolicited event notification. Syntax none Errors none Remarks This response

Page 11

Section 3. Commands 105load_key Function Load an encryption key into the device. Syntax /load_key n key n can be one of the following values: M

Page 12

MagTek Device Drivers for Windows 106rawrecv Function Receive data from the device. Syntax /rawrecv Errors /rawrecv 45<LF>If a command is a

Page 13 - Connections on underside

2-8 Elo Entuitive Touchmonitor User GuideSTEP 2-Connecting the Video Cable• Tilt the screen up and back to access the connection ports. • Connect the

Page 14 - Power cable

Section 3. Commands 107rawsend Function Send arbitrary data to the device. Syntax /rawsend x x is an arbitrary string which is transmitted direc

Page 15 - USB Connection

MagTek Device Drivers for Windows 108read Function Read data from the device. Syntax /read [[x] y] The optional argument x specifies the data sou

Page 16

Section 3. Commands 109Read Arguments The optional argument x used in the read command specifies the type of data to read and y specifies the t

Page 17

MagTek Device Drivers for Windows 110Read Argument Description chk_or_card Read magnetic stripe card or check data. When a card or check is swipe

Page 18

Section 3. Commands 111Read Argument Description pin Collect PIN from cardholder and read PIN data from the device. The following properties may

Page 19 - Speaker port

MagTek Device Drivers for Windows 112reset Function Reset the device. Syntax /reset Errors none Remarks Clear any pending operations and reset th

Page 20

Section 3. Commands 113write Function Data encode command. Syntax /write data Errors /write 94<LF>Encode is not supported on this device.

Page 21 - Optimizing the LCD Display

MagTek Device Drivers for Windows 114

Page 22 - Mounting the Base

115SECTION 4. MAGNETIC CARD DATA PARSING This section describes the flexible data parsing language to be used by the MagTek device drivers to pars

Page 23

MagTek Device Drivers for Windows 116• Property names specified in format rules are 11 characters or less, consisting of alphabetic characters,

Page 24 - , Me, 95/98 and NT 4.0

2-9STEP 3-Connecting the Serial Touchscreen Cable• Connect the female end of the serial (RS-232) cable to the serial port on the back of your PC. • Co

Page 25 - Windows 3.1

Section 4. Magnetic Card Data Parsing 117If the driver is successful in applying one of the rules, the name of the applied format is available i

Page 26 - Me and 98

MagTek Device Drivers for Windows 118A format rule describes how the data is to be parsed. Characters that must be matched as literals are place

Page 27

Section 4. Magnetic Card Data Parsing 119Field Type Example Description Literal ^ A literal is placed in the string as is and is used to det

Page 28 - PERATION

MagTek Device Drivers for Windows 120The property name can also contain a modifier at the end preceded by a ‘:’ which specifies the type of data

Page 29 - Side Bezel Buttons

Section 4. Magnetic Card Data Parsing 121DEFAULT FORMATS The MTD drivers will be assigned parameters with default formats for parsing magnetic

Page 30 - OSD Menu Function

MagTek Device Drivers for Windows 122fmt5_name "AAMVA" fmt5_template"%<*>?;<*>?{(+|%|#|!)<*>?}" fmt5_rules

Page 31

Section 4. Magnetic Card Data Parsing 123The application issues /get applied_fmt. The driver responds with /get applied_fmt BankCard. The applic

Page 32 - ROUBLESHOOTING

MagTek Device Drivers for Windows 124

Page 33

125SECTION 5. EXAMPLE APPLICATIONS While each application in this section is oriented toward a specific programming language, different devices ar

Page 34 - ESOLUTION

MagTek Device Drivers for Windows 126' The form needs to contain:' 1) an "MSComm" object named MSComm1' 2) a button name

Page 35

2-10 Elo Entuitive Touchmonitor User GuideSTEP 4-Connecting the Speaker CableNOTE:If you do not wish to connect the speaker cable, go to step 5.• To u

Page 36 - OUCHMONITOR

Section 5. Example Applications 127MSComm1.Output = "/read card" & Chr$(10)' If the device has check reading capability, then

Page 37

MagTek Device Drivers for Windows 128' will hold the numeric port numberDim PortNumber As Integer' prevent the Start button from being

Page 38 - PECIFICATIONS

Section 5. Example Applications 129If Err.Number <> 0 Then' Process error using Err.Description' contains error description for

Page 39 - Touchmonitor Specifications

MagTek Device Drivers for Windows 130' Set the com port number retrieved from the responseMSComm1.CommPort = PortNumber' Open the com p

Page 40 - Mechanical

Section 5. Example Applications 131C++ EXAMPLE The following is an example of C++: /* ---------------------------------------------------------

Page 41 - 000-4-2, 1995)

MagTek Device Drivers for Windows 132/** clear overlapped structure */memset ( &ov_r, 0, sizeof (ov_r) );memset ( &ov_w, 0, sizeof (ov_w)

Page 42

Section 5. Example Applications 133NULL, // address of thread security attributes0L, // initial thread stack size, in bytes(LPTHREAD_START_ROUTI

Page 43

MagTek Device Drivers for Windows 134}#elsegets(str);strcat(str, "\n");ch = str[0];#endifswitch (ch){case 0x1a: // <Ctrl-Z> - eme

Page 44 - Detail A

Section 5. Example Applications 135DWORD read_len=0;char wbuff[1];char* p;while (!quit){rs = ReadFile(drv_h, wbuff, sizeof(wbuff), &read_len

Page 45

MagTek Device Drivers for Windows 136POWER BUILDER EXAMPLE The following example illustrates how to set up PowerBuilder (from Sybase) to read ma

Page 46 - NFORMATION

2-11STEP 5-Connecting the Power CableDepending on where you live, you will use either the European or US/Canadian power cable. • Connect the female en

Page 47

Section 5. Example Applications 1378. Close the PowerScript Painter window and answer “Yes” to “Save changes…”. 9. Close the Window Painter wi

Page 48

MagTek Device Drivers for Windows 138

Page 49

139APPENDIX A. INSTALLATION AND SETUP The distribution disks contain the MTD Driver files for many of the MagTek products. In addition to the dri

Page 50

MagTek Device Drivers for Windows 140INSTALLING DEVICE DRIVERS (W95/98/ME) File or Directory Name Device Friendly Name DESCRIPTION OEMSETUP.INF

Page 51

Appendix A. Installation and Setup 141General Notes: 1. The computer and device should be powered off when connecting any devices. 2. Although

Page 52

MagTek Device Drivers for Windows 1425. Select MagTek from the list of Hardware Types, then click the Next button. 6. Select the device to be in

Page 53

Appendix A. Installation and Setup 1431. Either accept the default selection for the virtual Port Name or select the desired port (COM5-COM15) t

Page 54 - SWIPE READER

MagTek Device Drivers for Windows 144 Figure A-1. Properties Settings, Windows 95/98/ME Figure A-2. Advanced Settings, Windows 95/98/ME

Page 55

Appendix A. Installation and Setup 145Removing the Drivers (W95/98/ME) Caution The following assumes familiarity with the Registry Editor. Imp

Page 56

MagTek Device Drivers for Windows 146MAGCDFLT.DLLMAGCxxx.HLP (locale specific) MAGCxxx.DLL (locale specific) 7. Find and remove the copy of the

Page 57

2-12 Elo Entuitive Touchmonitor User GuideUSB ConnectionNOTE:A USB connection can only be used if your PC is running Windows 98, 2000, Me or XP.The fo

Page 58

Appendix A. Installation and Setup 147INSTALLING DEVICE DRIVERS (WNT) File or Directory Name Friendly Name DESCRIPTION OEMSETUP.INF Installatio

Page 59

MagTek Device Drivers for Windows 148Wizard. Open the Wizard by double clicking on the Add/Remove Programs icon in the Control Panel. On the Ins

Page 60

Appendix A. Installation and Setup 149INSTALLING DEVICE DRIVERS (W2000/XP) File or Directory Name Friendly Name DESCRIPTION MTD_KBH.INFKeyboard

Page 61

MagTek Device Drivers for Windows 150In Windows 2000/XP, only users with Administrator privileges may install system components. Log on as Admini

Page 62 - Table 1-2. Specifications

Appendix A. Installation and Setup 15119. Click the “Next” button to advance to the next input screen. 20. Click on "Yes" to the &quo

Page 63 - USB Swipe Reader

MagTek Device Drivers for Windows 15212. Uncheck all “Optional search locations” check boxes. 13. Click the “Next” button to advance to the next

Page 64 - SECTION 2. INSTALLATION

Appendix A. Installation and Setup 153MTD was successfully re-started. The changes you made are now in effect. Note Only a single keyboard devi

Page 65

MagTek Device Drivers for Windows 154and MTD device will appear as COM7. The MICR+ device appears to the system as COM12 and has a friendly name

Page 66 - Section 2. Installation

Appendix A. Installation and Setup 155Command syntax summary Command Syntax Meaning mtcfglist installed MagTek device drivers mtcfg -?display a

Page 67

MagTek Device Drivers for Windows 156model is the full name of the device model to be added. The name should be enclosed in quotes if it contain

Page 68 - SECTION 3. OPERATION

2-13STEP 1-Removing the Back Cover• The cables are routed through the back of the stand. • To remove the back cover, place one hand at the top of the

Page 69

Appendix A. Installation and Setup 157Configuration Examples for Windows NT/2000/XP These examples are for illustration only. Most of the comma

Page 70

MagTek Device Drivers for Windows 158Modifying a Device Driver's Settings (WNT/2000/XP) Use the following syntax to change settings of a de

Page 71

Appendix A. Installation and Setup 159Removing a Device (WNT/2000/XP) To remove a MagTek device use the following command syntax: mtcfg port-nam

Page 72

MagTek Device Drivers for Windows 160

Page 73

161APPENDIX B. COMMAND LIST SUMMARY This is a consolidated list of all available commands for the MagTek Windows Drivers. Command Description Pa

Page 74

MagTek Device Drivers for Windows 162

Page 75

163APPENDIX C. STATUS CODES The following table defines the status codes returned in command responses. Note that it is not meant as a complete l

Page 76

MagTek Device Drivers for Windows 164

Page 77

165APPENDIX D. DEVICE DRIVER SUMMARIES This section contains summaries of Device Drivers for the for the following models: • IntelliPIN and Inte

Page 78

MagTek Device Drivers for Windows 166INTELLIPIN PINPAD & MSR File Name IPIN.VXD Part Number 30037395 Friendly Name(s) IntelliPIN RS-232, Inte

Page 79

2-14 Elo Entuitive Touchmonitor User GuideSTEP 2-Connecting the Video Cable• Tilt the screen up and back to access the connection ports. • Connect the

Page 80 - SECTION 5. DEMO PROGRAM

Appendix D. Device Driver Summaries 167MAGWEDGE SWIPE READER File NameMAGWEDGE.VXD Part Number 30037348 Friendly Name(s)MagWedge RemarksThe driv

Page 81

MagTek Device Drivers for Windows 168MINIWEDGE MSR File Name MINIWEDG.VXD Part Number30037340 Friendly Name(s) MiniWedge Remarks When operating i

Page 82 - FOR WINDOWS

Appendix D. Device Driver Summaries 169MICR+ CHECK READER & MSR File NameMICRPLUS.VXD Part Number 30037349 Friendly Name(s)MICR+ RemarksThes

Page 83

MagTek Device Drivers for Windows 170MINI MICR CHECK READER & MSR File NameMINIMICR.VXD Part Number 30037344 Friendly Name(s)Mini MICR RS-232

Page 84 - Limited Warranty

Appendix D. Device Driver Summaries 171PORT-POWERED RS-232 SWIPE READER File NameMTPPSWIP.VXD Part Number 30037346 Friendly Name(s)Port-powered

Page 85

MagTek Device Drivers for Windows 172PORT-POWERED RS-232 INSERTION READER File Name MTPPINSR.VXD Part Number 30037339 Friendly Name(s) Port-power

Page 86

Appendix D. Device Driver Summaries 173MT-85 LOCO ENCODER File NameMT85.VXD Part Number 30037337 Friendly Name(s)MT-85 RemarksThe driver attempt

Page 87

MagTek Device Drivers for Windows 174MT-95 HICO ENCODER File NameMT95.VXD Part Number 30037347 Friendly Name(s)MT-95 Remarks Commands Supported

Page 88

175INDEX A Access to the device...92 account_no ...97 Action properties.

Page 89 - Device Drivers

MagTek Device Drivers for Windows 176Device control language...88 Device Driver Summaries...165 Dev

Page 90 - SECTION 1. OVERVIEW

2-15STEP 3-Connecting the USB Touchscreen Cable• Connect the USB touchscreen cable to the USB touchscreen connector on the touchmonitor.• Connect the

Page 91

177MTCFG Utility (WNT), Using ...154 MTD (Mag-Tek Drivers) ...87 N Non-interactive commands ...

Page 92 - Section 1. Overview

MagTek Device Drivers for Windows 178Use Port...153, 158 Use the device ...

Page 93

2-16 Elo Entuitive Touchmonitor User GuideSTEP 4-Connecting the Speaker CableNOTE:If you do not wish to connect the speaker cable, go to step 5.• To u

Page 94

Copyright © 2002 Elo TouchSystems Inc. All Rights Reserved.No part of this publication may be reproduced, transmitted, transcribed, stored in a retrie

Page 95

2-17STEP 5-Connecting the Power CableDepending on where you live, you will use either the European or US/Canadian power cable. • Connect the female en

Page 96 - COM<5-15>). It also

2-18 Elo Entuitive Touchmonitor User GuideOptimizing the LCD DisplayTo ensure the LCD display works well with your computer, configure the display mod

Page 97 - PortOpen property to False:

2-19Accessing the VESA Mounting InterfaceIf you want to convert your desktop monitor to a wall mount or kiosk monitor, follow the steps below to acces

Page 98 - /rawsend \x0F083\x0E\x35

2-20 Elo Entuitive Touchmonitor User GuideInstalling the Driver SoftwareElo TouchSystems provides driver software that allows your touchmonitor to wor

Page 99

2-21Installing the Serial Touch Driver for Windows XP, Windows 20001, Me, 95/98 and NT 4.0NOTE:For Windows 2000 and NT 4.0 you must have administrator

Page 100 - SECTION 2. PROPERTIES

2-22 Elo Entuitive Touchmonitor User GuideInstalling the Serial Touch Driver for MS-DOS and Windows 3.1You must have a DOS mouse driver (MOUSE.COM) in

Page 101

2-23Installing the USB Touch DriverInstalling the USB Touch Driver for Windows XP, Windows 2000, Me and 981 Insert the Elo CD-ROM in your computer’s C

Page 102 - • $ to display as amount

2-24 Elo Entuitive Touchmonitor User Guide

Page 103

3-25C HAPTER3CHAPTER 3OPERATIONAbout Touchmonitor AdjustmentsYour touchmonitor will unlikely require adjustment. Variations in video output and applic

Page 104 - SECTION 3. COMMANDS

3-26 Elo Entuitive Touchmonitor User GuideSide Bezel ButtonsControl Function MENU Menu Display on exit the OSD menus. Contrast/Up/Toggle1. Shortcut to

Page 105

Chapter 1Introduction 1Precautions . . . . . . . . . . . . . . . . . . . . 1Chapter 2Installation and Setup 3Unpacking Your Touchm

Page 106

3-27OSD Menu FunctionCONTRAST50ContrastControls the picture contrastPhaseControls the vertical fine adjustmentBrightnessControls the picture brightnes

Page 107

3-28 Elo Entuitive Touchmonitor User Guide

Page 108

4-29C HAPTER4CHAPTER 4TROUBLESHOOTINGIf you are experiencing trouble with your touchmonitor, refer to the following table. If the problem persists, pl

Page 109 - • \ is replaced by \\

4-30 Elo Entuitive Touchmonitor User GuideImage has vertical flickering line bars. Use “PHASE” to make an adjustment.Check and reconfigure the display

Page 110

A-31A PPENDIXACHAPTER 4NATIVE RESOLUTIONThe native resolution of a monitor is the resolution level at which the LCD panel is designed to perform best.

Page 111

A-32 Elo Entuitive Touchmonitor User GuideAs an example, a SVGA resolution LCD panel has 800 pixels horizontally by 600 pixels vertically. Input video

Page 112 - Section 3. Commands

B-33A PPENDIXBCHAPTER 4TOUCHMONITOR SAFETYThis manual contains information that is important for the proper setup and maintenance of your touchmonitor

Page 113

B-34 Elo Entuitive Touchmonitor User GuideCare and Handling of Your TouchmonitorThe following tips will help keep your Elo Entuitive touchmonitor func

Page 114

C-35A PPENDIXCCHAPTER 4TECHNICAL SPECIFICATIONSCompatible Video ModesYour Elo Entuitive touchmonitor is compatible with the following standard video m

Page 115

C-36 Elo Entuitive Touchmonitor User GuideTouchmonitor SpecificationsTable C.115" LCD Touchmonitor (ET15-XXWA-1) SpecificationsDisplay TypeActive

Page 116

1-1C HAPTER1CHAPTER 1INTRODUCTIONCongratulations on your purchase of an Elo TouchSystems Entuitive touchmonitor. Your new touchmonitor combines the re

Page 117

C-37Table C.2 IntelliTouch Touchmonitor SpecificationsMechanicalPositional AccuracyStandard deviation of error is less than 0.080 in. (2.03 mm). Equat

Page 118

C-38 Elo Entuitive Touchmonitor User GuideEnvironmentalChemical ResistanceThe active area of the touchscreen is resistant to all chemicals that do not

Page 119

C-39Table C.3 AccuTouch Touchmonitor SpecificationsMechanicalConstructionTop: Polyester with outside hard-surface coating with clear or antiglare fini

Page 120

C-40 Elo Entuitive Touchmonitor User Guide15" LCD Touchmonitor (ET15-XXWA-1) Dimensions

Page 121

C-41See Detail ADetail A

Page 122 - • \\ is converted to \

C-42 Elo Entuitive Touchmonitor User Guide

Page 123

43CHAPTER 4REGULATORY INFORMATIONI. Electrical Safety Information:A) Compliance is required with respect to the voltage, frequency, and currentrequire

Page 124

44 Elo Entuitive Touchmonitor User GuideThis Information Technology Equipment (ITE) is required to have a CE Markon the manufacturer’s label which mea

Page 125

45N10051

Page 126

46 Elo Entuitive Touchmonitor User Guide

Page 127

1-2 Elo Entuitive Touchmonitor User Guide• Auto adjustment capability• High quality full screen re-scaling• Multilingual OSD menus in four languages:

Page 128

47CHAPTER 4WARRANTYExcept as otherwise stated herein or in an order acknowledgment delivered to Buyer, Seller warrants to Buyer that the Product shall

Page 129

48 Elo Entuitive Touchmonitor User GuideTHESE REMEDIES SHALL BE THE BUYER’S EXCLUSIVE REMEDIES FOR BREACH OF WARRANTY. EXCEPT FOR THE EXPRESS WARRANTY

Page 130

Index-49Numerics15" LCD Touchmonitor (ET15-XXWA-1) Dimensions, 4015” LCD Touchmonitor (ET15-XXWA-1) Specifications, 36AAbout the Product, 1About

Page 131

Index-50OOperation, 25Optical, AccuTouch, 39Optical, IntelliTouch, 37Optimizing the LCD Display, 18OSD H-Position, 27OSD Language, 27OSD Menu Function

Page 132

USB (UNIVERSAL SERIAL BUS) SWIPE READER TECHNICAL REFERENCE MANUAL Manual Part Number 99875191 Rev 4 AUGUST 2001 20725 South A

Page 133

52Copyright  2001 MAG-TEK, Inc. Printed in the United States of America Information in this document is subject to change without notice. No part

Page 134 - C++ EXAMPLE

53Limited Warranty Mag-Tek, Inc. (hereinafter “Mag-Tek”) warrants this Mag-Tek product IN ITS ENTIRETY, to be in good working order for a period of

Page 135

54 FCC WARNING STATEMENT This equipment has been tested and found to comply with the limits for Class B digital device, pursuant to Part 15 of FCC

Page 136

55TABLE OF CONTENTS SECTION 1. FEATURES AND SPECIFICATIONS...57 FE

Page 137

56 Figure 1-1. USB Swipe Reader

Page 138

2-3C HAPTER2CHAPTER 2INSTALLATION AND SETUPThis chapter discusses how to install your LCD touchmonitor and how to install Elo TouchSystems driver soft

Page 139

57SECTION 1. FEATURES AND SPECIFICATIONS The USB (Universal Serial Bus) Swipe Reader is a compact magnetic stripe card reader which conforms to IS

Page 140

USB Swipe Reader 58 CONFIGURATIONS The Configurations are as follows: ACCESSORIES The accessories are as follows: Part Number Desc

Page 141

Section 1. Features and Specifications 59Table 1-2. Specifications Reference Standards ISO 7810 and ISO 7811/CDL/ AAMVA* Power Input 5V Fro

Page 142

USB Swipe Reader 60

Page 143

61SECTION 2. INSTALLATION This section describes the cable connection, the Windows Plug and Play Setup, and the physical mounting of the unit. US

Page 144

USB Swipe Reader 62 WINDOWS PLUG AND PLAY SETUP On hosts with the Windows operating system, the first time the device is plugged into a specific

Page 145

Section 2. Installation 63 Figure 2-2. Mounting Hole Dimensions For Surface 2. Ensure the Reader is positioned on a flat, accessible surfac

Page 146

USB Swipe Reader 64

Page 147

65SECTION 3. OPERATION This section describes the LED Indicator and Card Read. LED INDICATOR The LED indicator will be either off, red, or gree

Page 148

USB Swipe Reader 66

Page 149

2-4 Elo Entuitive Touchmonitor User GuideProduct OverviewMain UnitRear ViewLCD DisplayStand

Page 150

67SECTION 4. USB COMMUNICATIONS This device conforms to the USB specification revision 1.1. This device also conforms with the Human Interface Dev

Page 151

USB Swipe Reader 68 following table. The usage types are also listed. These usage types are defined in the HID Usage Tables document. Magnetic

Page 152

Section 4. USB Communications 69 Item Value(Hex) Usage (Card encode type) 09 38 Report Count (7) 95 07 Input (Data, Variable, Absolute, Bit Fi

Page 153

USB Swipe Reader 70 TRACK 1 DECODE STATUS Bits 7-1 0 Value Reserved Error This is a one-byte value, which indicates the status of decoding tr

Page 154

Section 4. USB Communications 71CARD ENCODE TYPE This one byte value indicates the type of encoding that was found on the card. The following

Page 155

USB Swipe Reader 72 COMMANDS Most host applications do not need to send commands to the device. Most host applications only need to obtain car

Page 156

Section 4. USB Communications 73RESULT CODE This one byte field contains the value of the result code. There are two types of result codes: g

Page 157

USB Swipe Reader 74 Property ID is a one byte field that contains a value that identifies the property. The following table lists all the curren

Page 158

Section 4. USB Communications 75SERIAL_NUM PROPERTY Property ID: 1 Property Type: String Length: 0 – 15 bytes Get Property: Yes Set P

Page 159 - UsePort for serial devices

USB Swipe Reader 76 will be sent to the host when the host requests the device’s USB endpoint descriptor. When this property is changed, the uni

Page 160

2-5Side ViewBase Bottom ViewUser Controls

Page 161

77SECTION 5. DEMO PROGRAM The demo program, which is written in Visual Basic, can be used to do the following: • Read cards from the device and v

Page 162 - \EXAMPLES\PwrBldr

USB Swipe Reader 78 SOURCE CODE Source code is included with the demo program. It can be used as a guide for application development. It is de

Page 163

MAGTEK DEVICE DRIVERS FOR WINDOWS PROGRAMMING REFERENCE MANUAL Manual Part Number: 99875125 Rev 6 NOVEMBER 2001 20725 South

Page 164

80Copyright  1996-2001 MAG-TEK, Inc. Printed in the United States of America Information in this document is subject to change without notice. No

Page 165

81Limited Warranty Mag-Tek, Inc. (hereinafter “Mag-Tek”) warrants this Mag-Tek product IN ITS ENTIRETY, to be in good working order for a period of

Page 166 - APPENDIX C. STATUS CODES

82TABLE OF CONTENTS SECTION 1. OVERVIEW ...

Page 167

83enc_key...99 enc_ke

Page 168

84DESCRIPTION...116 LANGUAGE

Page 169 - /event n data

85MT-95 HICO ENCODER...174 INDEX...

Page 170

86 Figure 1-1. MagTek Devices and Device Drivers for Windows MTD MagTek Device Driversfor Windows

Page 171

2-6 Elo Entuitive Touchmonitor User GuideTouch Interface ConnectionNOTE:Your interface cables may have been pre-connected to your monitor at the facto

Page 172

87SECTION 1. OVERVIEW The MagTek Device (MTD) Drivers for Windows is a collection of individual drivers that support a number of MagTek products.

Page 173

MagTek Device Drivers for Windows 88• MagTek devices are attached to the host in different ways. MagTek devices may be attached to a serial port

Page 174

Section 1. Overview 89usually remain unchanged, even though the new device may be very different from the old one. The features of a driver tha

Page 175

MagTek Device Drivers for Windows 90COMMANDS Like properties, commands are identified by a string name and have string arguments. All commands a

Page 176

Section 1. Overview 91TYPICAL OPERATION This section describes a typical pattern that an application developer may use to operate a device. Al

Page 177

MagTek Device Drivers for Windows 92instruct the device to return the card data when swiped. All the facilities of the driver are utilized during

Page 178

Section 1. Overview 93Settings tab. This gives both the Friendly Name and the port name (COM<5-15>). It also identifies the physical por

Page 179

MagTek Device Drivers for Windows 94‘set up error handlingOn Error Resume Next‘submit echo commandPut #1, , "/echo Hello" + Chr$(10)‘dec

Page 180

Section 1. Overview 951. It can prompt the user to repeat the action and re-submit the command. This is typical if the status does not indicat

Page 181

MagTek Device Drivers for Windows 96Installation And Setup) and select Properties. Click on the Version tab. Note the File Version, Part Number,

Comments to this Manuals

No comments