Canon EF/EF-S Lens Controller (LC-2) Aplication Program Interface

Size: px
Start display at page:

Download "Canon EF/EF-S Lens Controller (LC-2) Aplication Program Interface"

Transcription

1 Canon EF/EF-S Lens Controller (LC-2) Aplication Program Interface Programmers Reference Manual Copyright March 2018 Version 1.7.4

2 Notice Copyright 2018 All rights reserved. ISSI does not warrant that the LC-2 API will function properly in every hardware/software software environment. This software is inherently complex, and users are cautioned to verify the results of their work. ISSI has tested the software and reviewed the documentation. ISSI MAKES NO WARANTY OR REP- RESENTATION, EITHER EXPRESSED OR IMPLIED, WITH RESPECT TO THIS SOFTWARE OR DOCU- MENTATION, THEIR QUALITY, PERFORMANCE, MERCHANTIBILITY, OR FITNESS FOR A PARTICU- LAR PURPOSE. AS A RESULT, THIS SOFTWARE AND DOCUMENTATION ARE LICENSED AS IS AND YOU, THE LICENSEE ARE ASSUMING THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE. IN NO EVENT WILL ISSI BE LIABLE FOR DIRECT, INDIRECT, SPECIAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE SOFTWARE OR DOCUMENTATION, even if advised of the possibility of such damages. In particular, API shall have no liability for any programs or data stored or used with ISSI software, including the costs of recovering such programs or data. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1.Redistributions of source code must retain the above copyright notice, this list of conditions and the above disclaimer. 2.Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the above disclaimer listed in this license in the documentation and/or other materials provided with the distribution. 3.Neither the name of the copyright holders nor the names of its contributors may be used to endorse or promote products derived from this API without specific prior written permission. ISSI Contact Information 7610 McEwen Road Dayton, OH Ph.: (937) Fax: (937) Website issi-sales@innssi.com 2

3 ISSI EF/EF-S Lens Controller-2 API (API version 1.7.4) API based on UDP protocol, 1339/UDP port is used for communication. Action: Get controller f/w version Command: ver (hex: 76:65:72) Answer: ISSI LC-2=1x.y (s/n:150xx) Action: Change controller IP address to Command: ChangeIP= Answer: no answer, controller will set IP and restart Action: Initialize lens, and get current motors values and ranges (aperture ranges would change when zoom changed) Command: ping (hex: 70:69:6e:67) Answer: contains 7 packets: #1 zrange=minx,max where minx minimum zoom value, maxx maximum zoom value #2 frange=minz,maxz where miny minimum focus value, maxy maximum focus value #3 arange=miny,maxy where minz minimum aperture value, maxz maximum aperture value #4 Current=XX,YY,ZZ where XX current zoom value, YY current focus value, ZZ- current aperture value #5 AF=X where X =1 if AF selected on lens and 0 if MF selected. #6 IS=X where X=1 if Image Stabilization(IS) switch is enabled, 0 if disabled or lens have no IS #7 ISactive=X where X=1 if IS is activated and 0 if it deactivated nolensfound - in case no lens found Action: Move Focus motor on X units Command: movefocus=x where X could be as positive as negative values. Answer: Focus=Y, where Y current value of Focus motor or errorfocus when focus value is not reachable; Action: Move Aperture motor on X step (one-quarter-stop f-number) Command: moveaper=x where X could be as positive as negative values. Answer: Iris=Y, where Y current value of Aperture or erroraper (in old f/w) and erroraperlimits when aperture value is not reachable 3

4 Action: Set desired value for Focus motor Command: setfocus=x where X is positive value Answer: Focus =XXX, where XXX is the current value, and next packet focusdone - indicate that desired focus is set (for non USM lens could take more time) Action: Set desired value for aperture (in f-number) Command: setaper=x where X is in quarter-stop f-number scale, please use pre-calculated f-stop numbers: [1.0, 1.1, 1.2, 1.3, 1.4, 1.5, 1.7, 1.8, 2.0, 2.2, 2.4, 2.6, 2.8, 3.1, 3.4, 3.7, 4.0, 4.4, 4.8, 5.2, 5.6, 6.2, 6.7, 7.3, 8.0, 8.7, 9.5, 10.4, 11.3, 12.3, 13.5, 14.7, 16, 17.4, 19, 20.7, 22.6, 24.7, 26.9, 29.3, 32.0, 34.9, 38.1, 41.5, 45.3, 49.4, 53.8, 58.7] for firmware and erlier, and [1.0, 1.1, 1.3, 1.4, 1.6, 1.8, 2.0, 2.2, 2.5, 2.8, 3.2, 3.5, 4.0, 4.5, 5.0, 5.6, 6.3, 7.1, 8.0, 9.0, 10, 11, 13, 14, 16, 18, 20, 22, 25, 29, 32, 36, 40, 45, 51, 57, 64, 72,80, 90] for f/w versions after Answer: Iris=Y, where Y current value of Aperture, if X is out of range will answer with erroraper- Limits message Action: detect IS (Image Stabilization) availability Command: isis Answer: IS=Y where Y could be 0 or 1, 0 - means lens does not have IS function, 1 - lens have IS function. Also will answer 0 if IS switch is in OFF position. Action: activate IS (Image Stabilization) function Command: enableis=x Answer: ISactive=Y where X is the amount of seconds to keep IS active, from [0-3600]. 0 - disable IS, and Y is 0 or 1 - current IS status Action: Set nickname for LC (stored in LC memory) Command: setname=xxxxxxx where XXXXXXX is 7-symbols name for this controller. Answer: no answer Action: Get LC nickname (stored in LC memory) Command: getname Answer: NAME=XXXXXX Action: soft restart LC-2 Command: Reboot (hex: 52:65:62:6f:6f:74) Answer: OK Action: hard restart LC-2 Command: Restart (hex: 52:65:74:73:74:61:72:74) Answer: OK 4

5 Action: explore focus limits Command: refrange Answer: frange=miny,maxy where miny minimum focus value, maxy maximum focus value Action: get lens name Command: getlens Answer: Lens=XXX, where XXX is the lens name stored in internal lens memory, lens should support this command. Action: alternative way to set lens focus, lens will move focus motor to minimum position, reset encoder counter and then position the focus. Helps to suppress accumulative lens drift effect for some lens. Command: setfocus2=x where X is positive value Answer: Focus =XXX, where XXX is the current value, and next packet focusdone - indicate that desired focus is set (for non USM lens could take more time) Perl Example Script Send Command #!/usr/bin/perl -w use IO::Socket; use strict; my $sock = IO::Socket::INET->new( Proto => udp, PeerPort => 1339, PeerAddr => , ) or die Could not create socket: $!\n ; my $size = $sock->send($argv[0]) or die Send error: $!\n ; print $size bytes sent\n ; my $response = ; $sock->recv( $response, 1024 ); print Response: $response ; $sock->close(); Usage:./udpsend.pl setfocus=1000 will send command setfocus=1000 to to port 1339/UDP PYTHON Example Script Send Command import socket UDP_IP = UDP_PORT = 1339 print ( ISSI :: Canon Pyhton Script Example\n ) MESSAGE = setfocus=1000 sock = socket.socket(socket.af_inet, socket.sock_dgram) # UDP sock.sendto(message.encode(), (UDP_IP, UDP_PORT)) try: while True: data, addr = sock.recvfrom(1024) if not data: break print ( Received:, data) except socket.error: print( ) sock.close() Usage:./udpsend.py will send command setfocus=1000 to to port 1339/UDP 5

TED-Kit 2, Release Notes

TED-Kit 2, Release Notes TED-Kit 2 3.6.0 December 5th, 2014 Document Information Info Content Keywords TED-Kit 2, Abstract This document contains the release notes for the TED-Kit 2 software. Contact information For additional

More information

User manual Automatic Material Alignment Beta 2

User manual Automatic Material Alignment Beta 2 www.cnccamera.nl User manual Automatic Material Alignment For integration with USB-CNC Beta 2 Table of Contents 1 Introduction... 4 1.1 Purpose... 4 1.2 OPENCV... 5 1.3 Disclaimer... 5 2 Overview... 6

More information

BlinkRC User Manual. 21 December Hardware Version 1.1. Manual Version 2.0. Copyright 2010, Blink Gear LLC. All rights reserved.

BlinkRC User Manual. 21 December Hardware Version 1.1. Manual Version 2.0. Copyright 2010, Blink Gear LLC. All rights reserved. BlinkRC 802.11b/g WiFi Servo Controller with Analog Feedback BlinkRC User Manual 21 December 2010 Hardware Version 1.1 Manual Version 2.0 Copyright 2010, Blink Gear LLC. All rights reserved. http://blinkgear.com

More information

Bosch Smart Home. Door/Window Contact Instruction Manual

Bosch Smart Home. Door/Window Contact Instruction Manual Bosch Smart Home Door/Window Contact Instruction Manual Start making your home smart! Please be sure to install the Bosch Smart Home Controller first. Please ensure that you have a Bosch Smart Home Controller

More information

X3D Graphics for Web Authors. X3D-Edit Update. Web3D Consortium Korea Chapter Seoul, 7-8 December Don Brutzman

X3D Graphics for Web Authors. X3D-Edit Update. Web3D Consortium Korea Chapter Seoul, 7-8 December Don Brutzman X3D Graphics for Web Authors X3D-Edit Update Web3D Consortium Korea Chapter Seoul, 7-8 December 2009 Don Brutzman Naval Postgraduate School Monterey California USA Motivation Teach X3D to anyone who can

More information

AUTOTUNE USER GUIDE. R8000 Series Communications Systems Analyzer

AUTOTUNE USER GUIDE. R8000 Series Communications Systems Analyzer R8000 Series Communications Systems Analyzer AUTOTUNE USER GUIDE Portable Radios Motorola APX 2000 Motorola APX 4000 Motorola APX 6000 Motorola APX 7000 Mobile Radios Motorola APX 2500 Motorola APX 4500

More information

The Frequency Divider component produces an output that is the clock input divided by the specified value.

The Frequency Divider component produces an output that is the clock input divided by the specified value. PSoC Creator Component Datasheet Frequency Divider 1.0 Features Divides a clock or arbitrary signal by a specified value. Enable and Reset inputs to control and align divided output. General Description

More information

4590 Tank Side Monitor. Service Manual. Mark/Space Communication Protocol. Software Version v2.03 SRM009FVAE0808

4590 Tank Side Monitor. Service Manual. Mark/Space Communication Protocol.  Software Version v2.03 SRM009FVAE0808 SRM009FVAE0808 4590 Tank Side Monitor Mark/Space Communication Protocol Service Manual Software Version v2.03 www.varec.com Varec, Inc. 5834 Peachtree Corners East, Norcross (Atlanta), GA 30092 USA Tel:

More information

The BioBrick Public Agreement. DRAFT Version 1a. January For public distribution and comment

The BioBrick Public Agreement. DRAFT Version 1a. January For public distribution and comment The BioBrick Public Agreement DRAFT Version 1a January 2010 For public distribution and comment Please send any comments or feedback to Drew Endy & David Grewal c/o endy@biobricks.org grewal@biobricks.org

More information

Pokémon Moon. Basic Information. Into a World of Adventure. About Communications

Pokémon Moon. Basic Information. Into a World of Adventure. About Communications Pokémon Moon 1 Important Information Basic Information 2 Information-Sharing Precautions 3 Online Features 4 Note Parents Guardians In a World of Adventure 5 How Play 6 Saving Erasing Data About Communications

More information

CDT. Service and Installation Manual. Manual Revision Oct 2014

CDT. Service and Installation Manual. Manual Revision Oct 2014 CDT Service and Installation Manual Manual Revision Oct 2014 2014 Cimarron Technologies Corp., Escondido, CA, USA. All rights reserved. No part of this manual may be reproduced in any way without the express

More information

Transmitter. User Manual. Firmware version 1.0 and greater

Transmitter. User Manual. Firmware version 1.0 and greater ProRF SPC Transmitter User Manual Firmware version 1.0 and greater FCC NOTICE This equipment has been tested and found to comply with the limits for a class B digital device, pursuant to part 15 of the

More information

AN NTAG21xF, Field detection and sleep mode feature. Rev July Application note COMPANY PUBLIC. Document information

AN NTAG21xF, Field detection and sleep mode feature. Rev July Application note COMPANY PUBLIC. Document information Document information Info Content Keywords NTAG, Field detection pin, Sleep mode Abstract It is shown how the field detection pin and its associated sleep mode function can be used on the NTAG21xF-family

More information

TI Designs: Biometric Steering Wheel. Amy Ball TIDA-00292

TI Designs: Biometric Steering Wheel. Amy Ball TIDA-00292 www.ti.com 2 Biometric Steering Wheel - -Revised July 2014 www.ti.com TI Designs: Biometric Steering Wheel - -Revised July 2014 Biometric Steering Wheel 3 www.ti.com 4 Biometric Steering Wheel - -Revised

More information

Low Voltage Brushed Motor System

Low Voltage Brushed Motor System Low Voltage Brushed Motor System Tests performed: 1. RPM vs Output Voltages 2. Thermal Imaging 3. Output Voltage, Output Current, and Direction Voltage for100% duty Cycle a. Forward Direction b. Reverse

More information

8Mb (1M x 8) One-time Programmable, Read-only Memory

8Mb (1M x 8) One-time Programmable, Read-only Memory Features Fast read access time 90ns Low-power CMOS operation 100µA max standby 40mA max active at 5MHz JEDEC standard packages 32-lead PLCC 32-lead PDIP 5V 10% supply High-reliability CMOS technology 2,000V

More information

Programming with network Sockets Computer Science Department, University of Crete. Manolis Surligas October 16, 2017

Programming with network Sockets Computer Science Department, University of Crete. Manolis Surligas October 16, 2017 Programming with network Sockets Computer Science Department, University of Crete Manolis Surligas surligas@csd.uoc.gr October 16, 2017 Manolis Surligas (CSD, UoC) Programming with network Sockets October

More information

UIO Digital I/Os & DAQ Board User Manual

UIO Digital I/Os & DAQ Board User Manual UIO-369 5 Digital I/Os & DAQ Board User Manual /3 UIO-369 Digital Inputs/Outputs & DAQ board with 5 channels and USB/RS3/Bluetooth/RF connectivity. Welcome to the world of Computer Automation. This Digital

More information

TN LPC1800, LPC4300, MxMEMMAP, memory map. Document information

TN LPC1800, LPC4300, MxMEMMAP, memory map. Document information Rev. 1 30 November 2012 Technical note Document information Info Keywords Abstract Content LPC1800, LPC4300, MxMEMMAP, memory map This technical note describes available boot addresses for the LPC1800

More information

SRT Marine Technology. LD2342 V1.4 Page 1 of 22

SRT Marine Technology. LD2342 V1.4 Page 1 of 22 LD2342 V1.4 Page 1 of 22 LD2342 V1.4 Page 2 of 22 2 LD2342 V1.4 Page 3 of 22 GENERAL WARNINGS All marine Automatic Identification System (AIS) units utilise a satellite based system such as the Global

More information

AUTOTUNE USER GUIDE. R8000 Series Communications Systems Analyzer. Motorola ASTRO XTL Series Motorola ASTRO XTS Series

AUTOTUNE USER GUIDE. R8000 Series Communications Systems Analyzer. Motorola ASTRO XTL Series Motorola ASTRO XTS Series R8000 Series Communications Systems Analyzer AUTOTUNE USER GUIDE Motorola ASTRO XTL Series Motorola ASTRO XTS Series Freedom Communication Technologies 2002 Synergy Blvd, Suite 200 Kilgore, Texas 75662

More information

Digi-Stop. Installation & Operation

Digi-Stop. Installation & Operation Digi-Stop Installation & Operation WARRANTY Accurate Technology, Inc. warrants the ProScale Systems against defective parts and workmanship for 1 year commencing from the date of original purchase. Upon

More information

Firmware Version d & higher Installation & Operation

Firmware Version d & higher Installation & Operation DIGI LCD Readout Firmware Version d 2.100 & higher Installation & Operation Warranty Accurate Technology, Inc., warrants this product against defective parts and workmanship for 1 year commencing from

More information

UM OM29263ADK Quick start guide antenna kit COMPANY PUBLIC. Document information

UM OM29263ADK Quick start guide antenna kit COMPANY PUBLIC. Document information Rev. 1.0 8 February 2018 User manual 465010 COMPANY PUBLIC Document information Information Keywords Abstract Content NFC antenna, antenna kit, CLEV663B, CLRC663 plus, NFC Antenna Development Kit, OM29263ADK

More information

ProScale. Compact LCD Readout. Installation & Operation

ProScale. Compact LCD Readout. Installation & Operation ProScale Compact LCD Readout Installation & Operation WARRANTY Accurate Technology, Inc. warrants the ProScale Measurement Systems against defective parts and workmanship for 1 year commencing from the

More information

ProScale Compact LCD Readout. Operation. Firmware version C 2.xxx and higher

ProScale Compact LCD Readout. Operation. Firmware version C 2.xxx and higher ProScale Compact LCD Readout Operation Firmware version C 2.xxx and higher WARRANTY Accurate Technology, Inc., warrants this product against defective parts and workmanship for 1 year commencing from the

More information

ShortLink Wide Band Antenna Family Models: SLA150-SMA, SLA150-UFL. Wide Band Antenna Family SLA150 Datasheet

ShortLink Wide Band Antenna Family Models: SLA150-SMA, SLA150-UFL. Wide Band Antenna Family SLA150 Datasheet ShortLink Wide Band Antenna Family Models: SLA150-SMA, SLA150-UFL Patent-pending omnidirectional antenna, based on a hybrid-design for market leading performance. Excellent efficiency over a very wide

More information

Digi-Stop. User Manual for: Digi-Stop. Digital Readout Firmware version d & Higher

Digi-Stop. User Manual for: Digi-Stop. Digital Readout Firmware version d & Higher Digi-Stop User Manual for: Digi-Stop Digital Readout Firmware version d 2.000 & Higher Warranty Accurate Technology, Inc., warrants this product against defective parts and workmanship for 1 year commencing

More information

GM8036 Laser Sweep Optical Spectrum Analyzer. Programming Guide

GM8036 Laser Sweep Optical Spectrum Analyzer. Programming Guide GM8036 Laser Sweep Optical Spectrum Analyzer Programming Guide Notices This document contains UC INSTRUMENTS CORP. proprietary information that is protected by copyright. All rights are reserved. This

More information

Firmware Version d & higher Installation & Operation

Firmware Version d & higher Installation & Operation DIGI LCD Readout Firmware Version d 2.100 & higher Installation & Operation READOUT SERIAL # SCALE SERIAL # TO MAXIMIZE THE ACCURACY OF YOUR SYSTEM, THE FOLLOWING PROGRAMMING PARAMETER HAS BEEN PRE-CONFIGURED

More information

LD2342 USWM V1.6. LD2342 V1.4 Page 1 of 18

LD2342 USWM V1.6. LD2342 V1.4 Page 1 of 18 LD2342 USWM V1.6 LD2342 V1.4 Page 1 of 18 GENERAL WARNINGS All Class A and Class B marine Automatic Identification System (AIS) units utilize a satellite based system such as the Global Positioning Satellite

More information

UM10950 Start-up Guide for FRDM-KW41Z Evaluation Board Bluetooth Paring example with NTAG I²C plus Rev February

UM10950 Start-up Guide for FRDM-KW41Z Evaluation Board Bluetooth Paring example with NTAG I²C plus Rev February Start-up Guide for FRDM-KW41Z Evaluation Board Bluetooth Paring example with NTAG I²C plus Document information Info Content Keywords NTAG I²C plus, FRDM-KW41Z Abstract This document gives a start-up guide

More information

ADC Guide, Part 1 The Ideal ADC

ADC Guide, Part 1 The Ideal ADC ADC Guide, Part 1 The Ideal ADC By Sachin Gupta and Akshay Phatak, Cypress Semiconductor Analog to Digital Converters (ADCs) are one of the most commonly used blocks in embedded systems. Applications of

More information

AN NHS3xxx Temperature sensor calibration. Document information

AN NHS3xxx Temperature sensor calibration. Document information Rev. 2 12 September 2016 Application note Document information Info Keywords Abstract Content Temperature sensor, calibration This application note describes the user calibration of the temperature sensor.

More information

DATASHEET 4D SYSTEMS. Arduino Display Module Pack TURNING TECHNOLOGY INTO ART. Featuring a 2.4 Display Module ulcd-24-ptu-ar

DATASHEET 4D SYSTEMS. Arduino Display Module Pack TURNING TECHNOLOGY INTO ART. Featuring a 2.4 Display Module ulcd-24-ptu-ar TURNING TECHNOLOGY INTO ART DATASHEET Arduino Display Module Pack Featuring a 2.4 Display Module Document Date: 24 th January 2014 Document Revision: 1.4 Uncontrolled Copy when printed or downloaded. Please

More information

AN NFC, PN533, demo board. Application note COMPANY PUBLIC. Rev July Document information

AN NFC, PN533, demo board. Application note COMPANY PUBLIC. Rev July Document information Rev. 2.1 10 July 2018 Document information Info Keywords Abstract Content NFC, PN533, demo board This document describes the. Revision history Rev Date Description 2.1. 20180710 Editorial changes 2.0 20171031

More information

The EDR Aerial Photo Decade Package

The EDR Aerial Photo Decade Package Wickenburg/Forepaugh W. US Highway 60/N. 436th Ave Wickenburg, AZ 85390 Inquiry Number: April 22, 2011 The Aerial Photo Decade Package Aerial Photo Decade Package Environmental Data Resources, Inc. ()

More information

Using the Triscend LiteLoader Software

Using the Triscend LiteLoader Software Using the Triscend LiteLoader Software January 2002 Version 1.0 Introduction The Triscend LiteLoader is a set of ANSI-C software routines that allow a host processor to program a Triscend E5 CSoC device,

More information

IMPORTANT NOTICE Texas Instruments (TI) reserves the right to make changes to its products or to discontinue any semiconductor product or service without notice, and advises its customers to obtain the

More information

AN PR533 USB stick - Evaluation board. Application note COMPANY PUBLIC. Rev May Document information

AN PR533 USB stick - Evaluation board. Application note COMPANY PUBLIC. Rev May Document information PR533 USB stick - Evaluation board Document information Info Content Keywords PR533, CCID, USB Stick, Contactless Reader Abstract This application notes describes the PR533 evaluation board delivered in

More information

AN High-performance PCB antennas for ZigBee networks. Document information. Keywords

AN High-performance PCB antennas for ZigBee networks. Document information. Keywords Rev. 1.0 22 May 2015 Application note Document information Info Content Keywords Meander antenna, Inverted-F antenna, Dipole antenna, JN516x, ZigBee Abstract This application note describes three designs

More information

The KolourPaint Handbook. Thurston Dang, Clarence Dang, and Lauri Watts

The KolourPaint Handbook. Thurston Dang, Clarence Dang, and Lauri Watts Thurston Dang, Clarence Dang, and Lauri Watts 2 Contents 1 Introduction 1 2 Using KolourPaint 2 3 Tools 3 3.1 Tool Reference............................. 3 3.2 Brush.................................. 4

More information

AN UBA2015/UBA2017 saturating inductor support during ignition. Document information

AN UBA2015/UBA2017 saturating inductor support during ignition. Document information UBA2015/UBA2017 saturating inductor support during ignition Rev. 1 16 August 2012 Application note Document information Info Keywords Abstract Content UBA2015, UBA2017, saturating resonant tank inductor

More information

The KolourPaint Handbook. Thurston Dang, Clarence Dang, and Lauri Watts

The KolourPaint Handbook. Thurston Dang, Clarence Dang, and Lauri Watts Thurston Dang, Clarence Dang, and Lauri Watts 2 Contents 1 Introduction 1 2 Using KolourPaint 2 3 Tools 3 3.1 Tool Reference............................. 3 3.2 Brush.................................. 4

More information

Digi-Fence. User Manual for: Digi-Fence (all models) Digital Readout Firmware version d & Higher

Digi-Fence. User Manual for: Digi-Fence (all models) Digital Readout Firmware version d & Higher Digi-Fence User Manual for: Digi-Fence (all models) Digital Readout Firmware version d 2.000 & Higher Warranty Accurate Technology, Inc., warrants this product against defective parts and workmanship for

More information

TDK SPICE Netlist Library

TDK SPICE Netlist Library TDK SPICE Netlist Library ~s for inductor products~ TDK-EPC Corporation Technical Service Center July, 2014 Type of s 3 types of SPICE s are provided for inductor(coil) products. Type of Model Simple Model

More information

Universal Serial Bus Type-C and Power Delivery Source Power Requirements Test Specification

Universal Serial Bus Type-C and Power Delivery Source Power Requirements Test Specification Universal Serial Bus Type-C and Power Delivery Source Power Requirements Test Specification Date: May 20, 2017 Revision: 0.72 Copyright 2015-2017, USB Implementers Forum, Inc. All rights reserved. A LICENSE

More information

Hajime Nakamura and Takashi Asakawa. Joseph Ting. March License Agreement. Contents

Hajime Nakamura and Takashi Asakawa. Joseph Ting. March License Agreement. Contents Device Support For SL1000 Digitizer Modules DRAFT 1.0 Hajime Nakamura and Takashi Asakawa Yokogawa Electric Corporation, Japan Joseph Ting Yokogawa Corporation of America, USA March 2009 License Agreement

More information

ATF15xx Power-On Reset Hysteresis Feature. Abstract. Features. Complex Programmable Logic Device APPLICATION NOTE

ATF15xx Power-On Reset Hysteresis Feature. Abstract. Features. Complex Programmable Logic Device APPLICATION NOTE Complex Programmable Logic Device ATF15xx Power-On Reset Hysteresis Feature APPLICATION NOTE Abstract For some applications, a larger power reset hysteresis is required to prevent an Atmel ATF15xx Complex

More information

GTX 320A. Mode A/C Transponder. pilot s guide

GTX 320A. Mode A/C Transponder. pilot s guide GTX 320A Mode A/C Transponder pilot s guide 2000 GARMIN Corporation GARMIN International, Inc. 1200 East 151 st Street, Olathe, Kansas 66062, U.S.A. Tel. 913/397.8200 or 800/800.1020 Fax 913/397.8282 GARMIN

More information

UCP-Config Program Version: 3.28 HG A

UCP-Config Program Version: 3.28 HG A Program Description HG 76342-A UCP-Config Program Version: 3.28 HG 76342-A English, Revision 01 Dev. by: C.M. Date: 28.01.2014 Author(s): RAD Götting KG, Celler Str. 5, D-31275 Lehrte - Röddensen (Germany),

More information

W H I T E P A P E R. Analog Signal Chain Calibration

W H I T E P A P E R. Analog Signal Chain Calibration W H I T E P A P E R Gautam Das G, Applications Engineer & Praveen Sekar, Applications Engineer Senior Cypress Semiconductor Corp. Analog Signal Chain Calibration Abstract Analog signal chains are prone

More information

Operation/Reference Guide NXP-CPI16. NetLinx Custom Panel Interface. Custom Panel Interfaces

Operation/Reference Guide NXP-CPI16. NetLinx Custom Panel Interface. Custom Panel Interfaces Operation/Reference Guide NXP-CPI16 NetLinx Custom Panel terface Custom Panel terfaces Last Revised: 5/18/2012 AMX Limited Warranty and Disclaimer AMX warrants its products to be free of defects in material

More information

Digi-Fence. User Manual (all models) For All Models with Digital Readout Firmware version d & Higher

Digi-Fence. User Manual (all models) For All Models with Digital Readout Firmware version d & Higher Digi-Fence User Manual (all models) For All Models with Digital Readout Firmware version d 2.000 & Higher Warranty Accurate Technology, Inc., warrants this product against defective parts and workmanship

More information

AN Energy Harvesting with the NTAG I²C and NTAG I²C plus. Application note COMPANY PUBLIC. Rev February Document information

AN Energy Harvesting with the NTAG I²C and NTAG I²C plus. Application note COMPANY PUBLIC. Rev February Document information Rev. 1.0 1 February 2016 Application note COMPANY PUBLIC Document information Info Content Keywords NTAG I²C, NTAG I²C plus, Energy Harvesting Abstract Show influencing factors and optimization for energy

More information

AN12165 QN908x RF Evaluation Test Guide

AN12165 QN908x RF Evaluation Test Guide Rev. 1 May 2018 Application note Document information Info Keywords Abstract Content GFSK, BLE, RF, Tx power, modulation characteristics, frequency offset and drift, frequency deviation, sensitivity, C/I

More information

TRACE APPLICATION NOTE VERSION MB86R01 'JADE' & GREENHILLS TOOLCHAIN. Fujitsu Microelectronics Europe Application Note

TRACE APPLICATION NOTE VERSION MB86R01 'JADE' & GREENHILLS TOOLCHAIN. Fujitsu Microelectronics Europe Application Note Fujitsu Microelectronics Europe Application Note TRACE MB86R01 'JADE' & GREENHILLS TOOLCHAIN APPLICATION NOTE VERSION 0.01 16.9.2008 Revision History Revision History Date 09/15/2008 0.1 tk First draft

More information

WIEG4PRT-A Four port Wiegand to RS232 Converter.

WIEG4PRT-A Four port Wiegand to RS232 Converter. WIEG4PRT-A Four port Wiegand to RS232 Converter. Designed for embedding into products manufactured by third-parties, this Wiegand to RS232 converter is designed with 4 ports for taking up to 4 Wiegand

More information

WIE232-A Dual Wiegand to RS232 Converter.

WIE232-A Dual Wiegand to RS232 Converter. WIE232-A Dual Wiegand to RS232 Converter. Designed for embedding into products manufactured by third-parties, this Wiegand to RS232 converter is designed with 2 ports for taking up to 2 Wiegand sources

More information

TIDA Test Report 1/4/2016. TIDA Test Report 1/4/2016

TIDA Test Report 1/4/2016. TIDA Test Report 1/4/2016 1/4/2016 TIDA-00808 Test Report 1/4/2016 Table of Contents I. Overview... 3 II. Power Specification... 3 III. Reference Board... 4 IV. Max Output Current... 5 V. Efficiency... 5 VI. Thermal... 6 VII. Power

More information

DRG-Series. Digital Radio Gateway. Tait P25 CCDI Tier-2 (TM9400 Series Mobile Radio) Digital Radio Supplement

DRG-Series. Digital Radio Gateway. Tait P25 CCDI Tier-2 (TM9400 Series Mobile Radio) Digital Radio Supplement DRG-Series Digital Radio Gateway Tait P25 CCDI Tier-2 (TM9400 Series Mobile Radio) Digital Radio Supplement DRG-Series Digital Radio Gateway Tait P25 CCDI Tier-2 (TM9400 Series Mobile Radio) Digital Radio

More information

Parameter Value Unit Notes

Parameter Value Unit Notes Features Single axis measurement from ±5 to ±60 High resolution and accuracy. Low temperature drift, with optional temperature compensation to further improve temperature performance. RS232 and RS485 output

More information

TO OUR VALUED CUSTOMERS

TO OUR VALUED CUSTOMERS MINI-32 The whole PIC32 development board fitted in DIP26 form factor, containing powerful PIC32MX534F064H microcontroller. It s pin compatible with PIC16F887 and PIC18(L)F45K20 microcontrollers! MINI

More information

RC-WIFI CONTROLLER USER MANUAL

RC-WIFI CONTROLLER USER MANUAL RC-WIFI CONTROLLER USER MANUAL In the rapidly growing Internet of Things (IoT), applications from personal electronics to industrial machines and sensors are getting wirelessly connected to the Internet.

More information

EDE1204 Bi-Polar Stepper Motor IC

EDE1204 Bi-Polar Stepper Motor IC EDE1204 Bi-Polar Stepper Motor IC EDE1204 Coil B Control Signal 1 Coil B Coil A 18 Coil A Control Signal Coil B Control Signal 2 Coil B Coil A 17 Coil A Control Signal Connect to +5V DC 3 +5V OSC1 16 Oscillator

More information

R_ Driving LPC1500 with EPSON Crystals. Rev October Document information. Keywords Abstract

R_ Driving LPC1500 with EPSON Crystals. Rev October Document information. Keywords Abstract Rev. 1.0 06 October 2015 Report Document information Info Keywords Abstract Content LPC15xx, RTC, Crystal, Oscillator Characterization results of EPSON crystals with LPC15xx MHz and (RTC) 32.768 khz Oscillator.

More information

UM DALI getting started guide. Document information

UM DALI getting started guide. Document information Rev. 1 6 March 2012 User manual Document information Info Keywords Abstract Content LPC111x, LPC1343, ARM, Cortex M0/M3, DALI, USB, lighting control, USB to DALI interface. This user manual explains how

More information

2320 cousteau court

2320 cousteau court Technical Brief AN139 Rev C22 2320 cousteau court 1-760-444-5995 sales@raveon.com www.raveon.com RV-M7 GX with TDMA Data By John Sonnenberg Raveon Technologies Corporation Overview The RV-M7 GX radio modem

More information

Mario Party: The Top 100. How to Play

Mario Party: The Top 100. How to Play Mario Party: The Top 100 1 Important Information How to Play 2 About this Game 3 Saving and Deleting Data 4 Play With Friends (Local) 5 Play With Friends (Download) Basic Information 6 amiibo 7 Information-Sharing

More information

TDK SPICE Netlist Library

TDK SPICE Netlist Library TDK SPICE Netlist Library ~models for multilayer ceramic capacitors~ TDK-EPC Corporation Technical Service Center July, 2014 Type of models 3 types of SPICE models are provided for multilayer ceramic capacitors

More information

AN12232 QN908x ADC Application Note

AN12232 QN908x ADC Application Note Rev. 0.1 August 2018 Application note Document information Info Content Keywords QN908x, BLE, ADC Abstract This application note describes the ADC usage. Revision history Rev Date Description 0.1 2018/08

More information

AUTOMATION. Operator s Manual. IRU-2xx4/3xx4 Series. Rev. A2, 11/08 Doc

AUTOMATION. Operator s Manual. IRU-2xx4/3xx4 Series. Rev. A2, 11/08 Doc AUTOMATION P R O D U C T S G R O U P, I N C. Operator s Manual IRU-2xx4/3xx4 Series Rev. A2, 11/08 Doc. 9002673 Tel: 1/888/525-7300 Fax: 1/435/753-7490 www.apgsensors.com E-mail: sales@apgsensors.com IRU-2xx4/3xx4

More information

AN PN7150X Frequently Asked Questions. Application note COMPANY PUBLIC. Rev June Document information

AN PN7150X Frequently Asked Questions. Application note COMPANY PUBLIC. Rev June Document information Document information Info Content Keywords NFC, PN7150X, FAQs Abstract This document intents to provide answers to frequently asked questions about PN7150X NFC Controller. Revision history Rev Date Description

More information

SATELLITE RADIO OWNER'S MANUAL. Type III Radio

SATELLITE RADIO OWNER'S MANUAL. Type III Radio SATELLITE OWNER'S MANUAL Type III Radio Table of Contents Congratulations!... 3 Operational Statement... 3 FCC Statement... 4 Activating Your Subscription... 5 Type III Radio... 6 Overview of Controls...

More information

The EDR Aerial Photo Decade Package

The EDR Aerial Photo Decade Package I-710 Corridor - Segment 5 I-710 Corridor - Segment 5 Los Angeles County, CA 90201 Inquiry Number: March 25, 2009 The EDR Aerial Photo Decade Package EDR Aerial Photo Decade Package Environmental Data

More information

Ready DIP28 PIC. with. socket

Ready DIP28 PIC. with. socket Ready for PIC with DIP28 socket Best solution for fast and simple development of applications using 28-pin PIC MCUs. Due to the special white plastic casing the Ready for PIC board can be quickly turned

More information

AN MIFARE Plus Card Coil Design. Application note COMPANY PUBLIC. Rev April Document information

AN MIFARE Plus Card Coil Design. Application note COMPANY PUBLIC. Rev April Document information MIFARE Plus Card Coil Design Document information Info Content Keywords Contactless, MIFARE Plus, ISO/IEC 1443, Resonance, Coil, Inlay Abstract This document provides guidance for engineers designing magnetic

More information

UniTraQ OEM Module. GT-310F (Flash version) Fast Acquisition Enhanced Sensitivity 12 Channel GPS Sensor Module. Features

UniTraQ OEM Module. GT-310F (Flash version) Fast Acquisition Enhanced Sensitivity 12 Channel GPS Sensor Module. Features UniTraQ OEM Module Features 12 parallel channel GPS receiver 4000 simultaneous time-frequency search bins SBAS (WAAS, EGNOS) support Programmable Flash version -140dBm acquisition sensitivity -150dBm tracking

More information

DRG-Series. Digital Radio Gateway. Hytera DMR USB Donor (Tier-2) Digital Radio Supplement

DRG-Series. Digital Radio Gateway. Hytera DMR USB Donor (Tier-2) Digital Radio Supplement DRG-Series Digital Radio Gateway Hytera DMR USB Donor (Tier-2) Digital Radio Supplement DRG-Series Digital Radio Gateway Hytera DMR USB Donor (Tier-2) Digital Radio Supplement 2015 Omnitronics Pty Ltd.

More information

VT1586A Rack Mount Terminal Panel Installation and User s Manual

VT1586A Rack Mount Terminal Panel Installation and User s Manual VT1586A Rack Mount Terminal Panel Installation and User s Manual Manual Part Number: 82-0095-000 Rev. June 16, 2003 Printed in U.S.A. Certification VXI Technology, Inc. certifies that this product met

More information

Internal B-EN Rev A. User Guide. Leaf Aptus.

Internal B-EN Rev A. User Guide. Leaf Aptus. User Guide Internal 731-00399B-EN Rev A Leaf Aptus www.creo.com/leaf Copyright Copyright 2005 Creo Inc. All rights reserved. No copying, distribution, publication, modification, or incorporation of this

More information

IP-PSK-DEMOD4. BPSK, QPSK, 8-PSK Demodulator for FPGA FEATURES DESCRIPTION APPLICATIONS HARDWARE SUPPORT DELIVERABLES

IP-PSK-DEMOD4. BPSK, QPSK, 8-PSK Demodulator for FPGA FEATURES DESCRIPTION APPLICATIONS HARDWARE SUPPORT DELIVERABLES BPSK, QPSK, 8-PSK Demodulator for FPGA v1.3 FEATURES Multi-mode Phase Shift Keyed demodulator supports BPSK, QPSK, 8-PSK Symbol rates up to 682.5 KSPS Matched filtering with programmable Root Raised Cosine

More information

RAGE TOOL KIT FAQ. Terms and Conditions What legal terms and conditions apply to the RAGE Tool Kit?

RAGE TOOL KIT FAQ. Terms and Conditions What legal terms and conditions apply to the RAGE Tool Kit? RAGE TOOL KIT FAQ Terms and Conditions What legal terms and conditions apply to the RAGE Tool Kit? Editing and Building Maps What are the recommended system specifications for running the RAGE Tool Kit?

More information

Installation and User Guide. FlexIR TM NIR Fiber Optic Accessory

Installation and User Guide. FlexIR TM NIR Fiber Optic Accessory Installation and User Guide FlexIR TM NIR Fiber Optic Accessory The information in this publication is provided for reference only. All information contained in this publication is believed to be correct

More information

Observe all necessary safety precautions when controlling the soft starter remotely. Alert personnel that machinery may start without warning.

Observe all necessary safety precautions when controlling the soft starter remotely. Alert personnel that machinery may start without warning. Important User Information DeviceNet Module Instructions Observe all necessary safety precautions when controlling the soft starter remotely. Alert personnel that machinery may start without warning. It

More information

OM29110 NFC's SBC Interface Boards User Manual. Rev May

OM29110 NFC's SBC Interface Boards User Manual. Rev May Document information Info Content Keywords Abstract OM29110, NFC, Demo kit, Raspberry Pi, BeagleBone, Arduino This document is the user manual of the OM29110 NFC s SBC Interface Boards. Revision history

More information

MINI-32. development board for PIC32MZ MINI ARM. PIC32 development board fitted in a DIP40 form factor, containing a powerful microcontroller.

MINI-32. development board for PIC32MZ MINI ARM. PIC32 development board fitted in a DIP40 form factor, containing a powerful microcontroller. MINI-32 development board for PIC32MZ PIC32 development board fitted in a DIP40 form factor, containing a powerful microcontroller. MINI ARM TO OUR VALUED CUSTOMERS I want to express my thanks to you for

More information

Data Acquisition Modules/ Distributed IO Modules

Data Acquisition Modules/ Distributed IO Modules User Manual Data Acquisition Modules/ Distributed IO Modules Future Design Controls, Inc. 7524 West 98 th Place / P.O. Box 1196 Bridgeview, IL 60455 888.751.5444 - Office: 888.307.8014 - Fax 866.342.5332

More information

APPLICATION NOTE. AT11009: Migration from ATxmega64D3/128D3/192D3/256D3 Revision E to Revision I. Introduction. Features.

APPLICATION NOTE. AT11009: Migration from ATxmega64D3/128D3/192D3/256D3 Revision E to Revision I. Introduction. Features. APPLICATION NOTE AT11009: Migration from ATxmega64D3/128D3/192D3/256D3 Revision E to Revision I Atmel AVR XMEGA Introduction This application note lists out the differences and changes between Revision

More information

Name Model Specifications/Design ID Tag V700-D23P31 20 dia. t 2.7 mm Coin-shaped 256 bytes (with user area of 240 bytes)

Name Model Specifications/Design ID Tag V700-D23P31 20 dia. t 2.7 mm Coin-shaped 256 bytes (with user area of 240 bytes) Electromagnetic Inductive RFID System V700 A High-functionality High-performance RFID System That Revolutionizes Product and Distribution Management in the Production Environment A long transmission distance

More information

User Manual Solenoid Controller BI-SC1001

User Manual Solenoid Controller BI-SC1001 User Manual Solenoid Controller BI-SC1001 NOTICE Brandstrom Instruments, 2017 85 Ethan Allen Highway Ridgefield, CT 06877 (203) 544-9341 www.brandstrominstruments.com No part of this document may be photocopied,

More information

AN797 WDS USER S GUIDE FOR EZRADIO DEVICES. 1. Introduction. 2. EZRadio Device Applications Radio Configuration Application

AN797 WDS USER S GUIDE FOR EZRADIO DEVICES. 1. Introduction. 2. EZRadio Device Applications Radio Configuration Application WDS USER S GUIDE FOR EZRADIO DEVICES 1. Introduction Wireless Development Suite (WDS) is a software utility used to configure and test the Silicon Labs line of ISM band RFICs. This document only describes

More information

AVR1606: XMEGA Internal RC Oscillator Calibration. 8-bit Microcontrollers. Application Note. Features. 1 Introduction

AVR1606: XMEGA Internal RC Oscillator Calibration. 8-bit Microcontrollers. Application Note. Features. 1 Introduction AVR1606: XMEGA Internal RC Oscillator Calibration Features Adjustable RC frequency with +/-1% accuracy Support for all XMEGA s with tunable RC oscillator via JTAG interface Calibration using JTAGICE mkii

More information

MaxLite LED Self-Driven LiteBars

MaxLite LED Self-Driven LiteBars Accessories Length: 4, 12, 40 Connector Box Straight Joiner Wire Joiner Mounting Clip Distribution Box Left Joiner Wire Joiner with Plug length: 40 Magnet Bracket Right Joiner End Cap Rotation Bracket

More information

Fast read access time 70ns Low-power CMOS operation 100μA max standby 30mA max active at 5MHz. JEDEC standard packages 32-lead PDIP 32-lead PLCC

Fast read access time 70ns Low-power CMOS operation 100μA max standby 30mA max active at 5MHz. JEDEC standard packages 32-lead PDIP 32-lead PLCC Atmel AT7C040 4Mb (51K x 8) OTP, EPROM DATASHEET Features Fast read access time 70ns Low-power CMOS operation 100μA max standby 30mA max active at 5MHz JEDEC standard packages 3-lead PDIP 3-lead PLCC 5V

More information

MOTORBIKE. Instructions Author: Socheata Kong.

MOTORBIKE. Instructions Author: Socheata Kong. MOTORBIKE Instructions Author: Socheata Kong Water Utility Knife Drill Spade x2 x5 Hex Bolt Spanner Machete Car Tire Grinder Truck Tire TIMBER ~4cm / 2 ~90cm / 35.5 Please note: All measurements are indicative

More information

ACT-IR220Li/220LN IrDA Serial Port Adapter

ACT-IR220Li/220LN IrDA Serial Port Adapter ACT-IR220Li/220LN IrDA Serial Port Adapter Product Specification Summary ACTiSYS Corp. 48511 Warm Springs Blvd, Suite 206 Fremont, CA 94539, USA TEL: (510) 490-8024, FAX: (510) 623-7268 E-Mail: irda-support@actisys.com

More information

DEMO MANUAL DC2349A LTC5586 6GHz High Linearity I/Q Demodulator with Wideband IF Amplifier DESCRIPTION BOARD PHOTO

DEMO MANUAL DC2349A LTC5586 6GHz High Linearity I/Q Demodulator with Wideband IF Amplifier DESCRIPTION BOARD PHOTO DESCRIPTION Demonstration circuit 2349A showcases the LTC 5586 wideband high linearity IQ demodulator with IF amplifier. The Linear Technology USB serial controller, DC590B, is required to control and

More information

GamePro Android Edition User Guide for Android Devices

GamePro Android Edition User Guide for Android Devices GamePro Android Edition User Guide for Android Devices Copyright 2007, My Mobile Gear. Com All rights reserved. End-User License Agreement (EULA) This End-User License Agreement (EULA) is a legal agreement

More information

Wenger Corporation 2010 Printed in China 02/10 Part #148H Wenger Corporation, 555 Park Drive, P.O. Box 448, Owatonna, Minnesota

Wenger Corporation 2010 Printed in China 02/10 Part #148H Wenger Corporation, 555 Park Drive, P.O. Box 448, Owatonna, Minnesota Assembly Instructions Violin/Viola Storage Rack CONTENTS Safety Precautions.................................. Warranty.......................................... Important User Information............................

More information