V-Series V30x Module Electrical, Physical Layer, and Application Integration. Customer Information Brief Version 1.4

Size: px
Start display at page:

Download "V-Series V30x Module Electrical, Physical Layer, and Application Integration. Customer Information Brief Version 1.4"

Transcription

1 V-Series V30x Module Electrical, Physical Layer, and Application Integration Customer Information Brief Version 1.4

2 THIS DOCUMENT IS PROVIDED AS IS WITH NO WARRANTIES WHATSOEVER, INCLUDING ANY WARRANTY OF MERCHANTABILITY, NONINFRINGEMENT, FITNESS FOR ANY PARTICULAR PURPOSE, OR ANY WARRANTY OTHERWISE ARISING OUT OF ANY PROPOSAL, SPECIFICATION OR SAMPLE. Lumidigm disclaims all liability, including liability for infringement of any proprietary rights, relating to use of information in this specification. No license, express or implied, by estoppel or otherwise, to any intellectual property rights is granted herein. Lumidigm thanks you for your interest in the V-Series V30x Module Electrical, Physical Layer, and Application Integration Customer Information Brief. This document may be freely distributed and copied as long as it remains intact as-is. Copyright by Lumidigm, Inc. Third-party brands and names are the property of their respective owners. Need more or updated information? For more in-depth and the latest updated information, please visit the website at or call +1 (505) Revision History Date Who Version Action 6/8/2007 Paul Butler 1.0 Created 4/16/2008 Paul Butler 1.1 Changes for new interface board 11/10/2009 Janine Kennedy 1.2 Clarified LED controls 4/13/2010 Janine Kennedy 1.3 Clarified physical layer interfaces 8/30/2012 Janine Kennedy 1.4 Specified product line 5/12 Janine Kennedy 1.5 Now part of HID Global Lumidigm, Inc. 801 University Blvd SE Ste 302 Albuquerque, NM Phone: +1 (505) Fax: +1 (505) Lumidigm, Inc. All rights reserved. Company proprietary. ii

3 Contents Overview... 1 Figure 1 V30x module connectors... 1 The vcom Command Interface... 2 Application Development Approaches... 3 Figure 2 Windows PC-based application development... 3 Figure 3 Windows PC-based development steps... 4 Figure 4 Non-Windows PC-based application development... 4 Figure 5 Non-Windows PC-based development steps... 5 Figure 6 Integration example: card reader... 6 USB Connector... 7 Figure 7 V30x module USB mini-b connector... 7 Table 1 USB mini-b pinouts pin vcom connector... 9 Figure 8 V30x module 14-pin vcom connector... 9 Table 2 v pin vcom connector and pinouts LED Indicator Connector Figure 9 V30x module 4-pin indicator connector Table 3 4-pin LED indicator connector Lumidigm, Inc. All rights reserved. Company proprietary. iii

4 Overview The V-Series V30x module has three interface connections: USB Mini-B, 14-pin vcom, and a 4- pin LED indicator. The USB connection or the 14-pin vcom connection can be used for host-tosensor command and data flow. The 4-pin LED connector is used for directing user action and providing feedback during image capture and matching. Figure 1 V30x module connectors All command and data traffic between the V30x module and the host system must conform to the Lumidigm vcom protocol described in the "The vcom Command Interface section of this document. The V30x module continuously monitors and responds to traffic conforming to the vcom protocol on the USB and RS-232 physical layer interfaces. While it is possible to simultaneously use multiple ports for vcom traffic, applications should be developed to use only one port to avoid contention. The 14-pin vcom connector can be configured to support RS-232 physical layer interfaces and can also be used to supply power to the device. The USB connection is used for USB 2.0 communication and can also supply power to the V30x module. This document contains the electrical and physical layer interface details of all three V30x module connectors as well as a brief on supported application development methods and information about the vcom command interface, Lumidigm, Inc. All rights reserved. Company proprietary. 1

5 The vcom Command Interface The vcom command interface is a protocol that allows low-level control of a sensor using this protocol. The protocol is sensor and physical layer independent, but because different physical layer interfaces operate at very different data transfer rates the latency involved in the commandresponse pair is dependent on interface type and interface speed. For the V30x module, the USB and RS-232 physical layer interfaces can be used for vcom transactions. It should be noted that applications developed on Windows PC platforms would not normally interact directly with the sensor using vcom but would use the Application Programming Interfaces (APIs) and drivers supplied in the Lumidigm Software Development Kit (SDK). This is the preferred method for application development on Windows PC platforms. The vcom-level interfaces should only be used for application development on other platforms. Please refer to the Application Development Approaches section of this document for more information. vcom is a layered protocol that consists of macro or application level commands, atomic or lowlevel configuration and control commands, database commands to maintain a local template store, and diagnostic commands used in manufacturing or to diagnose sensor faults. Macro level commands are very similar in function to the API level interface presented to Windows PC developers using the Lumidigm SDK. For more information about the vcom protocol please refer to the Lumidigm vcom Command Reference. For sample code please refer to the Lumidigm vcom Example Lumidigm, Inc. All rights reserved. Company proprietary. 2

6 Application Development Approaches Once one of the vcom ports is connected to a system, commands and data can be exchanged between the system and one or more V30x units. There are two different types of development approaches that can be used: Windows PC based development using Lumidigm provided drivers and Application Programming Interfaces (APIs) and non Windows PC based application development. V30x unit Windows PC Image Capture Customer Applications and GUI Lumidigm Demo Application and GUI vcom Control Interface Physical Layer Interface Lumidigm Application Protocol Interfaces (APIs) Image processing, Spoof, Feature Extraction, Matching, and other functions Physical layer interface & vcom Driver USB 2.0, rs232 Figure 2 Windows PC-based application development Windows-based applications use software provided by Lumidigm to communicate with the sensor and provide the sensor an independent set of APIs. This software is called the Lumidigm Software Development Kit (SDK). This SDK also contains a demonstration application and sample code to facilitate a quick start for application developers. All Lumidigm applications, including the demonstration application, use the Windows API approach to application integration Lumidigm, Inc. All rights reserved. Company proprietary. 3

7 Integration Steps Install Lumidigm SDK on windows PC Use Lumidigm Demo Application to understand sensor operation Use Lumidigm APIs to write Customer application(s) using provided API call example code Customer Applications and GUI Windows PC Lumidigm Demo Application and GUI Lumidigm Application Protocol Interfaces (APIs) Image processing, Spoof, Feature Extraction, Matching, and other functions Physical layer interface & vcom Driver Figure 3 Windows PC-based development steps Non Windows PC based application development is also supported. In this case, a driver implementing the vcom protocol must be developed and linked to the target system s appropriate physical layer interface (USB, RS-232). Then, code must be developed that translates the vcom commands and data in order to provide services to applications and to link the V30x module to those applications through the driver. V30x Unit Image capture & Processing Customer Embedded Computing Platform Feature Extraction, 378 template creation, Spoof 1:1 or 1:N Match to Template Database or Customer app provided template(s) vcom Control Interface Physical layer Interface Customer Applications Customer developed vcom Control Interface Driver Physical Layer Driver USB 2.0 or RS-232 Figure 4 Non-Windows PC-based application development Lumidigm, Inc. All rights reserved. Company proprietary. 4

8 Integration Steps Determine overall system partitioning; which functions will be assigned to the Customer application and which to the V30x module Develop or purchase a standard USB or RS232 driver Using Lumidigm provided Control Interface Specification; develop a vcom Control Interface Driver Develop or connect the vcom control interface driver into the Customer application program(s) Customer Embedded Computing Platform Customer Applications Customer developed Vxxx Control Interface Driver USB or RS232 Driver Figure 5 Non-Windows PC-based development steps Lumidigm provides compiled drivers and APIs for Windows based PCs and source code for a generic vcom driver for customers developing non Windows PC based applications. In addition system integration, application development and porting services are available. Please contact your Lumidigm representative for more information. The V30xfamily contains several products intended for a variety of customer application use cases. The design process should begin at the system level and the key decision at this step is which system functions to assign to the V30x sensor and which to assign to which parts of the rest of the system. Once this decision is made the appropriate V30x part number can be determined. The primary function partitioning choices are; Image output will the sensor provide images to the customer application? If so the bandwidth of the physical interface needs careful consideration to insure total transaction times are fast enough to meet end customer expectations. Feature extraction will the sensor create biometric templates? Biometric verification will the sensor perform matching of the currently placed finger to a single selected biometric template? Biometric identification will the sensor match the currently place finger against a set of stored templates or a locally stored identification database? Template storage will the sensor template database be used for verification or identification functions? If so is the sensor template storage capacity sufficient for the application? And how will the application manage the sensor template database? Lumidigm, Inc. All rights reserved. Company proprietary. 5

9 The simplest and most cost effective partitioning approach would enable the sensor to perform all biometric functions augmented by some mechanism for managing the sensors template storage database. In addition to template management and the logic to control the sensor the customer application would provide all system level interfaces. As an example a biometric reader consisting of a sensor, card reader, and control board that is intended for connection to a legacy physical access control panel supporting the Wiegand protocol could be most cost effectively constructed as shown below. V30x Unit Image capture & Processing Feature Extraction and spoof detection 1:1 Verification to Customer application provided template vcom Control Interface Customer Embedded Computing Platform Control Logic Wiegand Driver vcom Driver Control Logic Wait for Card placement Extract template from card and send to sensor Arm sensor On finger placement match to template Based on match result from sensor send open signal to panel Physical Access Control Panel USB 2.0, rs232 Card Reader Driver Card Reader Figure 6 Integration example: card reader Lumidigm, Inc. All rights reserved. Company proprietary. 6

10 USB Connector The V30x module USB connector is an industry standard Mini-B plug that can be used to provide power for the module and is one of the three ports that can be used for commands and data traffic between the module and a host system using the Lumidigm vcom protocol. This connector is located on rear panel of the V30x module on the lower right side. Figure 7 V30x module USB mini-b connector Powering the V30x module via the USB Connector The USB connector or the 14pin connector can be used to provide power to the V30x module. In applications where the USB connection is used for power only, a standard wall-mounted USB power supply or application-specific wiring is required. If application-specific wiring is used to supply power to the module, the 5V DC terminal is connected to Pin 1 and the ground (GND) connection is made to Pin 5 (see Figure 6 and Table 5). All other connections should be left open. The V30x module requires up to 500mA of source current from the USB connector and care should be taken to insure the connected PC or USB hub can supply a full 500mA to this device at 5V DC. Some hubs and PCs share USB power among multiple connectors. To determine the available current refer to the PC or hub manufacturers specifications for total current and subtract the maximum current required by all other connected devices Lumidigm, Inc. All rights reserved. Company proprietary. 7

11 Pin Function 1 USB power + 2 Data - 3 Data + 4 N/C 5 USB power - 6 USB shield Table 1 USB mini-b pinouts Manufacturer: Molex Part number Using the USB Connection for Sensor Communication The physical layer interface conforms to USB 2.0 and is capable of operation up to 480Mbps. In applications where the USB connector is being used for host-to-sensor data communication, cabling of any length that conforms to the USB 2.0 standard can be used. Once physical layer connections are made between the V30x module and the customer s system, commands and data can be transferred over the interface using the Lumidigm vcom protocol. Applications developed using the Lumidigm SDK (which installs required sensor drivers) and a Windows PC platform will communicate with the sensor with the provided APIs rather than vcom. Only non-windows PC application developers need to develop their own drivers and communicate with the sensor via vcom. Please refer to the Application Development Approaches section in this document for more information about application-to-sensor connectivity and application development options Lumidigm, Inc. All rights reserved. Company proprietary. 8

12 14-pin vcom connector The 14-pin vcom connector is used in applications requiring sensor control and dataflow over RS-232 physical layer interfaces and can also be used to provide power to the V30x module. Figure 8 V30x module 14-pin vcom connector The RS-232 connection is an industry standard interface and the implementation on the V30x module conforms to these standards. The interface speed for RS-232 is customer-configurable using vcom commands. The default interface speed is 9600 bps and the maximum speed is 192 Kbps. In addition, the default RS-232 configuration is 8 bits data, 1 stop bit, and disabled flow control. The RS-232 connection supports software flow control (XON/XOFF). Customers must purchase connectors and wire them appropriately to connect their system to the V30x module The pinouts are identified in Table 2. The connector manufacturer and the number of the part used on the sensor also are shown. Lumidigm can provide customer-specific cabling for this connector. Please contact your Lumidigm representative for more information Lumidigm, Inc. All rights reserved. Company proprietary. 9

13 Pin Function 14 Ground 13 RS-232 TX 12 RS-232 RX 11 Ground 10 N/C 9 +5V 8 +5V 7 +5V 6 Ground 5 Ground 4 reserved 3 reserved 2 reserved 1 reserved Table 2 v pin vcom connector and pinouts Manufacturer: HIROSE Part number DF13A-14P-1.25H(50) Once physical layer connections are made between the V30x module and the customer s system, commands and data can be transferred over the interface using the Lumidigm vcom protocol. Applications developed using the Lumidigm SDK (which installs required sensor drivers) and a Windows PC platform will communicate with the sensor with the provided APIs rather than vcom. Only non-windows PC application developers need to develop their own drivers and communicate with the sensor via vcom. Please refer to the Application Development Approaches section in this document for more information about application-to-sensor connectivity and application development options Lumidigm, Inc. All rights reserved. Company proprietary. 10

14 LED Indicator Connector The LED connector on the V30x module is used by the sensor firmware to indicate operational status and to provide finger placement feedback to the user. Most OEM applications will integrate the V30x module into an enclosure with multiple components and user interfaces. This connector allows the system designer the flexibility to locate the indicators appropriate to the application or not use them at all. The LED indicators can be programmed either through the SDK or the vcom interface. Figure 9 V30x module 4-pin indicator connector Pin Function 1 USB Shield 2 Green LED+ 3 GND 4 Red LED+ Table 3 4-pin LED indicator connector Manufacturer: HIROSE Part number DF13A-4P-1.25H(50) Lumidigm, Inc. All rights reserved. Company proprietary. 11

V-Series V30x Module Electrical, Physical Layer and Application Integration Guide

V-Series V30x Module Electrical, Physical Layer and Application Integration Guide Lumidigm V-Series V30x Module Electrical, Physical Layer and Application Integration Guide PLT-02218, Rev. A.0 December 2014 hidglobal.com Contents 1 Overview... 2 2 The vcom Command Interface... 4 3 Application

More information

DATASHEET 4D SYSTEMS TURNING TECHNOLOGY INTO ART. USB to Serial UART Bridge Converter. Document Date: 5 th September 2012 Document Revision: 1.

DATASHEET 4D SYSTEMS TURNING TECHNOLOGY INTO ART. USB to Serial UART Bridge Converter. Document Date: 5 th September 2012 Document Revision: 1. TURNING TECHNOLOGY INTO ART DATASHEET USB to Serial UART Bridge Converter µusb-mb5 Document Date: 5 th September 2012 Document Revision: 1.0 Uncontrolled Copy when printed or downloaded. Please refer to

More information

Lumidigm Frequently Asked Questions

Lumidigm Frequently Asked Questions Lumidigm Frequently Asked Questions PLT-02335, Rev. A.1 July 2015 Software Version 5.30 hidglobal.com Copyright 2014-2015 HID Global Corporation/ASSA ABLOY AB. All rights reserved. This document may not

More information

Manufacturing Instruction

Manufacturing Instruction Test Fixture Manufacturing Instruction Version 1.0 Espressif Systems Copyright 2018 www.espressif.com Release Notes About This Guide This document provides instructions on the manufacturing of the test

More information

UniFinger SFM5060-OH

UniFinger SFM5060-OH Ver. 1.0 Revision History Rev No. Issued date Description 1.0 Feb. 8, 2012 Initial Release Important Notice Information in this document is provided in connection with Suprema products. No license, express

More information

PIC32 SK I/O Breakout Board. User Manual

PIC32 SK I/O Breakout Board. User Manual PIC32 SK I/O Breakout Board The PIC32 SK I/O Breakout board is a practical and useful board to let you develop your PIC32 Starter Kit application without the design of additional PCBs, thanks to the breakout

More information

DATASHEET 4D SYSTEMS TURNING TECHNOLOGY INTO ART. microusb Programming Adaptor. USB to UART Serial Bridge

DATASHEET 4D SYSTEMS TURNING TECHNOLOGY INTO ART. microusb Programming Adaptor. USB to UART Serial Bridge TURNING TECHNOLOGY INTO ART DATASHEET microusb Programming Adaptor µusb-pa5 USB to UART Serial Bridge Document Date: 27 th November 2013 Document Revision: 1.1 Uncontrolled Copy when printed or downloaded.

More information

DATASHEET 4D SYSTEMS. uusb-pa5 uusb-pa5-ii. microusb Programming Adaptor TURNING TECHNOLOGY INTO ART. USB to UART Serial Bridge

DATASHEET 4D SYSTEMS. uusb-pa5 uusb-pa5-ii. microusb Programming Adaptor TURNING TECHNOLOGY INTO ART. USB to UART Serial Bridge DATASHEET TURNING TECHNOLOGY INTO ART microusb Programming Adaptor -II USB to UART Serial Bridge Document Date: 17 th July 2015 Document Revision: 2.0 Uncontrolled Copy when printed or downloaded. Please

More information

UniFinger SFM3050-TC2

UniFinger SFM3050-TC2 UniFinger SFM3050-TC2 Ver. 1.01 UniFinger SFM3050-TC2 2 Revision History Rev No. Issued date Description 1.0 Dec 27, 2004 Initial Release 1.01 Aug. 13, 2010. Incorrect name of J2 connector is corrected,

More information

FOR TCG ACPI Specification

FOR TCG ACPI Specification ERRATA Errata Version 0.3 August 25, 2017 FOR TCG ACPI Specification Specification Version 1.20 Revision 8 January 19th, 2017 Contact: admin@trustedcomputinggroup.org Copyright TCG 2017 Disclaimers, Notices,

More information

Evaluation Board User Guide UG-047

Evaluation Board User Guide UG-047 Evaluation Board User Guide UG-047 One Technology Way P.O. Box 9106 Norwood, MA 02062-9106, U.S.A. Tel: 781.329.4700 Fax: 781.461.3113 www.analog.com Evaluating the ADT7310/ADT7410 Temperature Sensors

More information

M M WIFI Module

M M WIFI Module M1002 300M WIFI Module Stable and High Performance 32bit MIPS Processor Compliant with IEEE 802.11n standard, up to 300Mbps Data Rate Small and Pin Hole Mounting Design 3.3VDC Input Power, Low Power Consumption

More information

PCI Express Link/Transaction Test Methodology

PCI Express Link/Transaction Test Methodology PCI Express Link/Transaction Test Methodology September 29, 2006 Revision 1.1 This page is intentionally left blank. 2 PCI Express Link/Transaction Test Methodology, Rev 1.1 Revision History Document

More information

PremierWave 2050 Enterprise Wi-Fi IoT Module Evaluation Kit User Guide

PremierWave 2050 Enterprise Wi-Fi IoT Module Evaluation Kit User Guide PremierWave 2050 Enterprise Wi-Fi IoT Module Evaluation Kit User Guide Part Number 900-765-R Revision A February 2016 Intellectual Property 2016 Lantronix, Inc. All rights reserved. No part of the contents

More information

BioPointe Reader Installation Guide

BioPointe Reader Installation Guide BioPointe Reader Installation Guide What s in this Guide Installation Steps 1 Key Parts of the BioPointe Reader 2 Cabling Requirements 3 Power Connection 3 PXL-500W Wiegand Controller Connection 3 Serial

More information

A.G.P. Pro Specification

A.G.P. Pro Specification A.G.P. Pro Specification Revision 1.0 Intel Corporation August 1998 A.G.P. Pro Specification Copyright Intel Corporation 1998 All rights reserved. This specification is provided AS IS with no warranties

More information

MD-N32 Serial to Ethernet Gateway Installation and Operating Guide

MD-N32 Serial to Ethernet Gateway Installation and Operating Guide MD-N32 Serial to Ethernet Gateway Installation and Operating Guide Copyright 2014 by Rosslare. All rights reserved. This manual and the information contained herein are proprietary to ROSSLARE ENTERPRISES

More information

INNOMETRIKS INC. Rhino Quick Start Guide

INNOMETRIKS INC. Rhino Quick Start Guide INNOMETRIKS INC Rhino Quick Start Guide Rhino Quick Start Guide Innometriks Inc Fallbrook, Ca. 92028 Phone 760-207-6908 Sales: Sales@innometriksinc.com General Information: Info@innometriksinc.com Customer

More information

OnRISC. OnRISC Baltos ir 2110

OnRISC. OnRISC Baltos ir 2110 OnRISC OnRISC Baltos ir 2110 Hardware Manual Edition: October 2015 Tel: +49 40 528 401 0 Fax: +49 40 528 401 99 Web: www.visionsystems.de Support: service@visionsystems.de The software described in this

More information

USB HD Audio/Video Codec Model 2263 Hardware Manual Ver October 2013

USB HD Audio/Video Codec Model 2263 Hardware Manual Ver October 2013 USB HD Audio/Video Codec Model 2263 Hardware Manual Ver.1.0.1 October 2013 Table of Contents LIMITED WARRANTY...3 SPECIAL HANDLING INSTRUCTIONS...4 INTRODUCTION...5 SYSTEM REQUIREMENTS...5 BLOCK DIAGRAM...6

More information

ESP8266 Quick Start Guide

ESP8266 Quick Start Guide ESP8266 Quick Start Guide Version 1.1 Copyright 2016 About This Guide This document is a quick user guide to getting started with ESP8266. The document is structured as follows. Chapter Title Content Chapter

More information

... 2... 3... 4... 5... 6... 6... 6... 7... 8... 8... 8... 9... 9... 10... 10... 10... 11... 11... 12... 13... 13... 14... 14... 15... 16... 17... 18... 19... 20... 21 ... 6... 7... 8... 8... 9... 9...

More information

BNO080 Development Kit for Nucleo Quick Start Guide

BNO080 Development Kit for Nucleo Quick Start Guide BNO080 Development Kit for Nucleo Quick Start Guide The BNO080 is a System in Package (SiP) that integrates a triaxial accelerometer, a triaxial gyroscope, magnetometer and a 32-bit ARM Cortex -M0+ microcontroller

More information

Bluetooth PC Card Transport Layer

Bluetooth PC Card Transport Layer Bluetooth WHITE PAPER DATE 25 August 99 N.B. DOCUMENT NO. 1.C.123/1.0 RESPONSIBLE Riku Mettala E-MAIL ADDRESS Riku.Mettala@nmp.nokia.com STATUS Bluetooth PC Card Transport Layer Version 1.0 The Bluetooth

More information

Intel RealSense D400 Series Calibration Tools and API Release Notes

Intel RealSense D400 Series Calibration Tools and API Release Notes Intel RealSense D400 Series Calibration Tools and API Release Notes July 9, 2018 Version 2.6.4.0 INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS OR IMPLIED,

More information

USB-to-I2C Basic. Hardware User s Manual.

USB-to-I2C Basic. Hardware User s Manual. USB-to-I2C Basic Hardware User s Manual http://www.i2ctools.com/ Information provided in this document is solely for use with the USB-to-I2C product from SB Solutions, Inc. SB Solutions, Inc. reserves

More information

Installing FTDI Device Drivers for the QF4A512-DK under Windows XP

Installing FTDI Device Drivers for the QF4A512-DK under Windows XP APPLICATION NOTE QFAN027 Installing FTDI Device Drivers for the QF4A512-DK under Windows XP 1) Introduction On first use of the QF4A512-DK development kit, Windows-based computers fail to correctly install

More information

Modernizing Meetings: Delivering Intel Unite App Authentication with RFID

Modernizing Meetings: Delivering Intel Unite App Authentication with RFID Modernizing Meetings: Delivering Intel Unite App Authentication with RFID INTEL UNITE SOLUTION WHITE PAPER Revision 1.0 Document Number: 599309-1.0 Legal Disclaimers and Copyrights All information provided

More information

StrongARM** SA-110/21285 Evaluation Board

StrongARM** SA-110/21285 Evaluation Board StrongARM** SA-110/21285 Evaluation Board Brief Datasheet Product Features Intel offers a StrongARM** SA-110/21285 Evaluation Board (EBSA-285) that provides a flexible hardware environment to help manufacturers

More information

USER GUIDE. Atmel Segment LCD1 Xplained Pro. Preface

USER GUIDE. Atmel Segment LCD1 Xplained Pro. Preface USER GUIDE Atmel Segment LCD1 Xplained Pro Preface Atmel Segment LCD1 Xplained Pro is an extension board to the Atmel Xplained Pro evaluation platform. Segment LCD1 Xplained Pro is designed to kick-start

More information

VENUS_ Driving Board and 39.6 Prism Display

VENUS_ Driving Board and 39.6 Prism Display VENUS_ Driving Board and 39.6 Prism Display Table of Contents 1 Hardware Requirements... 1 (1) PACKAGE CONTENTS... 1 (2) VENUS Specification... 2 (3) Prism product Specification... 3 2 Hardware Guide...

More information

DL-S41-H2 Quick Install Guide

DL-S41-H2 Quick Install Guide DL-S41-H2 Quick Install Guide This guide is for quick installation only. For complete owners manual and list of commands, go to www.libav.com or use a QR reader to access the manual via QR code below.

More information

M M WIFI Module

M M WIFI Module M1000 150M WIFI Module Stable and High Performance 32bit MIPS Processor Compliant with IEEE 802.11n standard, up to 150Mbps Data Rate Small and Castellated Mounting Holes Design 3.3VDC Input Power, Low

More information

XEELAS NODE MANUAL X-COM VERSION 1.0

XEELAS NODE MANUAL X-COM VERSION 1.0 This document is the official manual for the Xeelas LoRa Node. In this document, all the functions and technical specifications are described. X-COM VERSION 1.0 XEELAS NODE MANUAL Manual for Software version

More information

Enterprise and Datacenter. SSD Form Factor. 1U Short Specification

Enterprise and Datacenter. SSD Form Factor. 1U Short Specification Enterprise and Datacenter SSD Form Factor 1U Short Specification Revision 0.9 Draft October 27, 2017 Enterprise and Datacenter SSD Form Factor Working Group Please send comments to Anthony Constantine

More information

Smart Plug User Guide

Smart Plug User Guide Smart Plug User Guide Version 1.2 Copyright 2016 About This Guide This document introduces to users an example of ESP IOT Platform applications, the Espressif Smart Plug. The document includes the following

More information

Intel Desktop Board DH55TC

Intel Desktop Board DH55TC Intel Desktop Board DH55TC Specification Update December 2011 Order Number: E88213-006 The Intel Desktop Board DH55TC may contain design defects or errors known as errata, which may cause the product to

More information

DATASHEET. MK-070C-HP High Performance 7 Inch Capacitive Touch Display. Amulet. Technologies. July 2015 Revision A

DATASHEET. MK-070C-HP High Performance 7 Inch Capacitive Touch Display. Amulet. Technologies. July 2015 Revision A High Performance 7 Inch Capacitive Touch Display DATASHEET July 2015 Revision A Introduction The MK-070C is the newest family member in the Display Module product line. The new 7 Capacitive Display Module

More information

Macrotron Systems, Inc. Flash Media Products. Part Number Family: 2.5 PATA (IDE) SSD (High Performance Series) PA25SMXXXXXMXXMX

Macrotron Systems, Inc. Flash Media Products. Part Number Family: 2.5 PATA (IDE) SSD (High Performance Series) PA25SMXXXXXMXXMX Macrotron Systems, Inc. Flash Media Products Part Number Family: 2.5 PATA (IDE) SSD (High Performance Series) PA25SMXXXXXMXXMX & 1.8 PATA (IDE) SSD (High Performance Series) PA18SMXXXXXMXXMX Revision Description

More information

WPJ344 Hardware Manual

WPJ344 Hardware Manual WPJ344 Hardware Manual Copyright This document contains information, which is protected by copyright. Reproduction, adaptation, or translation without prior permission is prohibited, except as allowed

More information

Serial to Ethernet Converter HL-SE02P-V1. User s Manual V3.606

Serial to Ethernet Converter HL-SE02P-V1. User s Manual V3.606 Serial to Ethernet Converter HL-SE02P-V1 User s Manual V3.606 UContents Table Welcome... 2 Package Contents. 2 Feature. 2 Application 3 Specification. 4 Hardware Guide 5 Ping Assignments. 6 Factory Default

More information

USER GUIDE. Atmel QT6 Xplained Pro. Preface

USER GUIDE. Atmel QT6 Xplained Pro. Preface USER GUIDE Atmel QT6 Xplained Pro Preface Atmel QT6 Xplained Pro kit is a Xplained Pro extension board that enables the evaluation of a mutual capacitance touch suface using the Peripheral Touch Controller

More information

ESP8266 Quick Start Guide

ESP8266 Quick Start Guide ESP8266 Quick Start Guide Version 1.4 Copyright 2017 About This Guide This document is a quick start guide to ESP8266. The document is structured as follows. Chapter Title Content Chapter 1 Chapter 2 Chapter

More information

SAMSUNG ELECTRONICS RESERVES THE RIGHT TO CHANGE PRODUCTS, INFORMATION AND SPECIFICATIONS WITHOUT NOTICE. Products and specifications discussed

SAMSUNG ELECTRONICS RESERVES THE RIGHT TO CHANGE PRODUCTS, INFORMATION AND SPECIFICATIONS WITHOUT NOTICE. Products and specifications discussed SAMSUNG ELECTRONICS RESERVES THE RIGHT TO CHANGE PRODUCTS, INFORMATION AND SPECIFICATIONS WITHOUT NOTICE. Products and specifications discussed herein are for reference purposes only. All information discussed

More information

USB2 Debug Device A Functional Device Specification

USB2 Debug Device A Functional Device Specification USB2 Debug Device A Functional Device Specification Date: March 25, 2003 Revision: 0.9 The information is this document is under review and is subject to change. USB2 Revision 0.9 3/25/2003 Scope of this

More information

HD/SD H.264 Capture Device (SDI HD/SD H.264 Video Encoder) User s Manual Model 2224 Rev.0 September 2013

HD/SD H.264 Capture Device (SDI HD/SD H.264 Video Encoder) User s Manual Model 2224 Rev.0 September 2013 HD/SD H.264 Capture Device (SDI HD/SD H.264 Video Encoder) User s Manual Model 2224 Rev.0 September 2013 Table of Contents TABLE OF CONTENTS...2 LIMITED WARRANTY...4 SPECIAL HANDLING INSTRUCTIONS...5 INTRODUCTION...6

More information

iport PT1000-LV Hardware Guide Rev

iport PT1000-LV Hardware Guide Rev iport PT1000-LV Hardware Guide These products are not intended for use in life support appliances, devices, or systems where malfunction of these products can reasonably be expected to result in personal

More information

Orion Jr. Purchasing Guide Rev. 1.2

Orion Jr. Purchasing Guide Rev. 1.2 www.orionbms.com Orion Jr. Purchasing Guide Rev. 1.2 The Orion Jr. BMS is a low cost battery management system designed to manage low voltage lithium ion battery packs up to 48V nominal. The Orion Jr.

More information

Connecting a Cisco Input Module

Connecting a Cisco Input Module CHAPTER 4 Overview The optional Cisco Input Module (Figure 4-1) is attached to a Cisco Physical Access Gateway or Cisco Reader Module to provide additional connections for up to ten input devices. Each

More information

HD/SD H.264 Capture Device (H.264 Video Encoder + Decoder) User s Manual Model 2226 Rev.A March 2010

HD/SD H.264 Capture Device (H.264 Video Encoder + Decoder) User s Manual Model 2226 Rev.A March 2010 HD/SD H.264 Capture Device (H.264 Video Encoder + Decoder) User s Manual Model 2226 Rev.A March 2010 Table of Contents TABLE OF CONTENTS...2 LIMITED WARRANTY...4 SPECIAL HANDLING INSTRUCTIONS...5 INTRODUCTION...6

More information

Ethernet1 Xplained Pro

Ethernet1 Xplained Pro Ethernet1 Xplained Pro Part Number: ATETHERNET1-XPRO The Atmel Ethernet1 Xplained Pro is an extension board to the Atmel Xplained Pro evaluation platform. The board enables the user to experiment with

More information

Kube Embedded System

Kube Embedded System Connect Tech Inc. Tel: 519-836-1291 42 Arrow Road Toll: 800-426-8979 (North America only) Guelph, Ontario Fax: 519-836-4878 N1K 1S6 Email: sales@connecttech.com support@connecttech.com CTIM-00464 Revision

More information

ACR120 Contactless Reader/Writer. 1.0 Introduction. 2.0 Features. 3.0 Supported Card Types. 6.4cm. 9.9cm

ACR120 Contactless Reader/Writer. 1.0 Introduction. 2.0 Features. 3.0 Supported Card Types. 6.4cm. 9.9cm ACR120 Contactless Reader/Writer 1.0 Introduction The ACR120 is a compact and cost-effective contactless reader and writer. It is developed on the 13.56MHz contactless smart card (RFID) technology, supporting

More information

ACR120 Technical Specifications Version 4.00

ACR120 Technical Specifications Version 4.00 Datenblatt / Specifications ACR120 Contactless Reader/Writer Otto-Hesse-Straße 19 / T5 D-64293 Darmstadt Phone +49 6151 9926567 Fax +49 6151 3689296 1.0 Introduction The ACR120 is a compact and cost-effective

More information

xpico 110 Wired Device Server Module Evaluation Kit User Guide

xpico 110 Wired Device Server Module Evaluation Kit User Guide xpico 110 Wired Device Server Module Evaluation Kit User Guide Part Number 900-788-R Revision A April 2017 Intellectual Property 2017 Lantronix, Inc. All rights reserved. No part of the contents of this

More information

Quick Start Installation Guide

Quick Start Installation Guide apc/l Quick Start Installation Guide Version A2 Document Part Number UM-201 May 2010 OVERVIEW The apc/l is an intelligent access control and alarm monitoring control panel which serves as a basic building

More information

Datenblatt / Specifications. ACR880 GPRS Portable Smart Card Terminal. idvation GmbH

Datenblatt / Specifications. ACR880 GPRS Portable Smart Card Terminal. idvation GmbH Datenblatt / Specifications ACR880 GPRS Portable Smart Card Terminal Otto-Hesse-Straße 19 / T5 D-64293 Darmstadt Phone +49 6151 9926567 Fax +49 6151 3689296 Table of Contents 1.0. Introduction... 3 2.0

More information

Intel Desktop Board D945GSEJT

Intel Desktop Board D945GSEJT Intel Desktop Board D945GSEJT Specification Update April 2011 Part Number: E65723-006 The Intel Desktop Board D945GSEJT may contain design defects or errors known as errata, which may cause the product

More information

Figure 1. EFM32 Wonder Gecko STK (Left) Connected to a Biometric-EXP (Right)

Figure 1. EFM32 Wonder Gecko STK (Left) Connected to a Biometric-EXP (Right) BIOMETRIC EXP Evaluation Board USER S GUIDE 1. Introduction The Silicon Laboratories Biometric-EXP Evaluation Board is a hardware plugin card for EFM32 Starter Kits (STK s). The Biometric-EXP is intended

More information

SFM6020-OP6. Datasheet. Ver Copyright 2016 by Suprema, Inc.

SFM6020-OP6. Datasheet. Ver Copyright 2016 by Suprema, Inc. SFM6020-OP6 Ver. 0.1 SFM6020-OP6 2 Revision History Rev No. Issued date Description Important Notice Information in this document is provided in connection with Suprema products. No license, express or

More information

USER GUIDE. Atmel QT1 Xplained Pro. Preface

USER GUIDE. Atmel QT1 Xplained Pro. Preface USER GUIDE Atmel QT1 Xplained Pro Preface Atmel QT1 Xplained Pro kit is an extension board that enables evaluation of self- and mutual capacitance mode using the Peripheral Touch Controller (PTC) module.

More information

Series III Programmer Installation Manual

Series III Programmer Installation Manual Series III Programmer Installation Manual Table of Contents Connecting the Programmer... 2 Installing the Device Driver... 2 Installing the Application Software... 5 Installing the Development Kit Software...

More information

Quick Start Guide. GV-Video Server

Quick Start Guide. GV-Video Server Quick Start Guide GV-Video Server Thank you for purchasing GV-Video Server. This guide is designed to assist the new user in getting immediate results from the GV-Video Server. For advanced information

More information

TrueSecure TM GTU Series USB Fingerprint Module

TrueSecure TM GTU Series USB Fingerprint Module TrueSecure TM GTU Series Revision: V1.10 Date: March 16, 2015 Table of Contents 1 Features... 3 2 Applications... 3 3 Selection Table... 3 4 Block Diagram... 4 5 General Description... 4 6 Pin Description...

More information

DL-1H1A1U-WPKT-W Install Guide

DL-1H1A1U-WPKT-W Install Guide Rev 181219 11675 Ridgeline Drive Phone: 719-260-0061 Colorado Springs, CO Toll-Free: 800-530-8998 80921 Fax: 719-260-0075 Product Overview The Digitalinx DL-1H1A1U-WPKT-W HDBaseT 2.0 extender set transmits

More information

TECHNICAL INFORMATION

TECHNICAL INFORMATION TECHNICAL INFORMATION MS1000 2U STANDARD PROCESSOR P/N 901-10320000 Specifications subject to change without notice 901-10327902 Iss. 1.0 KONGSBERG MESOTECH LTD. 1598 Kebet Way, Port Coquitlam B.C. Canada

More information

Jump Test of ESP8266 s Secondary Bootloader (V1.6+)

Jump Test of ESP8266 s Secondary Bootloader (V1.6+) Jump Test of ESP8266 s Secondary Bootloader (V1.6+) Version 2.0 Copyright 2017 About This Guide The document is structured as follows: Chapter Title Content Chapter 1 Chapter 2 Overview Jump Test Configuration

More information

TCG Physical Security Interoperability Alliance IP Video Use Case 002 (PSI-UC-IPV002) Specification Version 1.0 Revision 0.2

TCG Physical Security Interoperability Alliance IP Video Use Case 002 (PSI-UC-IPV002) Specification Version 1.0 Revision 0.2 TCG Physical Security Interoperability Alliance IP Video Use Case 002 (PSI-UC-IPV002) Specification Version 1.0 Revision 0.2 Revision History Description Date By Version 1.0 Rev 0.1 Initial Draft August

More information

HID-USB-to-IR-RD HID USB TO IR REFERENCE DESIGN USER S GUIDE. 1. Kit Contents. 2. Software Download

HID-USB-to-IR-RD HID USB TO IR REFERENCE DESIGN USER S GUIDE. 1. Kit Contents. 2. Software Download HID USB TO IR REFERENCE DESIGN USER S GUIDE 1. Kit Contents The HID USB to IR Reference Design contains the following items: HID USB to IR Bridge Board Retractable USB cable 2. Software Download The software

More information

S125 Multi-Purpose 125 KHz RFID Reader USER MANUAL. 9V/24V DC Operating Voltage, AC (optional) KHz RFID EM4100/2 Cards & Tags

S125 Multi-Purpose 125 KHz RFID Reader USER MANUAL. 9V/24V DC Operating Voltage, AC (optional) KHz RFID EM4100/2 Cards & Tags S125 Multi-Purpose 125 KHz RFID Reader 44 mm USER MANUAL MULTI PURPOSE 84 mm ONLINE & OFFLINE MODE BUILT-IN RELAY 125 KHz RFID EM4100/2 Cards & Tags 9V/24V DC Operating Voltage, AC (optional) 3 Online

More information

ET-UARTSWD Users Guide

ET-UARTSWD Users Guide User s Guide ET-UARTSWD Users Guide Power Application Controller s www.active-semi.com Copyright 2018 Active-Semi, Inc. CONTENTS Contents...2 Overview...3 1. ET-UARTSWD Resources...6 1.1 Provided Connectors...6

More information

ML605 Restoring Flash Contents

ML605 Restoring Flash Contents ML605 Restoring Flash Contents March 2011 Copyright 2011 Xilinx XTP055 Revision History Date Version Description 03/01/11 13.1 Regenerated contents for 13.1. 12/21/10 12.4 Regenerated contents for 12.4.

More information

Touch Screen. Bergquist. User s Guide. Set-Up and Use of Bergquist 5-Wire Controller USB, RS-232, & PS/2 TOUCH SCREEN CONTROLLER FEATURES

Touch Screen. Bergquist. User s Guide. Set-Up and Use of Bergquist 5-Wire Controller USB, RS-232, & PS/2 TOUCH SCREEN CONTROLLER FEATURES Bergquist Touch Screen User s Guide USB, RS-232, & PS/2 TOUCH SCREEN CONTROLLER Set-Up and Use of Bergquist 5-Wire Controller FEATURES Jumper-selectable RS-232, PS/2 and USB communications options 5-Wire

More information

Drive Side. Host Side. Power. USB Mode Switch

Drive Side. Host Side. Power. USB Mode Switch Table of Contents 1. Pre-Installation Steps 2 1.1 Box Contents 2 1.2 Identifying Parts 2 2. Setup 3 3. Menu Structure/Usage 3 3.1 Select Mode 3 3.2 View Drive Info 3 3.3 View Dock Info 4 3.4 HPA/DCO Auto

More information

User Manual. for the. KT-PCIe-DVI KT-PCIe-DVI

User Manual. for the. KT-PCIe-DVI KT-PCIe-DVI KTD-00766-A Public User Manual Date: 2009-03-19 Page 1 of 11 User Manual for the 820957 KT-PCIe--HDMI 820959 KT-PCIe- Designed primarily for KT690 and KT780 motherboards 820957 KT-PCIe--HDMI 820959 KT-PCIe-

More information

Installation Instructions (KF-2000)

Installation Instructions (KF-2000) VERSION 2005. 10 Installation Instructions (KF-2000) Keico Hightech, Inc. Installation Instructions KF-2000 Keico Hightech Ace Twin Tower I 12 th FL 212-1, Guro-Dong, Guro-Gu Phone +82-2-853-9000 Fax +82-2-830-7809

More information

Quick Start Guide. GV-Video Server

Quick Start Guide. GV-Video Server Quick Start Guide GV-Video Server Thank you for purchasing GV-Video Server. This guide is designed to assist new users in getting immediate results from the GV-Video Server. For advanced information on

More information

AT06467: Getting started with SAM D09/D10/D11. Features. Description. SMART ARM-based Microcontrollers APPLICATION NOTE

AT06467: Getting started with SAM D09/D10/D11. Features. Description. SMART ARM-based Microcontrollers APPLICATION NOTE SMART ARM-based Microcontrollers AT06467: Getting started with SAM D09/D10/D11 APPLICATION NOTE Features Getting started with Atmel SMART SAM D09/D10/D11 microcontrollers and tools Getting started with

More information

Quick Start Guide. GV-Video Server. 1 Introduction. Packing List

Quick Start Guide. GV-Video Server. 1 Introduction. Packing List Introduction Quick Start Guide GV-Video Server Welcome to the GV-Video Server Quick Start Guide. In the following sections, you will learn about the basic installations and configurations of the GV-Video

More information

ACR880 GPRS Portable Smart Card Terminal

ACR880 GPRS Portable Smart Card Terminal ACR880 GPRS Portable Smart Card Terminal Technical Specifications Subject to change without prior notice Table of Contents 1.0. Introduction... 3 2.0. Features... 4 3.0. Supported Card Types... 5 3.1.

More information

USB to Serial Converter manual

USB to Serial Converter manual USB to Serial Converter user manual Model 173384 MAN-173384-UM-1207-02 introduction Thank you for purchasing the MANHATTAN USB to Serial Converter, Model 173384. Modern computers are often not equipped

More information

A33606-PCI Command Line Interface Version: Document Number:

A33606-PCI Command Line Interface Version: Document Number: A33606-PCI Command Line Interface Version: B Document Number: 90-000193 Application Note A33606 Command Line Interface Application Note DOCUMENT 90-000193, VERSION B (5/24/2010) This document describes

More information

EX KVIS RS232/422/485 3-in-1 Serial to USB Adapter (w/ 4KV Isolation, 15KV ESD Surge Protection)

EX KVIS RS232/422/485 3-in-1 Serial to USB Adapter (w/ 4KV Isolation, 15KV ESD Surge Protection) EX-1331-4KVIS RS232/422/485 3-in-1 Serial to USB Adapter (w/ 4KV Isolation, 15KV ESD Surge Protection) 1. Introduction Thank you for purchasing this RS232/422/485 3-in-1 Serial to USB Adapter. It is an

More information

HDMI HDBaseT Extender with IR/RS-232 Control and PoE -100m

HDMI HDBaseT Extender with IR/RS-232 Control and PoE -100m HDMI HDBaseT Extender with IR/RS-232 Control and PoE -100m User Reference Guide Introduction The HDMI HDBaseT Extender with IR/RS-232 Control and PoE - 100m extends HDMI signals up to 100 meter through

More information

Lantronix UDS-10 (CoBox) w/sielox Firmware B03.54 or greater Set-up, Installation, and FAQ Notes

Lantronix UDS-10 (CoBox) w/sielox Firmware B03.54 or greater Set-up, Installation, and FAQ Notes Lantronix UDS-10 () w/sielox Firmware B03.54 or greater Set-up, Installation, and FAQ Notes June 2005 (Updated March 2006) Copyright 2006 by Sielox, LLC. Published by: Sielox 170 East Ninth Avenue Runnemede,

More information

8DCMC1-USB Digital positioning control unit with USB interface for DC brush motors. Quick start guide 8DCMC1-USB

8DCMC1-USB Digital positioning control unit with USB interface for DC brush motors. Quick start guide 8DCMC1-USB 8DCMC1-USB USB powered ultra compact digital positioning control unit for DC brush motors Quick start guide for Windows XP 8/19/2009 Note: Information in this quick start guide is believed to be accurate

More information

USER GUIDE. ATWINC1500 Xplained Pro. Preface

USER GUIDE. ATWINC1500 Xplained Pro. Preface USER GUIDE ATWINC1500 Xplained Pro Preface Atmel ATWINC1500 Xplained Pro is an extension board to the Atmel Xplained Pro evaluation platform. The extension board allows to evaluate the Atmel ATWINC1510/1500

More information

VTR-2000 Evaluation and Product Development Platform. Instruction Sheet SOC Technologies Inc.

VTR-2000 Evaluation and Product Development Platform. Instruction Sheet SOC Technologies Inc. VTR-2000 Evaluation and Product Development Platform Instruction Sheet 2015 SOC Technologies Inc. SOC is disclosing this user manual (the "Documentation") to you solely for use in the development of designs

More information

Sendyne SFP102MOD Precision Current Measurement Module

Sendyne SFP102MOD Precision Current Measurement Module Sendyne Sensing Products Family Sendyne SFP102MOD Precision Current Measurement Module Description The Sendyne SFP102MOD is a shunt-based precision current measurement module. The 100-μΩ shunt with molded

More information

HDMI Optical Extender USER MANUAL VE882 / VE892

HDMI Optical Extender USER MANUAL VE882 / VE892 HDMI Optical Extender USER MANUAL VE882 / VE892 EMC Information FEDERAL COMMUNICATIONS COMMISSION INTERFERENCE STATEMENT: This equipment has been tested and found to comply with the limits for a Class

More information

Single Site Flash Programmer. User Guide. Supports GS1011MIE, GS1011MEx, GS1011MIP, GS1011MxxS, and GS1500M Modules

Single Site Flash Programmer. User Guide. Supports GS1011MIE, GS1011MEx, GS1011MIP, GS1011MxxS, and GS1500M Modules Single Site Flash Programmer User Guide Supports GS1011MIE, GS1011MEx, GS1011MIP, GS1011MxxS, and GS1500M Modules Publication No. GS-SNG-SITE-PRG-UG-001240 Version: 1.0 Date: August 8, 2014 GainSpan Corporate

More information

RS-232 to RS-422/485 Converter with 3KV Isolation Protection

RS-232 to RS-422/485 Converter with 3KV Isolation Protection RS-232 to RS-422/485 Converter with 3KV Isolation Protection (ID-SC0E11-S1) User s Manual 04-0779A - 1 - Introduction The serial converter converts RS 232 signals to RS 422 or RS 485 and extends the communication

More information

DATASHEET. gen4 Programming Adaptor For all gen4 sizes (Picaso and Diablo16) gen4-pa. Document Date: 29 th January 2016 Document Revision: 1.

DATASHEET. gen4 Programming Adaptor For all gen4 sizes (Picaso and Diablo16) gen4-pa. Document Date: 29 th January 2016 Document Revision: 1. For all gen4 sizes (Picaso and Diablo16) DATASHEET Document Date: 29 th January 2016 Document Revision: 1.0 Uncontrolled Copy when printed or downloaded. Please refer to the 4D Systems website for the

More information

IA240/241 Hardware User s Manual

IA240/241 Hardware User s Manual Third Edition, April 2008 www.moxa.com/product 2008 Moxa Inc., all rights reserved. Reproduction without permission is prohibited. Any software described in this manual is furnished under a license agreement

More information

Air Data Unit Reference Manual

Air Data Unit Reference Manual Air Data Unit Reference Manual Page of 5 Version. //8 Table of Contents 5 6 7 8 9 Revision History... Firmware Changelog... Hardware Changelog... Introduction... 5 Part Numbers and Ordering Information...6

More information

HX2VL Development Kit Guide. Doc. # Rev. **

HX2VL Development Kit Guide. Doc. # Rev. ** HX2VL Development Kit Guide Doc. # 001-73960 Rev. ** Cypress Semiconductor 198 Champion Court San Jose, CA 95134-1709 Phone (USA): 800.858.1810 Phone (Intnl): 408.943.2600 http://www.cypress.com Copyrights

More information

Chameleon Labs Model CPS-501 Powered Chassis

Chameleon Labs Model CPS-501 Powered Chassis Chameleon Labs Model CPS-501 Powered Chassis Owner s Manual 704 228 th Avenue NE, # 826 Sammamish, WA 98074 206-264-7602 www.chameleonlabs.com Revision C May 2010 Your Model CPS 501 Powered Chassis has

More information

PAC5523EVK1. Power Application Controllers. PAC5523EVK1 User s Guide. Copyright 2017 Active-Semi, Inc.

PAC5523EVK1. Power Application Controllers. PAC5523EVK1 User s Guide.   Copyright 2017 Active-Semi, Inc. PAC5523EVK1 Power Application Controllers PAC5523EVK1 User s Guide www.active-semi.com Copyright 2017 Active-Semi, Inc. CONTENTS Contents...2 Overview...3 PAC5523EVK1 Resources...5 Pinout and Signal Connectivity...5

More information

Intelligent Devices IDI 1100 Series Technical Manual

Intelligent Devices IDI 1100 Series Technical Manual Intelligent Devices IDI 1100 Series 4411 Suwanee Dam Road, Suite 510 Suwanee, GA 30024 T: (770) 831-3370 support@intelligentdevicesinc.com Copyright 2011, Intelligent Devices, Inc. All Rights Reserved

More information

I-7560U/7561U/7563U. User Manual WARRANTY WARNING COPYRIGHT TRADEMARKS CONTACT US

I-7560U/7561U/7563U. User Manual WARRANTY WARNING COPYRIGHT TRADEMARKS CONTACT US I-7560U/7561U/7563U User Manual USB tto RS--232//422//485 Converrtterrss Verr.. 1..0,, Decc.. 2013 WARRANTY All products manufactured by ICP DAS are warranted against defective materials for a period of

More information