Application Notes. -DM01 Linear Shape Memory Alloy Actuator with Basic Stamp Microcontroller Kit

Size: px
Start display at page:

Download "Application Notes. -DM01 Linear Shape Memory Alloy Actuator with Basic Stamp Microcontroller Kit"

Transcription

1 Application Notes -DM01 Linear Shape Memory Alloy Actuator with Basic Stamp Microcontroller Kit MIGA Motor Company Strawberry Creek Design Center 1250 Addison St., Studio 208 Ph: (510) Fax: (510) This is a preliminary engineering release. The information contained herein is believed to be accurate at the time of printing, but the company reserves the right to change specifications without prior notice. The intellectual property described in this document is covered by U.S. and international patents, issued and pending, trademarks, and copyright laws as appropriate.

2 Rev. A DM01 Operating Guide Page 2 of 7 3/1/07 DM01-Series Actuator with Parallax Board of Education µcontroller Application Notes Section 1 Introduction The DM01 actuator has a very simple two-wire interface, which simply allows the input of power to the Shape Memory Alloy (SMA) wires. When power flows through the SMA wires, the electrical resistance causes them to heat up and contract. If the actuator is unconstrained, it will return to the starting point as the wires cool and relax. The SMA wires are capable of exerting more force than the rest of the actuator can withstand, breaking welds or other elements of the actuator. As general practice, NOT BUILD MECHANICAL STOPS into the system or damage may occur. Implement actuation stops electronically with sensors and power control instead. The following sections will outline some ways to do this using the Parallax BASIC Stamp HomeWork Board. It is also possible to precisely control the contraction speed of the actuator, outlined in Section 4. Drivers and BASIC Stamp manuals are available online at specifically: and Section 2 Basic Setup This example runs the actuator on a timed contract/release cycle while outputting the measured actuator position to the debugging terminal. Assemble the circuit as shown in Figure 1 on the breadboard of your BASIC Stamp HomeWork Board. Make sure to bolt the heat sink onto the TIP120 transistor with the Figure 1: Position sensing and actuation control included #2-56 nut and bolt. The circuit. position sensor is the 10k ohm linear pot included in your kit. Mount the potentiometer

3 Rev. A DM01 Operating Guide Page 3 of 7 3/1/07 such that the body is fixed to mechanical ground, and the moving wiper moves along with the DM01 output shaft, or with some other component of your device depending how you want the control loop to operate. Once the circuit is assembled, software needs to read P7 and set P14 in order to measure the Position Sensor and actuate the DM01. Enter and run DM01A_TimedCycle.bs2 on the Stamp (refer to your stamp manual, available at Parallax.com, for instructions on programming your BASIC Stamp). ' DM01 Adapter Board - DM01A_TimedCycle.bs2 ' Cycle the DM01 and measure the position. cnt VAR Word actuate VAR Word HIGH 7 ' Linear pot position measurement ' Cycle counter ' Indicate whether DM01 on or off ' charge RCTime capacitor ' Begin main loop. PAUSE 20 ' Pause for charge ' Measure discharge HIGH 7 ' Reset pin 7 DEBUG CLS, "Position = ",DEC pos ' Display position IF actuate = 1 AND cnt > 20 THEN ' Actuation finished LOW 14 ' Turn off DM01 cnt = 0 ' Reset the count actuate = 0 ' Indicate off ELSEIF actuate = 0 AND cnt > 200 THEN ' Finished relaxing HIGH 14 ' Turn on DM01 cnt = 0 ' Reset the count actuate = 1 ' Indicate the actuation is on cnt = cnt + 1 ' Increment the count Section 3 Intermediate Setup This example actuates the DM01 between end-limits as quickly as it naturally can. This setup uses the same hardware configuration as in Section 2, but is more advanced and requires careful observation (in order to prevent damaging your actuator). While running the basic setup, observe the position value and record the minimum and maximum values displayed these are your end-limits, and should be about 510 and 115 units, respectively (depending on the capacitor used in the RC section of the linear pot). Adjust them each by 5 units towards the center (i.e. 505 and 120) as a safety buffer and use these values for limhigh and limlow. Enter and run DM01A_LimitCycle.bs2 with your own values for limhigh and limlow.

4 Rev. A DM01 Operating Guide Page 4 of 7 3/1/07 ' DM01 Adapter Board - DM01A_LimitCycle.bs2 ' Cycle the DM01 between high and low limits. limhigh CON 505 limlow CON 120 ' Linear pot position measurement ' Contraction limit ' Relaxation limit HIGH 7 ' Initialize pin 7 ' Begin main loop. PAUSE 20 ' Pause for capacitors to charge ' Measure position HIGH 7 ' Reset pin 7 DEBUG CLS, "Position = ", DEC pos ' Display the measured position IF pos > limhigh THEN LOW 14 ELSEIF pos < limlow THEN HIGH 14 ' DM01 has finished actuation ' Turn off DM01 ' DM01 has finished relaxing ' Turn on DM01 The higher the power of your voltage source, the faster the actuator will operate try playing with different input voltages (always starting at low, slow values) and observe the behavior of the actuator. Section 4 Advanced Hardware Setup This example sends a full powered pulse to the actuator whenever the electrode is touched and measures the maximum displacement. Adjusting the power supply voltage will demonstrate the effect varying current levels have on contraction speed. This setup requires more complicated circuit construction, but is very simple to program. Assembly the circuit shown in Figure 2 on the breadboard of your BASIC Figure 2: Touch sensor and control loop circuit schematic. Stamp HomeWork Board, and confirm the linear potentiometer is mounted as described in section 2. The electrode can be almost any piece of conductive material try experimenting with different items lying around. Note that you do not need to make physical contact with the electrode to activate it: the conductor may even be covered with a thin insulator. Once the hardware is in place, enter and run DM01A_Pulse.bs2 on the Stamp.

5 Rev. A DM01 Operating Guide Page 5 of 7 3/1/07 ' DM01A_Pulse.bs2 ' Full power on for a specified time whenever a button is depressed ' Measured position variable IF IN2=0 THEN ' Electrode activated HIGH 7 ' Charge position capacitors PULSOUT 14,50000 ' 100ms pulse (maximum is ms) PULSOUT 14,50000 ' 100ms pulse makes 200ms PULSOUT 14,50000 ' 100ms pulse makes 300ms total ' Discharge time yields position DEBUG CLS,"Maximum = ",DEC pos ' Display the maximum position PAUSE 2000 ' Prevent rapid successions of pulses ' Continue forever Try changing the voltage of your power source and watch how the maximum displacement displayed on the debug terminal and the rate of contraction change. This is because more thermal energy is deposited into the wire, increasing its temperature more. Note that this relationship is not linear; when energy is added faster, the temperature goes up exponentially because there is less time for the wire to dissipate heat, and more of the input energy goes into changing the phase of the wire. Section 5 Advanced Software and Hardware Setup This example uses a touch sensor (electrode) to cause the DM01 to actuate at a constant speed while the electrode is touched, and hold position when the electrode is bare. Pressing the reset button on the HomeWork Board will reset the actuator and allow it to relax. The software limits will prevent damage to the DM01. Warning: do not leave the circuit powered in the intermediate state for too long: you can build in a software timeout of seconds to prevent this condition. Assemble the circuit as shown in the schematic in Figure 2 as described in Section 4. Enter and run DM01A_SpeedAndHold.bs2 with your own values for limhigh and limlow (from Section 3). ' DM01 Adapter Board - DM01A_SpeedAndHold.bs2 ' Move at controlled speed when button active. ' Hold position when button released. ' Reset to beginning when reset pressed. setinc VAR Word set VAR Word err VAR Word PWMDuty VAR Word timeout VAR Word ' Position measurement ' Setpoint used for incrementing ' Setpoint used for position ' set/setfactor - pos ' Duty cycle for the PWM signal ' keeps track of running time

6 Rev. A DM01 Operating Guide Page 6 of 7 3/1/07 speed CON 25 setfactor CON 10 Kp CON 1 limhigh CON 505 limlow CON 120 ' Speed to move at ' Real setpoint = set/setfactor ' Proportional gain ' Contraction limit ' Relaxation limit HIGH 7 ' Initialize pin 7 setinc = limlow*setfactor ' Initialize to lower limit set = limlow ' Initialize to lower limit timeout = 0 ' Initialize ' Begin main loop. IF set > limlow THEN ' Actuator is powered timeout = timeout + 1 ' Increment timeout counter ELSE timeout = 0 ' Reset count because unpowered IF timeout > 1100 THEN ' After 30 second of activation... set = limlow ' Reset the set points setinc = limlow*setfactor ' Reset the set points timeout = 0 ' Restart timeout count ' Measure discharge HIGH 7 ' Reset pin 7 'DEBUG CLS, "Position = ",DEC pos ' Display the measured position 'DEBUG CR,"Setpoint = ", SDEC set ' Display setpoint IF IN2 = 0 AND set<limhigh THEN setinc = setinc + speed ' Advance at desired speed set = setinc/setfactor err = set - pos IF err >= THEN PWMDuty = 0 ELSE PWMDuty = err*kp ' Negative rollover IF PWMDuty > 255 THEN ' PWM only accepts up to 255 PWMDuty = 255 IF pos > limhigh THEN LOW 14 ELSE PWM 14, PWMDuty, 20 ' DM01 has finished actuation ' Turn off DM01 ' Actuate with a PWM Try adjusting the speed and Kp variables to see how the DM01 reacts. You can also try adding more advanced logic, such as having the set-point reset automatically once the limit is reached, or allowing the touch sensor input to increase the speed, such that the actuator will continue moving at constant speed when the electrode is bare.

7 Rev. A DM01 Operating Guide Page 7 of 7 3/1/07 Parallax Board of Education Micro-Controller Kit (MIGA components not shown) DM01 linear actuators are a well-proven and reliable technology, but we can t predict the numerous applications in which they will be used. Please contact us for assistance in safely using the DM01 in your application. When used properly, the DM01 actuators will provide many cycles of trouble-free operation. We hope you find that MIGA Motor Company devices are the solution to your motion problems. The recommendations, data, and specifications in this publication are believed to be accurate and reliable. However, it is the responsibility of the product user to determine the suitability of MIGA Motor Company products for a specific application. While defective products will be promptly replaced without charge if promptly returned, no liability is assumed beyond such replacement. These products are protected by one or more of the following patents: 6,326,707; 6,574,958; 6,762,515; 6,832,477; 6,928,812; 7,021,055; 2,391,746 (Canada); 772,107 (Australia); (China); EP 1,203,156 (EU); / (Taiwan) and others pending. Contents and trademarks copyright 2007 MIGA Motor Company. All rights reserved.

Flexiforce Demo Kit (#28017) Single Element Pressure Sensor

Flexiforce Demo Kit (#28017) Single Element Pressure Sensor 599 Menlo Drive, Suite 100 Rocklin, California 95765, USA Office: (916) 624-8333 Fax: (916) 624-8003 General: info@parallaxinc.com Technical: support@parallaxinc.com Web Site: www.parallaxinc.com Educational:

More information

Basic Machine Interface Options

Basic Machine Interface Options Limit Switch Version (515) 232-3188 www.razorgage.com Basic Machine Interface Options The Tool Safe Sensor is a limit switch to be installed on the user s saw, drill press, punch press, or whatever the

More information

MAGPOWR Spyder-Plus-S1 Tension Control

MAGPOWR Spyder-Plus-S1 Tension Control MAGPOWR TENSION CONTROL MAGPOWR Spyder-Plus-S1 Tension Control Instruction Manual Figure 1 EN MI 850A351 1 A COPYRIGHT All of the information herein is the exclusive proprietary property of Maxcess International,

More information

Vehicle of Revolution: How many turns will it take?

Vehicle of Revolution: How many turns will it take? Vehicle of Revolution: How many turns will it take? A SMART project; Funded by the National Science Foundation Polytechnic University Mechatronics Department Headed by Professor Vikram Kapila Group 2:

More information

G203V / G213V MANUAL STEP MOTOR DRIVE

G203V / G213V MANUAL STEP MOTOR DRIVE G203V / G213V MANUAL STEP MOTOR DRIVE PRODUCT DIMENSIONS PHYSICAL AND ELECTRICAL RATINGS Minimum Maximum Units Supply Voltage 18 80 VDC Motor Current 0 7 A Power Dissipation 1 13 W Short Circuit Trip 10

More information

Implementation Notes. Solar Group

Implementation Notes. Solar Group Implementation Notes Solar Group The Solar Array Hardware The solar array is made up of 42 panels each rated at 0.5V and 125mA in noon sunlight. Each individual cell contains a solder strip on the top

More information

Electronic Ballast EVG 2000-T

Electronic Ballast EVG 2000-T Electronic Ballast EVG 2000-T Operating Manual Table of contents 1 Description 1.1 Advantages of this ballast... 3 1.2 Functional principle... 3 1.3 Energization... 4 1.4 Visualization... 5 1.5 Indications

More information

CN0055 & CN0055B DC to DC NEGATIVE RESISTANCE SPEED CONTROL

CN0055 & CN0055B DC to DC NEGATIVE RESISTANCE SPEED CONTROL CN0055 & CN0055B DC to DC NEGATIVE RESISTANCE SPEED CONTROL 0 M P A N Y 3879 SOUTH MAIN STREET 714-979-6491 SANTA ANA, CALIFORNIA 92707-5710 U.S.A. This manual contains information for installing and operating

More information

Silvertel. Ag Features. Multi-Stage Charging. Battery Reversal Protection. Reduced Power Consumption. Wide DC or AC Input Voltage Range

Silvertel. Ag Features. Multi-Stage Charging. Battery Reversal Protection. Reduced Power Consumption. Wide DC or AC Input Voltage Range Silvertel V1.1 October 2012 Pb 1 Features Multi-Stage Charging Battery Reversal Protection Reduced Power Consumption Wide DC or AC Input Voltage Range High Efficiency DC-DC Converter Programmable Charge

More information

Appendix A: Motion Control Theory

Appendix A: Motion Control Theory Appendix A: Motion Control Theory Objectives The objectives for this appendix are as follows: Learn about valve step response. Show examples and terminology related to valve and system damping. Gain an

More information

USER'S MANUAL MODEL DPS32PG1 DRIVER PACK

USER'S MANUAL MODEL DPS32PG1 DRIVER PACK USER'S MANUAL MODEL DPS32PG1 DRIVER PACK ANAHEIM AUTOMATION 4985 E. Landon Drive Anaheim, CA 92807 Phone: (714) 992-6990 Fax: (714) 992-0471 http://www.anaheimautomation.com Email: info@anaheimautomation.com

More information

EEL Project Design Report: Automated Rev Matcher. January 28 th, 2008

EEL Project Design Report: Automated Rev Matcher. January 28 th, 2008 Brad Atherton, masscles@ufl.edu, 352.262.7006 Monique Mennis, moniki@ufl.edu, 305.215.2330 EEL 4914 Project Design Report: Automated Rev Matcher January 28 th, 2008 Project Abstract Our device will minimize

More information

ELM327 OBD to RS232 Interpreter

ELM327 OBD to RS232 Interpreter OBD to RS232 Interpreter Description Almost all new automobiles produced today are required, by law, to provide an interface from which test equipment can obtain diagnostic information. The data transfer

More information

DMX-A2-DRV Integrated Advanced Step Motor Driver

DMX-A2-DRV Integrated Advanced Step Motor Driver DMX-A2-DRV Integrated Advanced Step Motor Driver DMX-A2-DRV Manual page 1 rev 3.10 COPYRIGHT 2008 ARCUS, ALL RIGHTS RESERVED First edition, May 2008 ARCUS TECHNOLOGY copyrights this document. You may not

More information

Supplemental Configuration Guide

Supplemental Configuration Guide METROLOGIC INSTRUMENTS, INC. Area Imaging Bar Code Supplemental Configuration Guide Copyright 2007 by Metrologic Instruments, Inc. All rights reserved. No part of this work may be reproduced, transmitted,

More information

Up to 3 W solar and USB battery charger for single-cell Li-Ion and Li-Po batteries based on the SPV1040, STBC21 and STC3100

Up to 3 W solar and USB battery charger for single-cell Li-Ion and Li-Po batteries based on the SPV1040, STBC21 and STC3100 Up to 3 W solar and USB battery charger for single-cell Li-Ion and Li-Po batteries based on the SPV1040, STBC21 and STC3100 Features Data brief Solar section Solar energy harvester with proprietary Perturb

More information

G213V STEP MOTOR DRIVE REV 7: March 25, 2011

G213V STEP MOTOR DRIVE REV 7: March 25, 2011 Thank you for purchasing the G213V drive. The G213V is part of Geckodrive s new generation of CPLD-based microstep drives. It has short-circuit protection for the motor outputs, over-voltage and under-voltage

More information

TM4500. Track Mounted Step Motor Driver. User s Guide. CE Certified and RoHS Compliant #L010060

TM4500. Track Mounted Step Motor Driver. User s Guide. CE Certified and RoHS Compliant #L010060 TM4500 Track Mounted Step Motor Driver User s Guide CE Certified and RoHS Compliant A N A H E I M A U T O M A T I O N 4985 E. Landon Drive Anaheim, CA 92807 e-mail: info@anaheimautomation.com (714) 992-6990

More information

PEAKTRONICS DMC-101 ADDITIONAL FEATURES. DC Motor Controller, 5A DMC-101

PEAKTRONICS DMC-101 ADDITIONAL FEATURES. DC Motor Controller, 5A DMC-101 PEAKTRONICS The Peaktronics DC Motor Controller is used for proportional positioning of actuators that use either DC motors or DC solenoids. The wide operating range of the (10 to 30 VDC and loads up to

More information

WWW.MORETRACTION.COM TMS-5500-SL ELECTRONIC TRACTION CONTROL US PATENT 6,577,944 Other Patents Pending COPYRIGHT NOTICE Copyright 1999-2013 Davis Technologies, LLC. All rights reserved. Information in

More information

Kelly HSR Series Motor Controller with Regen User s Manual V 3.3. Kelly HSR Opto-Isolated Series Motor Controller with Regen.

Kelly HSR Series Motor Controller with Regen User s Manual V 3.3. Kelly HSR Opto-Isolated Series Motor Controller with Regen. Kelly HSR Opto-Isolated Series Motor Controller with Regen User s Manual HSR72601 HSR72801 HSR12401 HSR12601 HSR12901 HSR14301 HSR14501 HSR14701 Rev.3.3 Dec. 2011 Contents Chapter 1 Introduction... 2 1.1

More information

PRO-COMP/PHANTOM TACH

PRO-COMP/PHANTOM TACH 2650-895B INSTALLATION INSTRUCTIONS 5 single channel PRO-COMP/PHANTOM TACH COPYRIGHT PATENT 5 4 6 3 PENDING 7 8 PLAYBACK 9 2 0 1 AUTO METER PRODUCTS, INC. SYCAMORE, IL USA MADE RPM x 1000 IN USA MENU SELECT

More information

Introduction to Internet of Things Prof. Sudip Misra Department of Computer Science & Engineering Indian Institute of Technology, Kharagpur

Introduction to Internet of Things Prof. Sudip Misra Department of Computer Science & Engineering Indian Institute of Technology, Kharagpur Introduction to Internet of Things Prof. Sudip Misra Department of Computer Science & Engineering Indian Institute of Technology, Kharagpur Lecture 04 Actuation So, this particular lecture is on actuation.

More information

BLD75-1. Bilevel Step Motor Driver. User s Guide. 910 East Orangefair Lane, Anaheim, CA

BLD75-1. Bilevel Step Motor Driver. User s Guide. 910 East Orangefair Lane, Anaheim, CA BLD75-1 Bilevel Step Motor Driver User s Guide A N A H E I M A U T O M A T I O N 910 East Orangefair Lane, Anaheim, CA 92801 e-mail: info@anaheimautomation.com (714) 992-6990 fax: (714) 992-0471 website:

More information

Instruction Manual August milltronics MSI BELT SCALE

Instruction Manual August milltronics MSI BELT SCALE Instruction Manual August 2003 milltronics MSI BELT SCALE Safety Guidelines Warning notices must be observed to ensure personal safety as well as that of others, and to protect the product and the connected

More information

ICS1702EB. ICS1702 Evaluation Board. Table 1 Cells R6 R8 1 Open Short 2 2.0k 2.0k 3 1.0k 2.0k 4 1.0k 3.0k 5 3.0k 12k 6 2.0k 10k 7 2.0k 12k 8 1.3k 9.

ICS1702EB. ICS1702 Evaluation Board. Table 1 Cells R6 R8 1 Open Short 2 2.0k 2.0k 3 1.0k 2.0k 4 1.0k 3.0k 5 3.0k 12k 6 2.0k 10k 7 2.0k 12k 8 1.3k 9. ICS70EB ICS70 Evaluation Board General Description Galaxy Power, Inc.'s ICS70 Evaluation Board allows quick evaluation of the ICS70 Charge Controller for Nickel-Cadmium and Nickel-Metal Hydride Batteries.

More information

STEVAL-ISV012V1. Up to 5 W solar battery charger for single-cell Li-ion and Li-Pol batteries based on the SPV1040 and L6924D.

STEVAL-ISV012V1. Up to 5 W solar battery charger for single-cell Li-ion and Li-Pol batteries based on the SPV1040 and L6924D. Up to 5 W solar battery charger for single-cell Li-ion and Li-Pol batteries based on the SPV1040 and L6924D Data brief Features SPV1040: solar boost converter with embedded maximum power point tracking

More information

APPLICATION NOTE. Selecting Inductors for DC-DC Converters and Filters in Automotive Applications INTRODUCTION. 9/13 e/ic1338

APPLICATION NOTE. Selecting Inductors for DC-DC Converters and Filters in Automotive Applications INTRODUCTION. 9/13 e/ic1338 Selecting Inductors for DC-DC Converters and Filters in Automotive Applications APPLICATION NOTE INTRODUCTION While automotive manufacturers are doing their part to offer alternative powered vehicles to

More information

H2B-ACDC H3B-ACDC H5B-ACDC. 1 Channel Current Sensor 2 Channel Current Sensor. 3 Channel Current Sensor 5 Channel Current Sensor

H2B-ACDC H3B-ACDC H5B-ACDC. 1 Channel Current Sensor 2 Channel Current Sensor. 3 Channel Current Sensor 5 Channel Current Sensor The HXB-ACDC-XX fixed offset, fixed gain series Hall effect current sensor transducer board delivers output voltage proportional to the amount of current detected in the wire being measured. HB-ACDC H2B-ACDC

More information

FOR SERVICE SEND TO: AUTO METER PRODUCTS, INC. 413 W. Elm St., Sycamore, IL USA (815) us at

FOR SERVICE SEND TO: AUTO METER PRODUCTS, INC. 413 W. Elm St., Sycamore, IL USA (815) us at 2650-887F INSTALLATION INSTRUCTIONS 5 single channel ultimate tach COPYRIGHT PATENT 5 4 6 3 PENDING 7 8 PLAYBACK 9 2 0 1 AUTO METER PRODUCTS, INC. SYCAMORE, IL USA MADE R P M X1000 IN USA ENTER START PAUSE

More information

INSTALLATION INSTRUCTIONS 5" SINGLE CHANNEL ULTIMATE TACH

INSTALLATION INSTRUCTIONS 5 SINGLE CHANNEL ULTIMATE TACH Instr. No. 2650-887D INSTALLATION INSTRUCTIONS 5" SINGLE CHANNEL ULTIMATE TACH IMPORTANT WEAR SAFETY GLASSES 5 4 6 COPYRIGHT PATENT PENDING 3 7 8 PLAYBACK 9 2 0 1 AUTO METER PRODUCTS, INC. SYCAMORE, IL

More information

Air Conditioning Clinic. HVAC System Control One of the Systems Series TRG-TRC017-EN

Air Conditioning Clinic. HVAC System Control One of the Systems Series TRG-TRC017-EN Air Conditioning Clinic HVAC System Control One of the Systems Series TRG-TRC017-EN NO POSTAGE NECESSARY IF MAILED IN THE UNITED STATES BUSINESS REPLY MAIL FIRST-CLASS MAIL PERMIT NO 11 LA CROSSE, WI POSTAGE

More information

MDC Series

MDC Series MDC151-012601 Series 12V @ 60A Brushless DC Controller User s Guide A N A H E I M A U T O M A T I O N 910 East Orangefair Lane, Anaheim, CA 92801 e-mail: info@anaheimautomation.com (714) 992-6990 fax:

More information

Nickel Cadmium and Nickel Hydride Battery Charging Applications Using the HT48R062

Nickel Cadmium and Nickel Hydride Battery Charging Applications Using the HT48R062 ickel Cadmium and ickel Hydride Battery Charging Applications Using the HT48R062 ickel Cadmium and ickel Hydride Battery Charging Applications Using the HT48R062 D/: HA0126E Introduction This application

More information

ANDCO Eagle Actuator Instruction Manual

ANDCO Eagle Actuator Instruction Manual ANDCO Actuators ANDCO Eagle Actuator Instruction Manual The information contained in this manual is essential to safe, successful, long term operation of your Andco Eagle Linear Actuator. Read and follow

More information

FAN-STOP INSTRUCTION MANUAL

FAN-STOP INSTRUCTION MANUAL Form 1289 FAN-STOP INSTRUCTION MANUAL IMPORTANT Read these instructions fully BEFORE INSTALLING. Equipment damage and personal injury may result from improper installation and/or use. 1. Instructions 1.

More information

DPD72001, DPD Unipolar Step Motor Driver. User s Guide E. Landon Drive Anaheim, CA

DPD72001, DPD Unipolar Step Motor Driver. User s Guide E. Landon Drive Anaheim, CA DPD72001, DPD72002 Unipolar Step Motor Driver User s Guide A N A H E I M A U T O M A T I O N 4985 E. Landon Drive Anaheim, CA 92807 e-mail: info@anaheimautomation.com (714) 992-6990 fax: (714) 992-0471

More information

BLHV, BLHV-1. High Voltage Step Motor Driver. User s Guide. (714) fax: (714) website:

BLHV, BLHV-1. High Voltage Step Motor Driver. User s Guide. (714) fax: (714) website: BLHV, BLHV-1 High Voltage Step Motor Driver User s Guide A N A H E I M A U T O M A T I O N 910 East Orangefair Lane, Anaheim, CA 92801 e-mail: info@anaheimautomation.com #L010015 (714) 992-6990 fax: (714)

More information

MANUAL TROUBLESHOOTING. ECM Motor. ECM / ECM-DX Series. v100 Issue Date: 08/15/ Price Industries Limited. All rights reserved.

MANUAL TROUBLESHOOTING. ECM Motor. ECM / ECM-DX Series. v100 Issue Date: 08/15/ Price Industries Limited. All rights reserved. MANUAL ECM Motor ECM / ECM-DX Series v100 Issue Date: 08/15/17 2017 Price Industries Limited. All rights reserved. ECM MOTOR TABLE OF CONTENTS ECM Motor Background...1 ECM Motor Power and Control Connectors...2

More information

30A BLDC ESC. Figure 1: 30A BLDC ESC

30A BLDC ESC. Figure 1: 30A BLDC ESC 30A BLDC ESC Figure 1: 30A BLDC ESC Introduction This is fully programmable 30A BLDC ESC with 5V, 3A BEC. Can drive motors with continuous 30Amp load current. It has sturdy construction with 2 separate

More information

Troubleshooting Bosch Proportional Valves

Troubleshooting Bosch Proportional Valves Troubleshooting Bosch Proportional Valves An Informative Webinar Developed by GPM Hydraulic Consulting, Inc. Instructed By Copyright, 2009 GPM Hydraulic Consulting, Inc. TABLE OF CONTENTS Bosch Valves

More information

BLDPN30001 Series. 30A Brushless DC Controller. User s Guide E. Landon Drive Anaheim, CA

BLDPN30001 Series. 30A Brushless DC Controller. User s Guide E. Landon Drive Anaheim, CA BLDPN30001 Series 30A Brushless DC Controller User s Guide A N A H E I M A U T O M A T I O N 4985 E. Landon Drive Anaheim, CA 92807 e-mail: info@anaheimautomation.com (714) 992-6990 fax: (714) 992-0471

More information

T21 Thermal Differential Switch

T21 Thermal Differential Switch T21 Thermal Differential Switch General Instructions The T21 Point Level Switch is a state-of-the-art in liquid level and interface measurement and control. Level detection is accomplished by using a high-resolution

More information

Devices Supported: KEB48220 KEB48221 KEB48300 KEB48301 KEB48400 KEB48401 KEB48600 KEB48601 KEB72330 EB KEB72450 KEB EB KEB72600 KEB

Devices Supported: KEB48220 KEB48221 KEB48300 KEB48301 KEB48400 KEB48401 KEB48600 KEB48601 KEB72330 EB KEB72450 KEB EB KEB72600 KEB Kelly KEB Brushless Motor Controller User s Manual Devices Supported: KEB48220 KEB48221 KEB48300 KEB48301 KEB48400 KEB48401 KEB48600 KEB48601 KEB72330 KEB EB72 72331 KEB72450 KEB EB72 72451 KEB72600 KEB

More information

Features: Enhanced throttle response, excellent acceleration, strong brakes and throttle linearity. Using LED program card to make adjustments.

Features: Enhanced throttle response, excellent acceleration, strong brakes and throttle linearity. Using LED program card to make adjustments. Thank you for purchasing the ZTW Brushless Electronic Speed Controller (ESC). The ZTW 1:10 Scale BEAST Series ESC is specifically designed for operating 4 Pole Sensorless brushless motors. This is a high

More information

Kelly KDHA High Voltage Series/PM Motor Controller User s Manual

Kelly KDHA High Voltage Series/PM Motor Controller User s Manual Kelly KDHA High Voltage Series/PM Motor Controller User s Manual KDH07500A KDH07501A KDH07700A KDH07701A KDH09400A KDH09401A KDH09500A KDH09501A KDH12400A KDH12401A KDH12500A KDH12501A KDH14300A KDH14301A

More information

LSI SAS e HBA Temperature and Airflow

LSI SAS e HBA Temperature and Airflow LSI SAS 9206-16e HBA Temperature and Airflow Application Note Preliminary, Version 1.0 DB06-000784-00 Revision History Version and Date Preliminary, Version 1.0, Initial release of this document. Description

More information

AKD Controlled Stop and Holding Brake Timing Jimmy Coleman, Rev. B, 5/1/2017

AKD Controlled Stop and Holding Brake Timing Jimmy Coleman, Rev. B, 5/1/2017 AKD Controlled Stop and Holding Brake Timing Jimmy Coleman, Rev. B, 5/1/2017 Description: Using a Controlled Stop input is the only way to do a controlled deceleration and control the timing of engaging/disengaging

More information

ELECTRIC SCHEMATICS LS1 LS2. "1532ES / 1932ES" Service & Parts Manual - ANSI Specifications March 2008 Page 5-9 ART_2236 ART_2243

ELECTRIC SCHEMATICS LS1 LS2. 1532ES / 1932ES Service & Parts Manual - ANSI Specifications March 2008 Page 5-9 ART_2236 ART_2243 ELECTRIC SCHEMATICS NOTES: (Unless otherwise specified). Switch S BASE/PLATFORM makes contact from the CENTER to the LEFT position when placed in BASE.. Switch S UP/DOWN makes contact from the CENTER to

More information

Table 1: 2-pin Terminal Block J1 Functional description of BSD-02LH Module Pin # Pin Description Table 2: 10-pin Header J2 Pin # Pin Description

Table 1: 2-pin Terminal Block J1 Functional description of BSD-02LH Module Pin # Pin Description Table 2: 10-pin Header J2 Pin # Pin Description Functional description of BSD-02LH Module The BSD-02LH module is the part of the BSD-02 family of drivers. The main difference is higher microstepping resolution. The BSD-02LH is suitable for driving bipolar

More information

DPBHV001, DPZHV002. High Voltage Step Motor Driver. User s Guide. (714) fax: (714) website:

DPBHV001, DPZHV002. High Voltage Step Motor Driver. User s Guide. (714) fax: (714) website: DPBHV001, DPZHV002 High Voltage Step Motor Driver User s Guide A N A H E I M A U T O M A T I O N 910 East Orangefair Lane, Anaheim, CA 92801 e-mail: info@anaheimautomation.com (714) 992-6990 fax: (714)

More information

Electronic TRACTION CONTROL

Electronic TRACTION CONTROL WWW.MORETRACTION.COM TMS-Drag-Sportsman-MAP Electronic TRACTION CONTROL US PATENT 6,577,944 Other Patents Pending COPYRIGHT NOTICE Copyright 1999-2013 Davis Technologies, LLC. All rights reserved. Information

More information

Sierra 80 Volt Brushless DC Motor Controller Product Specification

Sierra 80 Volt Brushless DC Motor Controller Product Specification Sierra 80 Volt Brushless DC Motor Controller Product Specification Assembly 025F0139 600A0620 Rev. A December 2, 2008 025F0139 Brushless DC Motor Controller Page 1 Revision History EC # Date Rev Description

More information

Rosemount 8750WA Magnetic Flowmeter System For Water and Wastewater Industries

Rosemount 8750WA Magnetic Flowmeter System For Water and Wastewater Industries Product Data Sheet January 214 813-1-475, Rev FA Rosemount 875WA Magnetic Flowmeter System For Water and Wastewater Industries THE 875WA MAGNETIC FLOWMETER Rosemount reliability in a customized offering

More information

ELECTRONIC TRACTION CONTROL USER MANUAL

ELECTRONIC TRACTION CONTROL USER MANUAL DRAG-SPORTSMAN N2O For ELECTRONIC TRACTION CONTROL USER MANUAL TELEPHONE 828.645.1505 FAX 828.645.1525 WWW.MORETRACTION.COM US PATENT 6,577,944 Disclaimer...2 Introduction... 3 How Does It Work. 4 Installation...

More information

CHIP. Reverse Osmosis System Controller Documentation

CHIP. Reverse Osmosis System Controller Documentation CHIP Reverse Osmosis System Controller Documentation Document Revised June, 2017. 2017 icontrols Technologies Inc icontrols Technologies Inc. 1821 Empire Industrial Court, Suite A Santa Rosa, CA 95403

More information

User's Manual O

User's Manual O 11/3/99 3535.ai User's Manual 3535 3535 O Step Motor Drivers Copyright 1998 Applied Motion Products, Inc. 404 Westridge Drive Watsonville, CA 95076 Tel (831) 761-6555 (800) 525-1609 Fax (831) 761-6544

More information

Yaskawa Electric America Unit Troubleshooting Manual Section One: Introduction & Checks Without Power GPD 506/P5 and GPD 515/G5 (0.

Yaskawa Electric America Unit Troubleshooting Manual Section One: Introduction & Checks Without Power GPD 506/P5 and GPD 515/G5 (0. Yaskawa Electric America Unit Troubleshooting Manual Section One: Introduction & Checks Without Power GPD 506/P5 and GPD 515/G5 (0.4 ~ 160kW) Page 1 Introduction This manual is divided into three sections:

More information

Application Notes. Calculating Mechanical Power Requirements. P rot = T x W

Application Notes. Calculating Mechanical Power Requirements. P rot = T x W Application Notes Motor Calculations Calculating Mechanical Power Requirements Torque - Speed Curves Numerical Calculation Sample Calculation Thermal Calculations Motor Data Sheet Analysis Search Site

More information

Dynamic Adjustment Procedure for 700-series Digital Controls. Application Note (Revision A,8/1998) Original Instructions

Dynamic Adjustment Procedure for 700-series Digital Controls. Application Note (Revision A,8/1998) Original Instructions Application Note 01304 (Revision A,8/1998) Original Instructions Dynamic Adjustment Procedure for 700-series Digital Controls (700, 701, 701A, 702, 705, 721, 723, 723PLUS, 828) General Precautions Read

More information

BRKC-180. User s Manual and Installation Guide. Braking circuit. Contents. 1. Safety, policy and warranty.

BRKC-180. User s Manual and Installation Guide. Braking circuit. Contents. 1. Safety, policy and warranty. BRKC-180 Braking circuit User s Manual and Installation Guide Contents 1. Safety, policy and warranty. 1.1. Safety notes. 1.2. Policy. 1.3. Warranty. 2. Electric specifications. 2.1.Operation ranges. 3.

More information

Utilizing Kollmorgen Goldline Series Servo Motors with the AKD Drive

Utilizing Kollmorgen Goldline Series Servo Motors with the AKD Drive Group Drives and Motors Date June 30 2017 Series AKD and Goldline Revised Element Group Application Revision F Element Mating Author M. Brown # Of Pages 18 Utilizing Kollmorgen Goldline Series Servo Motors

More information

EV-EMCU Electric Vehicle - Economy Mode Control Unit

EV-EMCU Electric Vehicle - Economy Mode Control Unit EV-EMCU Electric Vehicle - Economy Mode Control Unit Vanessa Baltacioglu Shauntice Diaz Chris Chadman Group 4 General Project Description A Overall control module Project to implement Description economy

More information

Step Motor. Mechatronics Device Report Yisheng Zhang 04/02/03. What Is A Step Motor?

Step Motor. Mechatronics Device Report Yisheng Zhang 04/02/03. What Is A Step Motor? Step Motor What is a Step Motor? How Do They Work? Basic Types: Variable Reluctance, Permanent Magnet, Hybrid Where Are They Used? How Are They Controlled? How To Select A Step Motor and Driver Types of

More information

User Manual. TU004 - Bipolar Stepper Motor driver

User Manual. TU004 - Bipolar Stepper Motor driver User Manual TU004 - Bipolar Stepper Motor driver For any questions, concerns, or issues; submit them to support@tu-eshop.com Technology Uncorked LLP provides the enclosed product(s) under the following

More information

Instruction Manual August milltronics MMI BELT SCALE

Instruction Manual August milltronics MMI BELT SCALE Instruction Manual August 2003 milltronics MMI BELT SCALE Safety Guidelines Warning notices must be observed to ensure personal safety as well as that of others, and to protect the product and the connected

More information

HYDRA 120 & HYDRA 240 OPERATION MANUAL

HYDRA 120 & HYDRA 240 OPERATION MANUAL HYDRA 120 & HYDRA 240 OPERATION MANUAL The battery connector must be added to the power side of the controller (black capacitors, receiver connector, and red and black wire side). The red wire is the positive

More information

Coleman Air Diversion Controller Model C40

Coleman Air Diversion Controller Model C40 Coleman Air Diversion Controller Model C40 Designed for 12 volt battery based systems. The Coleman Air model C40 charge controller is a compact, simple to use controller specifically designed for use with

More information

AGN Unbalanced Loads

AGN Unbalanced Loads Application Guidance Notes: Technical Information from Cummins Generator Technologies AGN 017 - Unbalanced Loads There will inevitably be some applications where a Generating Set is supplying power to

More information

Bistable Rotary Solenoid

Bistable Rotary Solenoid Bistable Rotary Solenoid The bistable rotary solenoid changes state with the application of a momentary pulse of electricity, and then remains in the changed state without power applied until a further

More information

ST48-WHUV.102. Wiring diagram. Product description. PID controller. Order number

ST48-WHUV.102. Wiring diagram. Product description. PID controller. Order number ST48-WHUV.12 PID controller Order number 935.15 Wiring diagram Product description This micro-processed controller serves for temperature control at high measuring accuracy. Beside resistance sensors and

More information

Preliminary Study on Quantitative Analysis of Steering System Using Hardware-in-the-Loop (HIL) Simulator

Preliminary Study on Quantitative Analysis of Steering System Using Hardware-in-the-Loop (HIL) Simulator TECHNICAL PAPER Preliminary Study on Quantitative Analysis of Steering System Using Hardware-in-the-Loop (HIL) Simulator M. SEGAWA M. HIGASHI One of the objectives in developing simulation methods is to

More information

EE 370L Controls Laboratory. Laboratory Exercise #E1 Motor Control

EE 370L Controls Laboratory. Laboratory Exercise #E1 Motor Control 1. Learning Objectives EE 370L Controls Laboratory Laboratory Exercise #E1 Motor Control Department of Electrical and Computer Engineering University of Nevada, at Las Vegas To demonstrate the concept

More information

IV-3 VFD Shield for Arduino. Assembly Manual

IV-3 VFD Shield for Arduino. Assembly Manual June 2014 Table of Contents 1 Overview Features Applications 3 3 3 2 Assembly Hints 4 3 PCB Overview 5 4 Circuit Diagram 6 5 Assembly Diodes and IC socket Electrolytic capacitors Ceramic capacitors 10K

More information

INSTRUCTION MANUAL FOR VOLTAGE REGULATOR APR P/N

INSTRUCTION MANUAL FOR VOLTAGE REGULATOR APR P/N INSTRUCTION MANUAL FOR VOLTAGE REGULATOR APR 125-5 P/N 9168800100 Publication: 9168800990 Revision: J 03/09 INTRODUCTION This instruction manual provides information about the operation and installation

More information

Slip Ring Connection Board Version 1.0 User s Manual

Slip Ring Connection Board Version 1.0 User s Manual Slip Ring Connection Board Version 1.0 User s Manual Document Revision: 1.0 8/21/2010 Copyright by Scott Gray, 2010. Replication or reproduction in whole or in part is strictly prohibited without express

More information

Coleman Air Diversion Controller Model C40

Coleman Air Diversion Controller Model C40 Coleman Air Diversion Controller Model C40 Version 2.0 With Extended Diversion Mode Designed for 12 volt battery based systems. The Coleman Air model C40 charge controller is a compact, simple to use controller

More information

Dual Voltage Solar Power Charge Controller Board Connection & Operation V2.xx

Dual Voltage Solar Power Charge Controller Board Connection & Operation V2.xx Dual Voltage Solar Power Charge Controller Board Connection & Operation V2.xx Connection Instructions 1) Mount Board to a panel (Wood or Metal) using supplied spacers and screws. 2) Solar Start up 18 volts,

More information

Setup and Programming Manual

Setup and Programming Manual Microprocessor and Handy Terminal Setup and Programming Manual Versions U04 to U19 for Sliding Door Systems P/N 159000 Rev 7-2-07 The manufacturer, NABCO Entrances, Inc. suggests that this manual be given

More information

LM3647 Reference Design User s Manual

LM3647 Reference Design User s Manual LM3647 Reference Design User s Manual GENERAL DESCRIPTION The LM3647 is a charge controller for Nickel-Cadmium (Ni- Cd), Nickel-Metal Hydride (Ni-MH) or Lithium-Ion (Li-Ion) batteries. The device uses

More information

SHORT-STOP. Electronic Motor Brake Type G. Instructions and Setup Manual

SHORT-STOP. Electronic Motor Brake Type G. Instructions and Setup Manual Electronic Motor Brake Type G Instructions and Setup Manual Table of Contents Table of Contents Electronic Motor Brake Type G... 1 1. INTRODUCTION... 2 2. DESCRIPTION AND APPLICATIONS... 2 3. SAFETY NOTES...

More information

INSTRUCTION MANUAL 272-5X5 ANALOG TRANSMITTER (210 SERIES FLOW METERS) 272-5X7 ANALOG TRANSMITTER (220/240 SERIES FLOW METERS)

INSTRUCTION MANUAL 272-5X5 ANALOG TRANSMITTER (210 SERIES FLOW METERS) 272-5X7 ANALOG TRANSMITTER (220/240 SERIES FLOW METERS) INSTRUCTION MANUAL 272-5X5 ANALOG TRANSMITTER (210 SERIES FLOW METERS) 272-5X7 ANALOG TRANSMITTER (220/240 SERIES FLOW METERS) 272-5X8 BIDIRECTIONAL TRANSMITTER (210/240 SERIES FLOW METERS) TABLE OF CONTENTS

More information

Installation & Operation Manual. Electrak 10 Series / Electromechanical Linear Actuator

Installation & Operation Manual. Electrak 10 Series / Electromechanical Linear Actuator www..com Installation & Operation Manual Electrak 10 Series / Electromechanical Linear Actuator INTRODUCTION Thomson has many years of experience designing and manufacturing linear actuators for a wide

More information

RHINO MOTION CONTROLS

RHINO MOTION CONTROLS Installation Manual and Datasheet http://www.rhinomotioncontrols.com Page 1 [] Key Features Smooth and quiet operation at all speeds and extremely low motor heating Industrial grade performance for 2-Phase

More information

Chapter 1: Battery management: State of charge

Chapter 1: Battery management: State of charge Chapter 1: Battery management: State of charge Since the mobility need of the people, portable energy is one of the most important development fields nowadays. There are many types of portable energy device

More information

ASSEMBLY INSTRUCTIONS FOR NEW FK109 4 LED Railroad Crossing Flasher Kit WITH ADJUSTABLE FLASHING SPEED CONTROL with 4 Red 3mm Leds

ASSEMBLY INSTRUCTIONS FOR NEW FK109 4 LED Railroad Crossing Flasher Kit WITH ADJUSTABLE FLASHING SPEED CONTROL with 4 Red 3mm Leds ASSEMBLY INSTRUCTIONS FOR NEW FK109 4 LED Railroad Crossing Flasher Kit WITH ADJUSTABLE FLASHING SPEED CONTROL with 4 Red 3mm Leds Description: Very easy to build, The FK109 Led Flasher kit makes the perfect

More information

SERIES Pulse and 12 Pulse DC Power Supplies for Electrocoating and Industrial DC Powered Systems MODELS 506 & 5012

SERIES Pulse and 12 Pulse DC Power Supplies for Electrocoating and Industrial DC Powered Systems MODELS 506 & 5012 100V to 1000V DC 100A to 5000A DC SERIES 50 MODELS 506 & 5012 6 Pulse and 12 Pulse DC Power Supplies for Electrocoating and Industrial DC Powered Systems Applications: Electrocoating Ion Nitriding Magnet

More information

Slippage Detection and Traction Control System

Slippage Detection and Traction Control System Slippage Detection and Traction Control System May 10, 2004 Sponsors Dr. Edwin Odom U of I Mechanical Engineering Department Advisors Dr. Jim Frenzel Dr. Richard Wall Team Members Nick Carter Kellee Korpi

More information

MSI SINGLE IDLER BELT SCALE

MSI SINGLE IDLER BELT SCALE MSI SINGLE IDLER BELT SCALE Instruction Manual PL-319 January 2001 33453190 Rev. 1.2 Safety Guidelines Warning notices must be observed to ensure personal safety as well as that of others, and to protect

More information

17429X.00 SERIES MODELS:

17429X.00 SERIES MODELS: LEESON ELECTRIC MOTORS, GEARMOTORS AND DRIVES R User s Manual 17429X.00 SERIES MODELS: 174298.00 174299.00 PWM REGENERATIVE DC TO DC DRIVES II Table of Contents 17429X.00 Drives...............................................................

More information

MANUAL SERVICE MANUAL FOR HYDRASTAR HYDRAULIC TRAILER BRAKE ACTUATORS

MANUAL SERVICE MANUAL FOR HYDRASTAR HYDRAULIC TRAILER BRAKE ACTUATORS MANUAL 440-1008 SERVICE MANUAL FOR HYDRASTAR HYDRAULIC TRAILER BRAKE ACTUATORS THIS DOCUMENT TO BE USED FOR HBA-10, HBA-12, HBA-16, MHBA-10, MHBA-12, MHBA-16 ACTUATORS ECN 04007 Manual 440-1008 Rev E Page

More information

PREPOINT CHAMFER GRINDER MODEL Section 1. Set up and operation

PREPOINT CHAMFER GRINDER MODEL Section 1. Set up and operation PREPOINT CHAMFER GRINDER MODEL 6-94 Set up and operation Section 1 1. Installation of the proper size collet. This machine used a 5-C style collet. This can be changed by loosening of he set screw located

More information

INSTALLATION GUIDE Table of Contents

INSTALLATION GUIDE Table of Contents CT-3100 Automatic transmission remote engine starter systems. What s included..2 INSTALLATION GUIDE Table of Contents Door lock toggle mode..... 4 Notice...2 Installation points to remember. 2 Features..2

More information

J1 Plug Pin Identification

J1 Plug Pin Identification D5 D D D D5 D ART_ J D D0 R R R R TB 0 D D D D D D J Plug Pin Identification PIN # WIRE # SIGNAL FUNCTION 0 INPUT Drive Reverse INPUT Drive Forward OUTPUT Brake, Decel Valve signal INPUT Steer Left 5 OUTPUT

More information

Silvertel. Ag Features. Multi-Stage Charging. Battery Reversal Protection. Reduced Power Consumption. Wide DC or AC Input Voltage Range

Silvertel. Ag Features. Multi-Stage Charging. Battery Reversal Protection. Reduced Power Consumption. Wide DC or AC Input Voltage Range Silvertel V1.3 October 2009 Datasheet Intelligent Pb 1 Features Multi-Stage Charging Battery Reversal Protection Reduced Power Consumption Wide DC or AC Input Voltage Range High Efficiency DC-DC Converter

More information

J1 Plug Pin Identification

J1 Plug Pin Identification D5 D8 D7 D4 D5 D ART_8 J 4 8 D D0 7 R R R R4 TB 80 D D D D4 D D J Plug Pin Identification PIN # WIRE # SIGNAL FUNCTION 0 INPUT Drive Reverse INPUT Drive Forward OUTPUT Brake, Decel Valve signal 4 8 INPUT

More information

INDIAN INSTITUTE OF TECHNOLOGY KHARAGPUR NPTEL ONLINE CERTIFICATION COURSE. On Industrial Automation and Control

INDIAN INSTITUTE OF TECHNOLOGY KHARAGPUR NPTEL ONLINE CERTIFICATION COURSE. On Industrial Automation and Control INDIAN INSTITUTE OF TECHNOLOGY KHARAGPUR NPTEL ONLINE CERTIFICATION COURSE On Industrial Automation and Control By Prof. S. Mukhopadhyay Department of Electrical Engineering IIT Kharagpur Topic Lecture

More information

DPS32001 and DPS32PS1

DPS32001 and DPS32PS1 DPS32001 and DPS32PS1 Driver Pack User s Guide A N A H E I M A U T O M A T I O N 4985 E. Landon Drive Anaheim, CA 92807 e-mail: info@anaheimautomation.com (714) 992-6990 fax: (714) 992-0471 website: www.anaheimautomation.com

More information

MD10. Engine Controller. Installation and User Manual for the MD10 Engine Controller. Full Version

MD10. Engine Controller. Installation and User Manual for the MD10 Engine Controller. Full Version MD10 Engine Controller Installation and User Manual for the MD10 Engine Controller. Full Version File: MartinMD10rev1.4.doc May 16, 2002 2 READ MANUAL BEFORE INSTALLING UNIT Receipt of shipment and warranty

More information

MDC Series

MDC Series MDC151-050101 Series 50V, 10A Brushless DC Controller User s Guide A N A H E I M A U T O M A T I O N 4985 E. Landon Drive Anaheim, CA 92807 e-mail: info@anaheimautomation.com (714) 992-6990 fax: (714)

More information