PhidgetInterfaceKit 8/8/8
|
|
|
- Anabel Heath
- 10 years ago
- Views:
Transcription
1 PhidgetInterfaceKit 8/8/8 Operating Systems: Windows 2000/XP/Vista, Windows CE, Linux, and Mac OS X Application Programming Interfaces (APIs): Visual Basic, VB.NET, C, C++, C#, Flash 9, Flex, Java, LabVIEW, and Matlab Examples: You will find program examples in the download section of _0_Product_Manual created: 10/12/07 Page 1
2 What Can the PhidgetInterfaceKit 8/8/8 Do? The PhidgetInterfaceKit 8/8/8 allows you to connect devices to any of 8 analog inputs, 8 digital inputs and 8 digital outputs. It provides a generic, convenient way to interface your PC with various devices. Analog inputs They are used to measure continuous quantities, such as temperature, humidity, position, pressure, etc. Phidgets offers a wide variety of sensors that can be plugged directly into the board using the cable included with the sensor. Here is a list of sensors currently available: IR Distance Sensor IR Reflective Sensor Vibration Sensor Light Sensor Force Sensor Humidity Sensor Temperature Sensor Magnetic Sensor Rotation Sensor Voltage Divider Touch Sensor Motion Sensor Mini Joy-Stick Pressure Sensor Voltage Sensor Current Sensor Slide Sensor 1018_0_Product_Manual created: 10/12/07 Page 2
3 Non Phidgets Sensors In addition to Phidgets sensors, any sensor that returns a signal between 0 and 5 volts can be easily interfaced. Here is a list of interesting sensors that can be used with the PhidgetInterfaceKit 8/8/8. Note: these sensors are not plug & play like Phidgets sensors. Manufacturer Part Number Description MSI Sensors FC21/FC22 Load cells - measure up to 100lbs of force Humirel HTM2500VB Humidity sensors Measurement Specialties MSP-300 Pressure sensors - ranges up to 10,000 PSI Freescale Semiconductor MPXA/MPXH Gas Pressure Sensors Allegro ACS7 series Current Sensors - ranges up to 200 Amps Allegro A1300 series Linear Hall Effect Sensors - to detect magnetic fields Analog TMP35 TMP36 Temperature Sensor TMP37 Panasonic AMN series Motion Sensors Note: Most of the above sensors can be bought at Digital Inputs Digital Inputs can be used to convey the state of push buttons, limit switches, relays (check out our Dual Relay Board), logic levels, etc... Digital Outputs Digital Outputs can be used to drive LEDs, solid state relays (have a look at our SSR board), transistors; in fact, anything that will accept a CMOS signal. Digital outputs can be used to control devices that accept a +5V control signal. With transistors and some electronics experience, other devices can be controlled, such as buzzers, lights, larger LEDs, relays. 1018_0_Product_Manual created: 10/12/07 Page 3
4 Getting Started Installing the hardware The kit contains: A PhidgetInterfaceKit 8/8/8 A USB Cable You will also need: A piece of wire to test the digital inputs An LED to test the digital outputs An Analog Sensor to test the analog inputs Connect the Analog Sensor to any of the analog input ports (labeled 0 to 7) using a Phidgets sensor cable. 2. Connect the InterfaceKit board to the PC using the USB cable. 3. Connect one end of the wire to a digital input port and the other end to the ground connection. 4. Connect the LED to one of the digital output by inserting the long LED wire into any of the digital outputs (labeled 0 to 7) and the shorter wire to Ground. 1018_0_Product_Manual created: 10/12/07 Page 4
5 Download and Install the software Go to >> downloads Select your operating system (Windows, Linux, MAC OS) Select the language you want to use and download the appropriate examples and Libraries. Install the Libraries and decompress the Example file. Testing the PhidgetInterfaceKit 8/8/8 using Windows Note that some examples are not available for Linux, Mac OSX or Windows CE. Make sure that you have installed the libraries and decompressed your example file. Run the program Manager-full to make sure that the PhidgetInterfaceKit is properly connected to your PC. 1018_0_Product_Manual created: 10/12/07 Page 5
6 Run the program InterfaceKit- full and check that the box labelled Attached contains the word True Test the digital output by clicking on the box to turn on the LED. Clicking again will turn the LED off. Test the digital input by disconnecting the wire end connected to the digital input. connector. The tick mark in the box will go away. Test the analog input sensor by observing the sensor value as you activate the Phidget sensor. You can adjust the input sensitivity by moving the slider pointer. 1018_0_Product_Manual created: 10/12/07 Page 6
7 Programming a Phidget Where to get information Go to >> downloads Select the Operating System and the language you want to use. Download the appropriate API manual and read the section under the InterfaceKit heading. Have a look at the source code of the InterfaceKit-full program. Have a look at the C# example below. Modify an existing program or write your own program from scratch. Simple example written in C# // - InterfaceKit simple - // This simple example creates an Interfacekit object, hooks the event handlers, and // opens it for connections to IntefaceKit Phidgets. It will then wait for user input to // terminate, and in the meantime, display event generated data from the InterfaceKit. // For a more detailed example, please see the InterfaceKit-full example. // // Please note that this example was designed to work with only one Phidget InterfaceKit // connected. For an example using multiple Phidget InterfaceKits, please see a // multiple example in the InterfaceKit Examples folder. // // Copyright 2007 Phidgets Inc. All rights reserved. using System; using System.Collections.Generic; using System.Text; using Phidgets; //needed for the interfacekit class and the phidget exception class using Phidgets.Events; //needed for the event handling classes namespace InterfaceKit_simple class Program //Declare an InterfaceKit object static InterfaceKit ifkit; static void Main(string[] args) try //Initialize the InterfaceKit object ifkit = new InterfaceKit(); //Hook the basica event handlers ifkit.attach += new AttachEventHandler(ifKit_Attach); ifkit.detach += new DetachEventHandler(ifKit_Detach); ifkit.error += new ErrorEventHandler(ifKit_Error); //Hook the phidget spcific event handlers ifkit.inputchange += new InputChangeEventHandler(ifKit_InputChange); ifkit.outputchange += new OutputChangeEventHandler(ifKit_OutputChange); ifkit.sensorchange += new SensorChangeEventHandler(ifKit_SensorChange); //Open the object for device connections ifkit.open(); //Wait for an InterfaceKit phidget to be attached Console.WriteLine( Waiting for InterfaceKit to be attached... ); 1018_0_Product_Manual created: 10/12/07 Page 7
8 ifkit.waitforattachment(); //Wait for input so we can wait & watch for some event data from phidget Console.WriteLine( Press any key to end... ); Console.Read(); //User input was rad so we ll terminate the program, so close the object ifkit.close(); //set the object to null to get it out of memory ifkit = null; //If no expcetions where thrown at this point it is safe to end program Console.WriteLine( ok ); catch (PhidgetException ex) Console.WriteLine(ex.Description); //Attach event handler...display serial of attached InterfaceKit to the console static void ifkit_attach(object sender, AttachEventArgs e) Console.WriteLine( InterfaceKit 0 attached!, e.device.serialnumber.tostring()); //Detach event handler...display serial of detached InterfaceKit to the console static void ifkit_detach(object sender, DetachEventArgs e) Console.WriteLine( InterfaceKit 0 detached!, e.device.serialnumber.tostring()); //Error event handler...display the error description to the console static void ifkit_error(object sender, ErrorEventArgs e) Console.WriteLine(e.Description); //Input Change event handler...display input index and new value to the console static void ifkit_inputchange(object sender, InputChangeEventArgs e) Console.WriteLine( Input index 0 value (1), e.index, e.value.tostring()); //Output change event handler...display output index and new value to the console static void ifkit_outputchange(object sender, OutputChangeEventArgs e) Console.WriteLine( Output index 0 value 0, e.index, e.value.tostring()); //Sensor Change event handler...display sensor index and new value to the console static void ifkit_sensorchange(object sender, SensorChangeEventArgs e) Console.WriteLine( Sensor index 0 value 1, e.index, e.value); Learning more... check out the forums check out the Phidgets projects 1018_0_Product_Manual created: 10/12/07 Page 8
9 Technical Section Using the Analog Inputs The Analog Input can measure a voltage between 0V and 5V. The analog measurement is represented in the software as a value between 0 and 1000, so a sensor value of 1 unit represents a voltage of approximately 5 millivolts. Each analog input uses a 3-pin, inch pitch locking connector. Pictured here is a plug with the connections labeled. If this is wired backwards, damage to your sensor may result. The Interface Kit provides + 5VDC, ground, and an analog input with a range of 0 to 5V. Ratiometric Sensors If you are using a sensor whose output changes linearly with variations in the sensor s supply voltage level, it is said to be ratiometric. Most of the sensors sold by Phidgets are ratiometric (this is specified in the manual for each sensor). If the analog sensors you are using are ratiometric, enable the ratiometric property in software. This causes the reference to the internal Analog to Digital Converter to be set to the power supply voltage level. If ratiometric is not enabled, the ADC reference is set to a 5.0V 0.5% stable voltage reference. User Phidget V+ Using the Digital Inputs To wire a switch to a digital 15KΩ input, connect the switch between an input, labeled 0 to 7, and a provided ground, labeled G. The default state of the Digital Input in software is False (the switch state is open and the input pin is pulled to 5V by an internal resistor). When the switch is closed, the input pin is pulled to ground and the Digital Input is set to True. INPUT GROUND 15KΩ Digital Input Diagram 1018_0_Product_Manual created: 10/12/07 Page 9
10 Using the Digital Outputs Phidget Connecting an LED or other circuit to V+ a digital output is simple. In the case of an LED, wire the anode to a digital output labeled 0 to 7 on the Interface Kit, and the cathode to a supplied ground, labeled G. 300Ω The 300 ohm resistance is internal to the PhidgetInterfaceKit 8/8/8, and limits the current that can flow through the output. This is intended to protect the device from being damaged if there is a short to ground or if an LED is used. The output is intended to drive TTL or CMOS inputs; it is not designed to provide power to an external circuit. OUTPUT GROUND Digital Output Diagram The digital outputs can be used to switch larger electrical currents and voltages using devices such as power transistors, or logic level MOSFETs. You can also use the 3051 or 3052 to control a larger load. User Mechanical Drawing 1:1 scale 1018_0_Product_Manual created: 10/12/07 Page 10
11 Device Specifications Analog Input Impedance Digital Output Series Resistance Digital Input Pull-Up Resistance 900K ohms 300 ohms 15K ohms Analog Input Update Rate Digital Output Update Rate Digital Input Update Rate ~65 samples / second ~125 samples / second ~125 samples / second Digital Input Recommended Wire Size Digital Output Recommended Wire Size Digital Input Wire Stripping AWG AWG 5-6mm strip USB-Power Current Specification Quiescent Current Consumption Available External Current (source) Max 500mA 13mA 487mA Cable and Connector Components for Analog Inputs Manufacturer Part Number Description Molex Position Cable Connector Molex Wire Crimp Insert for Cable Connector Molex Position Vertical PCB Connector Molex Position Right-Angle PCB Connector (Gold) Molex Position Right-Angle PCB Connector (Tin) Molex Position Right-Angle PCB Connector - Surface Mount Note: Most of the above components can be bought at Product History Date Product Revision Comment July _0 Product Release 1018_0_Product_Manual created: 10/12/07 Page 11
1012 - PhidgetInterfaceKit 0/16/16
1012 - PhidgetInterfaceKit 0/16/16 Product Features 16 Digital Inputs that are activated by an external voltage source, triggering on a wide voltage range - 4 to 30VDC They can be used to convey the state
How to connect to a Class II router using a mobile-phone data cable specifically for Solwise & Safecom routers
USB to router s serial port How to connect to a Class II router using a mobile-phone data cable specifically for Solwise & Safecom routers by Neo at RouterTech.Org Introduction Routers based on the AR7RD/AR7WRD
USB to RS-422/485 Serial Adapter
USB to RS-422/485 Serial Adapter User Manual Ver. 2.00 All brand names and trademarks are properties of their respective owners. Contents: Chapter 1: Introduction... 3 1.1 Product Introduction... 3 1.2
8 Channel Status Input Panel model SIP-8
Description The Sine Systems model SIP-8 Status Input Panel is to be used with the RFC-1/B Remote Facilities Controller. It consists of a long PC board mounted on a 1.75 inch (1U) rack panel. The SIP-8
JNIOR. Overview. Get Connected. Get Results. JNIOR Model 310. JNIOR Model 312. JNIOR Model 314. JNIOR Model 410
The INTEG is an Ethernet I/O (digital, analog) device that monitors and controls a small set of process signals. functions as both basic I/O for integration with another application or system AND as a
LDG DTS-4/4R Desktop Coaxial Switch / Remote
LDG DTS-4/4R Desktop Coaxial Switch / Remote LDG Electronics 1445 Parran Road, PO Box 48 St. Leonard MD 20685-2903 USA Phone: 410-586-2177 Fax: 410-586-8475 [email protected] www.ldgelectronics.com
How To Use A Watt Saver On A Microcontroller (Watt Saver) On A Cell Phone Or Mp3 Player
Watt Saver for a Cell Phone AC Adapter Reference Design Document Number: DRM130 Rev 1, 10/2013 2 Freescale Semiconductor, Inc. Contents Section number Title Page Chapter 1 Introduction 1.1 Overview...5
SMART SENSOR COLLECTION
TEMPERATURE SENSOR This sensor measures temperature in degrees Celsius or Fahrenheit. It works with all SensorHawk base units (SensorHawk-2, SensorHawk-8 and SensorHawk8/20) as well as the SecurityHawk-8
Bluetooth HC-06 with serial port module Easy guide
1 Bluetooth HC-06 with serial port module Easy guide This manual consists of 3 parts: PART 1. Overview of Bluetooth HC-06 module with serial port. PART 2. Installing Bluetooth HC-06 module with Bolt 18F2550
AUTOMATIC CALL RECORDER JAMECO PART NO. 2163735
AUTOMATIC CALL RECORDER JAMECO PART NO. 2163735 Experience Level: Intermediate Time Required: 1-2 Hours This project automatically records phone calls. The program, along with the adapter records each
Firmware version: 1.10 Issue: 7 AUTODIALER GD30.2. Instruction Manual
Firmware version: 1.10 Issue: 7 AUTODIALER GD30.2 Instruction Manual Firmware version: 2.0.1 Issue: 0.6 Version of the GPRS transmitters configurator: 1.3.6.3 Date of issue: 07.03.2012 TABLE OF CONTENTS
MOTION COORDINATOR MC206X Quick Connection Guide
I/O Connector 1 Analogue In / Inputs 0-7 5 Way Connector Power /CANbus I/O Connector 2 24V Power / I/O 8-15 I/O Connector 3 WDOG / Ref Encoder / Analogue Outputs USB Serial A Serial B Axes 0-3 Encoder
HCS-3300/3302/3304 USB Remote Programmable Laboratory Grade Switching Mode Power Supply
1. INTRODUCTION HCS-3300/3302/3304 USB Remote Programmable Laboratory Grade Switching Mode Power Supply User Manual This family of efficient, upgraded SMPS with small form factor, auto cross over CV CC,
Combi B Alarm box. Mounting instructions
Combi B Alarm box Mounting instructions EN Mounting instructions Alarm box Combi B VdS, G113064, G113065, G113066 Table of Contents 1 Description... 3 2 System overview... 3 3 Structure... 3 3.1 Power
If an occupancy of room is zero, i.e. room is empty then light source will be switched off automatically
EE389 Electronic Design Lab Project Report, EE Dept, IIT Bombay, Nov 2009 Fully-automated control of lighting and security system of a Room Group No: D2 Bharat Bhushan (06d04026) Sravan
Charge Regulator SCR 12 Marine
Charge Regulator SCR 12 Marine Manual Many thanks for purchasing a superwind product. The SCR 12 Marine is a charge regulator of highest quality and will perfectly and reliably charge your batteries for
AC-115 Compact Networked Single Door Controller. Installation and User Manual
AC-115 Compact Networked Single Controller Installation and User Manual December 2007 Table of Contents Table of Contents 1. Introduction...5 1.1 Key Features... 6 1.2 Technical Specifications... 7 2.
INSTALLATION AND OPERATING INSTRUCTIONS For Model GL1 Gate Locks
Securitron Magnalock Corp. www.securitron.com ASSA ABLOY, the global leader Tel 800.624.5625 [email protected] in door opening solutions INSTALLATION AND OPERATING INSTRUCTIONS For Model GL1 Gate
GSM HOME SECURITY SYSTEM
Cell /Mobile phone home security system GSM HOME SECURITY SYSTEM Model : GSM-120 TABLE OF CONTENTS 1. FEATURES... 1 2. APPLICATION... 2 3. SPECIFICATIONS... 3 4. FRONT PANEL & LAYOUT DESCRIPTION...6 5.
Application/Connection Examples
This Quick Start Guide is designed to familiarize the user with the connection and configuration of the DTS-305 DIN rail mounted single / 3 phase power & energy meter with RS-485 or TCP communications.
OWNERS MANUAL. WattsVIEW. Power Monitor Model: DC-10000. http://wattsview.com. WattsVIEWTM. Models: DC-10000 Serial DC-1000 USB DC-25000
WattsVIEW Power Monitor Model: DC-10000 DC Power Monitoring Made Easy Models: DC-10000 Serial DC-1000 USB DC-25000 OWNERS MANUAL PAGE 1 of 23 Table of Contents WattsVIEW Power Monitor Model: DC-10000...1
PHD User Manual. Table of Contents
Table of Contents Overview...2 Install PHD Software...3 Connect PHD Equipment...5 Connect Sensor to the PHD Programmer...6 Run PHD Application...7 Verify Parameters and Program Sensor...10 View Output
Touch Screen for Pictiva OLED display. Application Note. Introduction
Touch Screen for Pictiva OLED display Application Note AN0 Introduction A touch screen interface can be added to Pictiva.7 inch or similar OLED displays to enhance its operation. This application note
Digital I/O: OUTPUT: Basic, Count, Count+, Smart+
Digital I/O: OUTPUT: Basic, Count, Count+, Smart+ The digital I/O option port in the 4-Series provides us with 4 optically isolated inputs and 4 optically isolated outputs. All power is supplied externally.
USER GUIDE. Studio Hotline Multi-line System Phone Flasher and Door/Alert Indicator Input Module and Indicator. DM Engineering. Version 1.
USER GUIDE Studio Hotline Multi-line System Phone Flasher and Door/Alert Indicator Input Module and Indicator Version 1.3 DM Engineering 2174 Chandler St. Camarillo, CA 91345-4611 805-987-7881 800-249-0487
2-Port RS232/422/485 Combo Serial to USB2.0 Adapter (w/ Metal Case and Screw Lock Mechanism) Installation Guide
2-Port RS232/422/485 Combo Serial to USB2.0 Adapter (w/ Metal Case and Screw Lock Mechanism) Installation Guide 1. Introduction Thank you for purchasing this 2-Port RS232/422/485 Combo Serial to USB Adapter.
Automation System TROVIS 6400 TROVIS 6493 Compact Controller
Automation System TROVIS 6400 TROVIS 6493 Compact Controller For panel mounting (front frame 48 x 96 mm/1.89 x 3.78 inch) Application Digital controller to automate industrial and process plants for general
How To Use An Ams 5812 Pressure Sensor With A Usb Starter Kit
User Guide USB Starter Kit AMS 5812 Phone:+49 (0)6131/91 0730-0 Fax: +49 (0)6131/91 073-30 Internet: E Mail: [email protected] Analog Microelectronics GmbH An der Fahrt 13, D 55124 Mainz May 2012 - Rev.
Name Description Model Number. Parameters Min. Typ. Max. Note. Vaux Voltage 9.8 V 12 V 13.2 V Auxiliary Supply Voltage
Description Supports DALI interface driver Programming Supports 0-10V Programmable Driver Programming Supports Other Controllers (TDD-ANPNx, SDD-AAPNx) Off-line programming capability Auto programming
DATENBLATT USB-DIO32HS USB-DIO32HS-OEM. HABEN SIE FRAGEN ODER WÜNSCHEN SIE EIN INDIVIDUELLES ANGEBOT? Unser Team berät Sie gerne persönlich.
DATENBLATT USB-DIO32HS HABEN SIE FRAGEN ODER WÜNSCHEN SIE EIN INDIVIDUELLES ANGEBOT? Unser Team berät Sie gerne persönlich. TELEFON + 49 (0) 81 41/36 97-0 TELEFAX + 49 (0) 81 41/36 97-30 E-MAIL [email protected]
WinLIN Setup and Operation:
Frequently Asked Questions about the 07551-Series Masterflex L/S Computer-Compatible drives and about the Masterflex WinLIN Linkable Instrument Control Software (07551-70) WinLIN Setup and Operation: Will
T7560A,B,C Digital Wall Module
T7560A,B,C Digital Wall Module HONEYWELL EXCEL 5000 OPEN SYSTEM BEFORE INSTALLATION All wiring must comply with local electrical codes and ordinances or as specified on installation wiring diagrams. Digital
User manual DinaSys DTC/DTS and DTC/DTZ
PiCommIT has developed the DinaSys DTC/DTS and DinaSys DTC/DTZ turntable controller for the Fleischmann / Marklin Turntables in scale H0, H0m, TT, N and Z. One of the most important starting point was
By: John W. Raffensperger, Jr. Revision: 0.1 Date: March 14, 2008
Introduction Page 1 of 13 So, you got your AX-12+ servos, you got your USB2Dynamixel, you connected things up, fire up the software, and wala! Nothing happens. Welcome to the club! There are at least four
FTDI VCP DRIVER (free) (WIN/MAC/LINUX) http://www.ftdichip.com/drivers/vcp.htm
002 - CONNECTING THE PRINTER Now that you have an idea what 3D printing entails, we can continue and connect the printer to your computer. First make sure you have a computer with a decent amount of RAM
Designing VM2 Application Boards
Designing VM2 Application Boards This document lists some things to consider when designing a custom application board for the VM2 embedded controller. It is intended to complement the VM2 Datasheet. A
Table of Contents Getting Started... 3 The Motors... 4 The Control Board... 5 Setting up the Computer with Mach3... 6 Starting up the Equipment...
User Manual Table of Contents Getting Started... 3 The Motors... 4 The Control Board... 5 Setting up the Computer with Mach3... 6 Starting up the Equipment... 12 G-Code Example... 13 2 Getting Started
HOW TO USE MULTIMETER. COMPILE BY: Dzulautotech
HOW TO USE MULTIMETER COMPILE BY: Dzulautotech 1. GENERAL Electricity is absolutely necessary for an automobile. It is indispensable when the engine is started, the air fuel mixture is ignited and exploded,
EVAL-UFDC-1/UFDC-1M-16
Evaluation Board for Universal Frequency-to- Digital Converters UFDC-1 and UFDC-1M-16 EVAL-UFDC-1/UFDC-1M-16 FEATURES Full-Featured Evaluation Board for the Universal Frequency-to-Digital Converters UFDC-1
5-port / 8-port 10/100BaseTX Industrial Ethernet Switch User Manual
5-port / 8-port 10/100BaseTX Industrial Ethernet Switch User Manual Content Overview... 1 Introduction... 1 Features... 3 Packing List... 4 Safety Precaution... 4 Hardware Description... 5 Front Panel...
USB3.0 Docking Station. User Manual (DA-70546)
USB3.0 Docking Station User Manual (DA-70546) Foreword Congratulations on your purchase of our product! We will show you a new storage concept with safety and convenience It is our pleasure to give you
PCAN-MicroMod Universal I/O Module with CAN Interface. User Manual. Document version 2.1.0 (2014-01-16)
PCAN-MicroMod Universal I/O Module with CAN Interface User Manual Document version 2.1.0 (2014-01-16) Products taken into account Product Name Part number Model PCAN-MicroMod IPEH-002080 with firmware
Doc.No. NDP 192U-02. Electric Pump Controller CE-124P. Instruction Manual
Doc.No. NDP 192U-02 Electric Pump Controller CE-124P Instruction Manual 1. Parts Name and Function 1) POWER LED Indicate that CE-124P is powered up. 2) START/STOP KEY (SELECTOR KEY) Used to start and stop
Installation Manual (English) Adjustable Active DP Terminator T1-Pepper Active RS485 segment termination for non-compliant cable
Installation Manual (English) Adjustable Active DP Terminator T1-Pepper Active RS485 segment termination for non-compliant cable Designed for use with the COMbricks SALT repeater All baudrates Redundant
USBSPYDER08 Discovery Kit for Freescale MC9RS08KA, MC9S08QD and MC9S08QG Microcontrollers User s Manual
USBSPYDER08 Discovery Kit for Freescale MC9RS08KA, MC9S08QD and MC9S08QG Microcontrollers User s Manual Copyright 2007 SofTec Microsystems DC01197 We want your feedback! SofTec Microsystems is always on
TS1 Ultra Sonic Tank Sender Training. 27 November 2007
1 TS1 Ultra Sonic Tank Sender Training 27 November 2007 2 Topics TS1 Tank Sender TS1-PK Programming Kit TS1 Programming Software Programming TS1 Troubleshooting 3 TS1 TS1 is an advanced tank sender based
Standard Cables (Without electromagnetic brake, with electromagnetic brake) CC010ES-2. 1 m CC020ES-2. 2 m CC030ES-2. 3 m CC050ES-2.
Motorized Actuators Motor Cables EZS /EZS for Clean Room Use This cable is a dedicated cable for connecting the linear slide of the EZS Series and EZS Series for Clean Room Use with the controller. Use
USB 2.0 3.5 External Hard Disk Drive
USB 2.0 3.5 External Hard Disk Drive System Requirements Notebook or Desktop PC with USB2.0 or USB1.1 port. Windows 98SE/Me/2000, or Windows XP (Make sure the device driver for USB Host controller has
Develop a Dallas 1-Wire Master Using the Z8F1680 Series of MCUs
Develop a Dallas 1-Wire Master Using the Z8F1680 Series of MCUs AN033101-0412 Abstract This describes how to interface the Dallas 1-Wire bus with Zilog s Z8F1680 Series of MCUs as master devices. The Z8F0880,
Digital Photo Bank / Portable HDD Pan Ocean E350 User Manual
Digital Photo Bank / Portable HDD Pan Ocean E350 User Manual Installing a hard disk 1. Power off the unit. 2. Remove the bottom cover from the unit by removing four screws. 3. Insert the 2.5 HDD to the
Current Monitoring Kit QUICK START GUIDE
Current Monitoring Kit QUICK START GUIDE Pico Technology EL040 Current Monitoring Kit Quick Start Guide CONTENTS 1 Introduction... 1 2 Kit contents... 3 3 Installation... 3 3.1 Connecting the system together...
IMMS-CCC. IMMS-CCC Hardwire Central Interface. Installation Instructions
IMMS-CCC IMMS-CCC Hardwire Central Interface Installation Instructions TABLE OF CONTENTS... Choose a Location... 1 Connections... 2 Operations... 3 Software Configuration... 4 Troubleshooting... 5 Loopback
Advantium 2 Plus Alarm
ADI 9510-B Advantium 2 Plus Alarm INSTALLATION AND OPERATING INSTRUCTIONS Carefully Read These Instructions Before Operating Carefully Read These Controls Corporation of America 1501 Harpers Road Virginia
Machine-to-Machine Management System. Datasheet. Models: mport, mport-s, mpower, mpower Mini, mpower Pro, mfi-cs, mfi-ds, mfi-ths, mfi-msc, mfi-msw
Machine-to-Machine Management System Models: mport, mport-s, mpower, mpower Mini, mpower Pro, mfi-cs, mfi-ds, mfi-ths, mfi-msc, mfi-msw Automated Machine Control Sensor Data Collection and Analytics Plug
GETTING TO KNOW YOUR PRE-PAID TELSTRA WI-FI 4G
GETTING TO KNOW YOUR PRE-PAID TELSTRA WI-FI 4G LET S GET THIS SHOW ON THE ROAD You must be excited about your brand new Pre-Paid Telstra Wi-Fi 4G. This guide will help you get connected as quickly and
Computer Automation Techniques. Arthur Carroll
Computer Automation Techniques Arthur Carroll 1 Three Types of Computers Micro-Controller Single Board Computer Desktop Computer 2 The Micro-Controller Small inexpensive DIP or surface mount chips Roughly
Color Mark Sensor with Red or Green LED E3S-VS
Color Mark Sensor with Red or Green LED Rugged IP67 Color Mark Sensor 1 ms response time Detects a wide variety of color marks PNP or NPN output ls Light-on/ Dark-on operation, wire selectable Vertical
HAM841K ALARM CONTROL PANEL FOR COMMERCIAL AND RESIDENTIAL SECURITY SYSTEMS
ALARM CONTROL PANEL FOR COMMERCIAL AND RESIDENTIAL SECURITY SYSTEMS USER MANUAL USER MANUAL ALARM CONTROL PANEL FOR COMMERCIAL AND RESIDENTIAL SECURITY SYSTEMS INTRODUCTION The (HA-841K) is a complete
Current Monitoring Kit
Current Monitoring Kit QUICK START GUIDE DO090-6 CONTENTS Issues: 1) 2.10.02 WP A4 format 2) 2.10.02 Added safety warning 3) 17.3.06 Word A5 format. S1: Removed relay modules. S2: Added MI010. S4.1: added
M68EVB908QL4 Development Board for Motorola MC68HC908QL4
M68EVB908QL4 Development Board for Motorola MC68HC908QL4! Axiom Manufacturing 2813 Industrial Lane Garland, TX 75041 Email: [email protected] Web: http://www.axman.com! CONTENTS CAUTIONARY NOTES...3 TERMINOLOGY...3
AC 800M. EtherNet/IP DeviceNet Linking Device LD 800DN. Power and productivity for a better world TM SP1134
AC 800M EtherNet/IP DeviceNet Linking Device LD 800DN SP1134 Power and productivity for a better world TM AC 800M EtherNet/IP DeviceNet Linking Device LD 800DN NOTICE This document contains information
dedicated KVM switch and rackmount screen technology User Manual IP-S101 Combo KVM Extender Designed and manufactured by Austin Hughes
dedicated KVM switch and rackmount screen technology User Manual IP-S101 Combo KVM Extender Designed and manufactured by Austin Hughes 751 Legal Information First English printing, October 2002 Information
INTERACTIVE WHITE BOARD MANUAL
INTERACTIVE WHITE BOARD MANUAL Thank you for your purchase of a Bi-Bright Interactive Whiteboard. Visite us at www.bibright.com Bi-Bright Comunicação Visual Interactiva S.A. Bi-Bright S.A. Rua Cais da
MANUAL PC1000R [email protected]
MANUAL PC1000R [email protected] Features The APart PC1000R is a professional multisource CD/USB/SD card music player, equipped with balanced and unbalanced analog outputs, coaxial and optical digital
OPLC Installation Guide
Samba OPLC SM43-J-T20/ SM35-J-T20 OPLC Installation Guide 12 Digital Inputs, include 1 HSC/Shaft-encoder Input, 2 Analog inputs (only when the digital inputs are set to pnp), 8 Relay Outputs 12 Digital
Configure Inverter output for two utility settings, (1)120V/60Hz, (2)220V/50Hz
HV Solar Inverter System GUI Overview January 2012 TMS320C2000 Systems Applications Collateral The HV Solar Inverter System GUI provides a simple interface to evaluate some of the functionalities of the
GETTING TO KNOW YOUR TELSTRA PRE-PAID 3G WI-FI
GETTING TO KNOW YOUR TELSTRA PRE-PAID 3G WI-FI LET S GET THIS SHOW ON THE ROAD You must be excited about your brand new Telstra Pre-Paid 3G Wi-Fi. This guide will help you get connected as quickly and
TX GSM SMS Auto-dial Alarm System. Installation and User Manual
TX GSM SMS Auto-dial Alarm System Installation and User Manual Product Features: 1. 16 wireless zones, 3 wired zones alarm system, suitable for small to medium size offices and homes. 2. The system uses
GLOLAB Universal Telephone Hold
GLOLAB Universal Telephone Hold 1 UNIVERSAL HOLD CIRCUIT If you have touch tone telephone service, you can now put a call on hold from any phone in the house, even from cordless phones and phones without
www.sebury.com.cn Digital Keypad Use s Manual
K3 K4 www.sebury.com.cn Digital Keypad Use s Manual Contents Introduction Introduction Specifications Intramural Interface Circuit 3 Mounting 3 Wiring 5 Power UP 7 Engineer Programming Mode 7 The K3/K4
SYSTEM 4C. C R H Electronics Design
SYSTEM 4C C R H Electronics Design SYSTEM 4C All in one modular 4 axis CNC drive board By C R Harding Specifications Main PCB & Input PCB Available with up to 4 Axis X, Y, Z, A outputs. Independent 25
Manual for Fire Suppression & Methane Detection System
Manual for Fire Suppression & Methane Detection System Fogmaker North America Post address: 150 Gordon Dr Exton, PA 19341 Delivery address: 150 Gordon Dr Exton, PA 19341 Tel: 610-265-3610 Fax: 610-265-8327
How To Control A Power Supply With A Mini Transmitter And Switch (Power Supply)
transmitter (2 wire) / switch for continuous or On/Off Control Indication, monitoring, transmitting and continuous or On/Off control in one device Output signal 4...20 ma, 2-wire for continuous control
Taurus Super-S3 LCM. Dual-Bay RAID Storage Enclosure for two 3.5-inch Serial ATA Hard Drives. User Manual March 31, 2014 v1.2 www.akitio.
Dual-Bay RAID Storage Enclosure for two 3.5-inch Serial ATA Hard Drives User Manual March 31, 2014 v1.2 www.akitio.com EN Table of Contents Table of Contents 1 Introduction... 1 1.1 Technical Specifications...
GT Sensors Precision Gear Tooth and Encoder Sensors
GT Sensors Precision Gear Tooth and Encoder Sensors NVE s GT Sensor products are based on a Low Hysteresis GMR sensor material and are designed for use in industrial speed applications where magnetic detection
L5354 ControlNet Communications Interface
L5354 ControlNet Communications Interface Technical Manual HA470733 Issue 2 Copyright SSD Drives Inc 2005 All rights strictly reserved. No part of this document may be stored in a retrieval system, or
INSTRUCTION MANUAL All-In-One GSM Home Alarm System SB-SP7200-GSM
INSTRUCTION MANUAL All-In-One GSM Home Alarm System SB-SP7200-GSM Revised: August 28, 2014 PRODUCT REFERENCE MOUNTING ACCESSORIES PIR / MOTION DETECTION UNIT MAIN UNIT POWER ADAPTER MOUNTING ACCESSORIES
User Guide Reflow Toaster Oven Controller
User Guide Reflow Toaster Oven Controller Version 1.5-01/10/12 DROTEK Web shop: www.drotek.fr SOMMAIRE 1. Introduction... 3 2. Preparation of THE REFLOW CONTROLLER... 4 2.1. Power supply... 4 2.2. USB
RI-215A Operator s Manual. Part Number: 71-0045RK Revision 0 Released: 10/3/05
RI-215A Operator s Manual Part Number: 71-0045RK Revision 0 Released: 10/3/05 Warranty RKI Instruments, Inc., warrants gas alarm equipment sold by us to be free from defects in materials and workmanship,
16-Port RS232 to USB2.0 High Speed Multi Serial Adapter (w/ Metal Case) Installation Guide
16-Port RS232 to USB2.0 High Speed Multi Serial Adapter (w/ Metal Case) Installation Guide 1. Introduction Thank you for purchasing this 16-Port RS232 to USB2.0 High Speed Multi Serial Adapter. It is an
Radio sensor powered by a mini solar cell the EnOcean STM 110 now functions with even less light
Radio sensor powered by a mini solar cell the EnOcean STM 110 now functions with even less light In this issue, we would like to present the EnOcean radio sensor module STM 110 in more detail. The module
ABB Drives. User s Manual HTL Encoder Interface FEN-31
ABB Drives User s Manual HTL Encoder Interface FEN-31 HTL Encoder Interface FEN-31 User s Manual 3AUA0000031044 Rev B EN EFFECTIVE: 2010-04-06 2010 ABB Oy. All Rights Reserved. 5 Safety instructions
BrightSign Expander Hardware Guide
Hardware Guide PCBA: Rev C Version: 0.1 Saratoga, CA, USA 1 Table of Contents OVERVIEW... 3 EXPANDER BLOCK DIAGRAM... 4 PORTS... 6 POWER CONNECTOR... 6 OPTICAL SPDIF CONNECTOR... 6 DB25 SWITCH/LED CONNECTOR...
Business/Home GSM Alarm System. Installation and User Manual
Business/Home GSM Alarm System Installation and User Manual Brief Introduction: GSM 900/1800/1900 bands, can be used in most parts of the world Full duplex communication with the host Monitor the scene
Analog Servo Drive 25A8
Description Power Range NOTE: This product has been replaced by the AxCent family of servo drives. Please visit our website at www.a-m-c.com or contact us for replacement model information and retrofit
125 8880 telstra.com/ppmbb visit a telstra store or partner GETTING TO KNOW YOUR
FOR MORE INFORMATIoN: 125 8880 telstra.com/ppmbb visit a telstra store or partner GETTING TO KNOW YOUR Telstra PRE-paid 4G wi-fi LET S GET THIS SHOW ON THE ROad WHAT S INSIDE Your Telstra Pre-Paid 4G Wi-Fi
omega.com ΩOMEGA RS232 Multi-Drop www.omega.com FMA1600-MDB Multi-Drop Box
omega.com ΩOMEGA RS232 Multi-Drop www.omega.com FMA1600-MDB Multi-Drop Box 1 3/29/2010 Rev.0 DOC-OMEGABB9MAN 2 Introduction FMA1600-MDB Multi-Drop Box Operating Bulletin The FMA1600-MDB Multi-Drop Box
Broadway 3D Security System
Broadway 3D Security System USER MANUAL v.1.1.0 Artec Group, Inc. 2012 Table of contents 1. General Information... 3 2. Delivery Package... 4 3.1. B3D BR... 5 3.2. B3D B... 6 3.3. B3D BM... 7 4. Integration
* DISCLAIMER: Contents. How to Use This Guide: COMMERCIAL INSTALL GUIDE 2
COMMERCIAL INSTALL GUIDE 2 Contents How to Use This Guide: The first section of this guide is designed to assist you with the installation of your DECK Monitoring hardware. The revenue grade meter and
Global Motion Technology Inc Web www.motiontek.ca THCSA200. Capacitive sensor plasma & Oxy-fuel Torch Height Control
THCSA200 Capacitive sensor plasma & Oxy-fuel Torch Height Control Features 1) Stand alone controller for THC & OHC completely independent from CNC computer software or CNC control system 2) closed-loop
ECR Shelf System Installation Guide Centralized Rack Mount Call Recording
Hardware & Installation Guide Algo Communication Products Ltd. Customer Support and Sales Tel: 1.877.884.2546 Fax: 604.437.5726 Email: [email protected] [email protected] www.algosolutions.com
Capacitive Touch Lab. Renesas Capacitive Touch Lab R8C/36T-A Family
Renesas Capacitive Touch Lab R8C/36T-A Family Description: This lab will cover the Renesas Touch Solution for embedded capacitive touch systems. This lab will demonstrate how to setup and run a simple
LEN s.r.l. Via S. Andrea di Rovereto 33 c.s. 16043 CHIAVARI (GE) Tel. +39 0185 318444 - Fax +39 0185 472835 mailto: [email protected] url: http//www.len.
MA511 General Index 1 INTRODUCTION... 3 1.1 HARDWARE FEATURES:... 4 2 INTERFACE... 5 2.1 KEYBOARD... 6 2.2 POWER ON... 7 2.3 POWER OFF... 7 2.4 DETECTOR CONNECTION... 7 2.5 DETECTOR SUBSTITUTION...7 3
SE05: Getting Started with Cognex DataMan Bar Code Readers - Hands On Lab Werner Solution Expo April 8 & 9
SE05: Getting Started with Cognex DataMan Bar Code Readers - Hands On Lab Werner Solution Expo April 8 & 9 Learning Goals: At the end of this lab, the student should have basic familiarity with the DataMan
2013 Wireless Video Intercom INSTALLATION GUIDE
2013 Wireless Video Intercom INSTALLATION GUIDE INDEX System configuration and wiring VL-SWD501 System Component.. 4 VL-SWD501EX wiring schematic diagram VL-SWD501EX wiring type and length... 5.... 6 Door
Model 201 Wiegand Touchpad Reader Installation Guide
Model 201 Wiegand Touchpad Reader Installation Guide P/N 460353001C 15AUG11 2011 UTC Fire & Security. All rights reserved. This document may not be copied in whole or in part or otherwise reproduced without
Inductive Proximity Sensors
M12 Inductive Proximity Sensors Standard Length Mini's Extended Sensing 3 Wire DC 2 Wire DC 2 Wire AC (Wiring Schematic) 3 Wire DC PNP Normally Open (1) IMM32122C IMM35124C IMN32122C IMN35124C IMN32122M12
EDK 350 (868 MHz) EDK 350U (902 MHz) EnOcean Developer Kit
EDK 350 (868 MHz) EDK 350U (902 MHz) EnOcean Developer Kit EDK 350 User Manual Important Notes This information describes the type of component and shall not be considered as assured characteristics. No
USER MANUAL V5.0 ST100
GPS Vehicle Tracker USER MANUAL V5.0 ST100 Updated on 15 September 2009-1 - Contents 1 Product Overview 3 2 For Your Safety 3 3 ST100 Parameters 3 4 Getting Started 4 4.1 Hardware and Accessories 4 4.2
