Guide to Eason 2000 Family & Compumotor ibe Smart Motors

Size: px
Start display at page:

Download "Guide to Eason 2000 Family & Compumotor ibe Smart Motors"

Transcription

1 Guide to Eason 2000 Family & Compumotor ibe Smart Motors Rev 1.0 P/N: This document contains: 1. Eason WinBuild 2000 application development methodology. 2. Quick explanation of hardware & software setup. 3. How to send/receive commands & data between Eason and the Compumotor ibe Smart Motors.

2 Suggested Application Development Process: 1. Construct a simple Eason WinBuild 2000 program that allows you to read/write to the smart motor. (Or start with the demo program in c:\program files\winbuild2000v4\samples\motion\.) 2. Download the program into the Eason, and verify communications to Compumotor ibe. 3. Tune your system using the Compumotor ibe development software, and create your motor control program. 4. Now expand your initial simple Eason 2000 program- use the Eason to set up the variables you wish to display/monitor/modify. 5. Create the rest of your HMI application with WinBuild Use the initial program as a base, and add your HMI and control tasks. The Eason 2000 Family product is an excellent HMI product- let the Eason handle the data storage, operator input, calculations, decision making, and communications in your application. Optimal usage of both components will create an efficient, elegant solution. Hardware Setup: Cabling Communication to the Compumotor ibe Smart Motor is accomplished using the RS232 cable supplied with the ibe Motor. Either port on the Eason 2000 Family product is capable of handling RS232 communication. To Amp RS232 Cable

3 Software Setup Communications to the Compumotor ibe requires a port on the Eason to be initialized with the proper configuration. In your Winbuild 2000 application select PROJECT SETUP DRIVERS. Click on External Serial: Compumotor ibe, and then OK. Once the driver is added, click on the driver listing, and click Properties. The driver properties sheet will then come up. Configure the driver so that it will correspond with your Compumotor ibe motor setup. Note in particular the unit ID, the serial port, and the baud rate you are using.

4 The array Tags are arrays within the smart motor you an assign an Eason variable to access. Just give them a name and then you can access those arrays in your program via the given name. To create your own tags to access other variables in the smart motor, go to the Tag Table and add your own variables. Click SETUP TAGS. Here you will see Eason Tag names, sourced to the Compumotor ibe motor. The ADDRESS column is where you specify the variable name in the smart motor you want to access. The Eason TagName is how you will refer to the tag in your Eason project. (The two can be the same for simplicity, however you can give the Eason tag name something more descriptive like Velocity rathern than just v.

5 To view variables on the screen, just create a data entry/display box and associate it with the particular tag you want to view. For example, to display variable aa. The Eason will now take care of reading the variable from the motor, and displaying it on screen when needed. If you make the data box an ENTRY box, and the user enters a new value, the Eason will then write that value back down to the motor. You can refer to any of your Compumotor ibe tags within BASIC code as well, and the driver will take care of reading/writing to the variables as needed. For example: If TEMP>500 THEN aa=238 ENDIF This code will take a look at the variable TEMP, and if it is over 500 it will take the variable aa and set it to 238. The variable aa is actually a Computmotor ibe variable, and the Eason will recognize this and send the command down to the motor. You can create tags for Position (PR) or Velocity (V). Just set up tags like they are below: Now you can put a data display box on screen, and have Position updated on screen regularly. Or, have the user enter a new maximum velocity, and send that back down the motor.

6 Sending/Receiving Commands If you run into a situation where the driver won t read/write a specific tag for you, you can always send serial commands to the Compumotor manually with the COM pseudocodes. Sending serial commands to the Compumotor ibe smart motor is simple. Just use the PUT COM pseudocodes to send out the ASCII commands. This pseudocode can be used anywhere in your program: In a button, function key, background task, or a subroutine. For example, to send out a STOP (S) command to the smart motor on a button: Click & drop a button onto the screen of your program. Double-click on the button to edit its properties, and go to Pseudocodes Click the On Press, and the code editor window will open. Below there will be a list of available pseudocodes. Select the COM: PUT COM port VALUE expression pseudocode, and then click ADD. Use the pull-down menu to select which port you would like the command to go out of, and then select the option to send out TEXT- and in the dialog box enter the text command you want to send to the ibe motor. In this case, S

7 Click OK when you are done. The BASIC code will now appear in the editor box. If you click OK to finish editing this code, you can exit back to the program. Now if you compiled & downloaded this program into your Eason unit, and then pushed the button you just created, the command S <CR> would go out the communication port. (The letter S followed by a carriage return.) To retrieve information back from the ibe smart motor, you will need to send out a command, and receive the response. To send out a command, and receive a response back from the smart motor, use the other pseudocodes that send a message out the port, and receive a response back: like COM: PUT COM 1 VALUE expression RESPONSE tag. For example, to send out a request for position. (PR) This will send out the text PR <CR> and then read the numeric response into a tag called POSITION. (You will have enter the tag POSITION into the tag table before it is available in the pull down menu here.) Now the tag POSITION can be used anywhere in your program- for calculations, scaling, decisions, or just placement on the screen. This code is handy to put WHILE OPEN on a screen to continuously request position from the motor, or into a background TASK that will poll continuously. To send a variable down to the motor- for instance to change velocity (V): Use the PUT COM port VALUE expression VALUE expression pseudocode. This allows you to send a mixture of text/variables. For instance, if you have the operator enter in a value called NewSpeed, then on enter of that data entry box, add the pseudocode to send the value to the motor:

8 This will end up sending out V=xxxxx. (Where xxxx is the current value of whatever the operator just entered for NewSpeed.

9 EASON and Compumotor ibe MULTIDROP Connecting Use the Compumotor ibe multidrop cable that came with your system. Connect the 9-pin d-shell connector to an available COM port on the back of the Eason unit. In our examples here we used COM1. It also helps to have the smart motors previously setup using the iware interface software, uniquely addressed, enabled, and all setup to communicate via multidrop. Configuring Drivers In Winbuild 2000, click to SETUP PROJECT DRIVERS. Click ADD and select the Compumotor ibe driver. Add multiple instances of the driver, onto the same communication port. Then set each unit with a unique ID. Set echo mode on

10 Setup Tags Under the SETUP TAGS menu click ADD to add a new tag. When setting up tags to read from your motors, just add them into the tag table, and select the SOURCE to each particular motor. In the address column, use the command to perform whatever read/write you wish to use. No need to add a P to the address column command, the driver will do this for you. For instance, to read position PP just add create a tag: To read other variables from the smart motor, just type the variable name in the ADDRESS column. (To specify the data type, use a period then abbreviation of data type) In this example, we ve added a user variable named user, and put it into the tag table. Now whenever the programmer wants to display is Compumotor IBE variable user on the screen of the Eason, he can just click and put a display box up, and source it to the Eason variable uservariable and the Eason will take care of doing the reads/writes. This variable will also automatically be available in BASIC code just by referring to it by name. The Compumotor ibe driver variables and commands are pretty open-ended, thus we did not place many restrictions on the tag names or types. The user is left to ensure the variable names and tags are entered correctly. Sending Commands To send a command to a particular motor, the motor address needs to be pre-pended to the command. This is where the Eason s BASIC scripting comes in handy. Just create an OUTPUT$ string variable to assemble the transmission first, and then use a PUT COM code to send it out the port. To create the motor address, add a value of 128 to the decimal address. For instance to send a G command to motor number 1: OUTPUT$=CHR$(129)+"G"

11 Or to send a stop command to ALL motors, use address zero: OUTPUT$=CHR$(128)+"K" To send a request and read a value back from a particular motor- create your OUTPUT$ command string, send it out the port, and receive response back with the PUT COM/RESPONSE code. OUTPUT$=CHR$(130)+"PW" RESPONSE STATUS2 In the above example, the command request status word PW was sent to motor number two. Then, the response was read back into a tag called STATUS2. This next example taken from the Compumotor ibe documentation initializes all the motors on your daisy chain, address them sequentially, and then reinitialize the drivers. (This example uses two motors, for more add to the sequence.) This code might be handy at the beginning of your Eason boot-up sequence, or on a separate button in a maintenance screen where the user can set up the motors. OUTPUT$=CHR$(128)+"SADDR1" OUTPUT$=CHR$(129)+"ECHO" OUTPUT$=CHR$(129)+"SLEEP" OUTPUT$=CHR$(128)+"SADDR2" OUTPUT$=CHR$(130)+"ECHO" OUTPUT$=CHR$(130)+"SLEEP" OUTPUT$=CHR$(128)+"WAKE" SET DRIVER "Compumotor ibe [1] on 1 (0)" 2 SET DRIVER "Compumotor ibe [2] on 1 (1)" 2

12 Troubleshooting If you cant communicate: 1. Use Compumotor ibe software to establish communication to motor to verify port is working. 2. Use Hyperterminal to examine the outgoing strings from the Eason to ensure that they are of proper format.

Guide to Eason 2000 Family With Galil Motion Controllers: PC104-13A or PC10413B-I Internal or Stand-Alone External

Guide to Eason 2000 Family With Galil Motion Controllers: PC104-13A or PC10413B-I Internal or Stand-Alone External Guide to Eason 2000 Family With Galil Motion Controllers: PC104-13A or PC10413B-I Internal or Stand-Alone External COMMUNICATING TO INTERNAL OR EXTERNAL GALIL MOTION CONTROLLER Rev 1.2 P/N: 50-00183-01

More information

EASON HMI & MP9** series Products Note Yaskawa Systems Application Engineering Group

EASON HMI & MP9** series Products Note Yaskawa Systems Application Engineering Group NOTE: This document is in progress EASONs Graphical Products use a universal programming software. Products specifically tested at Yaskawa are indicated below. EASON Contact Info - Brian Jaeger, Technical,

More information

ALLEN-BRADLEY MICROLOGIX / SLC500 & EASON 2000 FAMILY

ALLEN-BRADLEY MICROLOGIX / SLC500 & EASON 2000 FAMILY ALLEN-BRADLEY MICROLOGIX / SLC500 & EASON 2000 FAMILY How Eason PLC Drivers Work When you add a PLC driver to your WinBuild 2000 project, you gain access to certain memory registers in your PLC (or similar)

More information

Updating Reader Firmware

Updating Reader Firmware SWH-xxxx Readers Updating Reader Firmware Version C0 Document Part Number UM-096 July 2012 OVERVIEW This document describes how to download new firmware to Software House SWH-4xxx readers. The procedure

More information

CONTROLLER INFORMATION SHEET

CONTROLLER INFORMATION SHEET Maple Model(s) HMI5000 Series CONTROLLER INFORMATION SHEET PLC or Controller Allen-Bradley Micro820/830/850 (CIP Serial) P/N: 1036-0244 Rev. 00 Date: 07/27/2016 Summary Maple Systems HMI5000 Series Human/Machine

More information

Helios User Guide High Power Industrial Laser Measurement OPHIR OPTRONICS

Helios User Guide High Power Industrial Laser Measurement OPHIR OPTRONICS Helios Helios User Guide High Power Industrial Laser Measurement OPHIR OPTRONICS www.ophiropt.com/photonics Table of Contents About this Guide... 2 How the Document is Organized... 2 Chapter 1 Helios Operating

More information

Toriemon FGV-X and FGV-HX INSTRUCTION MANUAL

Toriemon FGV-X and FGV-HX INSTRUCTION MANUAL FORCE GAUGE FGV-X SERIES Add-in software for EXCEL Toriemon FGV-X and FGV-HX INSTRUCTION MANUAL NIDEC-SHIMPO CORPORATION CONTENTS 1. Introduction 2. Setup 2.1 Software Package 2.2 Software Installation

More information

CONTROLLER INFORMATION SHEET

CONTROLLER INFORMATION SHEET CONTROLLER INFORMATION SHEET Maple Model(s) Graphic HMCs PLC or Controller ODVA, CIP over EtherNet/IP P/N: 1036-0243 Rev. 01 Date: 05/02/2018 Summary Maple Systems Graphic HMIs communicate with any device

More information

Xpert / XLite GPRS232 Serial Interface Block USERS MANUAL. Part No Rev. 3.3 July 27, 2009

Xpert / XLite GPRS232 Serial Interface Block USERS MANUAL. Part No Rev. 3.3 July 27, 2009 Xpert / XLite GPRS232 Serial Interface Block USERS MANUAL Part No. 8800-1164 Rev. 3.3 July 27, 2009 Sutron Corporation 22400 Davis Drive Sterling, VA 20164 703.406.2800 www.sutron.com sales@sutron.com

More information

Getting started with your DGH module:

Getting started with your DGH module: Getting started with your DGH module: This document contains step-by-step instructions to quickly connect and communicate with your new DGH modules. For most applications, new modules require a one-time

More information

ASCII Text Control (ATC) Protocol for Remote Control of Equinox Programmers

ASCII Text Control (ATC) Protocol for Remote Control of Equinox Programmers Report No: AN110 Title: ASCII Text Control (ATC) Protocol for Remote Control of Equinox Programmers Author: Date: Version Number: John Marriott 27 th March 2009 1.06 Abstract: This application note describes

More information

Manual 601: : USB/RS232. Specifications. Contents. Options

Manual 601: : USB/RS232. Specifications. Contents. Options Page 1 ATE-601 601: : USB/RS232 I/O Controller - 8 Inputs, 4/8 Relays The ATE-500/600 series is a range of modular I/O controllers. It uses small standardized boards which allows you to configure the system

More information

G9SP RS-232 Communication to Omron s CJ PLC s Rev 1.0 Micheal Paradiso

G9SP RS-232 Communication to Omron s CJ PLC s Rev 1.0 Micheal Paradiso www.infoplc.net G9SP RS-232 Communication to Omron s CJ PLC s Rev 1.0 Micheal Paradiso www.infoplc.net This document will walk you through a step by step setup for communication from a G9SP to a Omron

More information

Summary. Compatible PLCs. Communications Cable. PLC Settings. Gemini GV6 Series

Summary. Compatible PLCs. Communications Cable. PLC Settings. Gemini GV6 Series C O N T R O L L E R I N F O R M A T I O N S H E E T Maple Model(s) HMI5000 Series PLC or Controller Compumotor Gemini GV6 Series Summary Maple Systems Silver HMI5000 Series Operator Interface Terminals

More information

Manual. Specifications. Contents. Options

Manual. Specifications. Contents. Options Page 1 ATE-501: USB Input Controller - 8 Inputs The ATE-500/600 series is a range of modular I/O controllers. It uses small standardized boards which allows you to configure the system to your requirements.

More information

TD-CALTERM2-001 CalTerm2 User s Guide

TD-CALTERM2-001 CalTerm2 User s Guide Technical Document TD-CALTERM2-001 CalTerm2 User s Guide DAQ Electronics Division 262-B Old New Brunswick Road, Piscataway, NJ 08854 732 981 0050 www.daq.net 2006 DAQ Electronics, Inc. All rights reserved.

More information

Operation Manual for Shekel PC Scale Software

Operation Manual for Shekel PC Scale Software Page 1 of 9 Operation Manual for Shekel PC Scale Software Shekel Scales PC Scale software is designed to gather data and display data as units of weight on the PC Scale monitor. Location of software :

More information

FREQUENCY DRIVES ADJUSTABLE SERIES 9000 AF DRIVES. SVLoad Application. Loading Application and Option Software. Instruction Sheet

FREQUENCY DRIVES ADJUSTABLE SERIES 9000 AF DRIVES. SVLoad Application. Loading Application and Option Software. Instruction Sheet ADJUSTABLE FREQUENCY DRIVES SERIES 9000 AF DRIVES SVLoad Application Loading Application and Option Software Instruction Sheet Series 9000 SVLoad Application: Loading Application and Option Software Page

More information

Landis & Gyr Powers System 600 Device Driver Guide

Landis & Gyr Powers System 600 Device Driver Guide Landis & Gyr Powers System 600 Device Driver Guide Version 7.0 rev 0 Advantech Corp., Ltd. page 1 Table of Contents Landis & Gyr Powers System 600 Device Driver Guide 1 1. PS600 Device-Type 3 IO Tags...

More information

Series 370 Stabil-Ion Gauge Controller with RS-485 Interface Option

Series 370 Stabil-Ion Gauge Controller with RS-485 Interface Option Series 370 Stabil-Ion Gauge Controller with RS-485 Interface Option Introduction The RS-485 communications option (See Figure 1) for the Series 370 Stabil-Ion Gauge Controller permits data output to, and

More information

Manual Electronic Identification Systems BIS Processor BIS C-6_0 RS 232 C-6_ _836905_E_0704.p65 Deutsch bitte wenden!

Manual Electronic Identification Systems BIS Processor BIS C-6_0 RS 232 C-6_ _836905_E_0704.p65 Deutsch bitte wenden! 1 Manual Electronic Identification Systems BIS Processor BIS C-6_0 RS 232 Deutsch bitte wenden! 2 No. 836 905 D/E Edition 0704 Subject to modification. Replaces edition 0409. Writing convention: Control

More information

Copley Indexer 2 Program User Guide

Copley Indexer 2 Program User Guide Copley Indexer 2 Program User Guide P/N 95-00744-000 Revision 2 June 2008 Copley Indexer 2 Program User Guide TABLE OF CONTENTS About This Manual... 6 1: Introduction... 9 1.1: Copley Controls Indexer

More information

Data Capture System for Windows. Documentation. TSW Automation, Inc Robertson Ave. Nashville, TN phone: fax:

Data Capture System for Windows. Documentation. TSW Automation, Inc Robertson Ave. Nashville, TN phone: fax: Data Capture System for Windows Documentation TSW Automation, Inc. 6115 Robertson Ave. Nashville, TN 37209 phone: 615-356-8785 fax: 615-356-8744 1995-1998 All rights reserved. SYSTEM OVERVIEW The Data

More information

Manual DTM Digital Pressure Transmitter

Manual DTM Digital Pressure Transmitter TetraTec Instruments GmbH Gewerbestr. 8 71144 Steinenbronn Deutschland E-Mail: info@tetratec.de Tel.: 07157/5387-0 Fax: 07157/5387-10 Manual Digital Pressure Transmitter *** VERSION 1.1 *** Update: 22.11.2006

More information

Silverpak 17C/CE INTEGRATED STEP MOTOR, DRIVER AND CONTROLLER

Silverpak 17C/CE INTEGRATED STEP MOTOR, DRIVER AND CONTROLLER Silverpak 17C/CE INTEGRATED STEP MOTOR, DRIVER AND CONTROLLER With Encoder Option USER MANUAL Version 1.10 Thank you for purchasing the Silverpak 17C or 17CE integrated motor and controller with microstepping

More information

USB-COMi-TB USB to Industrial Single RS-422 / 485 Adapter Manual. Specifications and Features

USB-COMi-TB USB to Industrial Single RS-422 / 485 Adapter Manual. Specifications and Features USB-COMi-TB USB to Industrial Single RS-422 / 485 Adapter Manual The USB-COMi-TB USB-to-Industrial Single RS-422/485 Adapter is designed to make industrial communication port expansion quick and simple.

More information

Ocean Controls KT-5190 Serial Stepper Motor Controller

Ocean Controls KT-5190 Serial Stepper Motor Controller Ocean Controls KT-5190 Serial Stepper Motor Controller Controls 4 Stepper Motors Simultaneously RS-232 9600, 8N1 ASCII Serial Controlled Add more units to control up to 16 Motors Up to 6.3KHz Max Stepping

More information

PCLIO-0808-USB. USB Controlled IO Board. User s Guide ANAHEIM AUTOMATION, INC.

PCLIO-0808-USB. USB Controlled IO Board. User s Guide ANAHEIM AUTOMATION, INC. PCLIO-0808-USB USB Controlled IO Board User s Guide ANAHEIM AUTOMATION, INC. 4985 East Landon Drive, Anaheim, CA 92807 e-mail: info@anaheimautomation.com (714) 992-6990 fax: (714) 992-0471 website: www.anaheimautomation.com

More information

MSOC Communication Commonality with DPU/TPU/GPU 2000R Protective Relays

MSOC Communication Commonality with DPU/TPU/GPU 2000R Protective Relays ABB Application Note MSOC AN-64A-00 Substation Automation and Protection Division MSOC Communication Commonality with DPU/TPU/GPU 2000R Protective Relays Introduction There seems to be some confusion with

More information

SIN-11-USB USERS GUIDE SIN-11-USB USERS GUIDE

SIN-11-USB USERS GUIDE SIN-11-USB USERS GUIDE SIN-11-USB USERS GUIDE Revision Date: 05/06/2010 A d v a n c e d M i c r o S y s t e m s, I n c. w w w. s t e p c o n t r o l. c o m i Overview... 3 Getting Started... 4 Hardware... 6 Demo Power-up...

More information

Integrating SISGEO Digitized MEMs IPI s with the CR800 or CR1000 Sensor Application Note #21

Integrating SISGEO Digitized MEMs IPI s with the CR800 or CR1000 Sensor Application Note #21 5 Gould Road, PO Box 2155 New London, NH 03257 Voice: (603) 526-9800 info@canarysystems.com www.canarysystems.com Integrating SISGEO Digitized MEMs IPI s with the CR800 or CR1000 Sensor Application Note

More information

3 Connecting to a Controller

3 Connecting to a Controller 3 Connecting to a Controller In this chapter Connecting to controllers: Overview 36 Setting up communications for your PC 37 Configuring Modbus communications 37 Modbus communications by modem 39 Configuring

More information

Chapter 5: Communications 5 1 SR55 Communications Overview 5 2

Chapter 5: Communications 5 1 SR55 Communications Overview 5 2 Chapter 5 Table of Contents Chapter 5: Communications 5 1 SR55 Communications Overview 5 2 Modbus Serial Communications Overview 5 2 Modbus TCP Network Communications Overview 5 2 EtherNet/IP Network Communications

More information

DEBUGGING SERIAL COMMUNICATIONS WITH OTHER DEVICES

DEBUGGING SERIAL COMMUNICATIONS WITH OTHER DEVICES DEBUGGING SERIAL COMMUNICATIONS WITH OTHER DEVICES NOTE: This application note is intended for users connecting an external device to a HomeVision serial port. It may be helpful to users connecting to

More information

Application Note Demonstrating the Serial Port Profile (SPP) Between BlueConnect and BTW 2002/5/29

Application Note Demonstrating the Serial Port Profile (SPP) Between BlueConnect and BTW 2002/5/29 Application Note Demonstrating the Serial Port Profile (SPP) Between BlueConnect and BTW 2002/5/29 1 Introduction As a technology leader in the wireless networking market, WIDCOMM s vision is to enable

More information

5Troubleshooting CHAPTER FIVE IN THIS CHAPTER. LED Status Software Commands for Troubleshooting RS-232/485 Troubleshooting System Problems

5Troubleshooting CHAPTER FIVE IN THIS CHAPTER. LED Status Software Commands for Troubleshooting RS-232/485 Troubleshooting System Problems CHAPTER FIVE 5Troubleshooting IN THIS CHAPTER LED Status Software Commands for Troubleshooting RS-232/485 Troubleshooting System Problems Chapter 5 Troubleshooting 47 Troubleshooting Guidelines LEDs If

More information

Figure 1: ZigBee Evaluation Kit (ZEK) Contents. Figure 2: ZigBee Adapter Zb-121 and Module Zb-21

Figure 1: ZigBee Evaluation Kit (ZEK) Contents. Figure 2: ZigBee Adapter Zb-121 and Module Zb-21 The ZigBee Evaluation Kit (ZEK) has been developed for evaluation of the ZigBee wireless solution from Amp ed RF. This demo kit utilizes Amp ed RF ZigBee Serial Adapter (AR Zb-121) board with embedded

More information

Temperature-Humidity Sensor Configuration Tool Rev. A 1/25/

Temperature-Humidity Sensor Configuration Tool Rev. A 1/25/ Rev. A 1/25/213 172 Contents Contents Temperature-Humidity Sensor Configuration Tool... 3 Read Sensor Screen... 3 Manual Calibration Screen... 4 Register View Screen... 5 Modbus Registers... 6 Reprogram

More information

Quick-Start Guide. BNS Solutions. QSK62P Plus

Quick-Start Guide. BNS Solutions. QSK62P Plus BNS Solutions Quick-Start Guide QSK62P Plus RS-232 Port Link LED 8-character x 2-line LCD Expansion Port (2) Reset Switch Power LED Thermistor I/O Ring (4) M16C MCU Analog Adjust Pot MCU Crystal Expansion

More information

Doug Fleenor Design, Inc. RS-232 to DMX512 Interface, 2 Generation. March 8, 2010 (Software V1.2)

Doug Fleenor Design, Inc. RS-232 to DMX512 Interface, 2 Generation. March 8, 2010 (Software V1.2) Doug Fleenor Design, Inc. nd RS-232 to DMX512 Interface, 2 Generation March 8, 2010 (Software V1.2) The second generation RS-232 to DMX512 interface has numerous features beyond the original device. The

More information

Introduction NOTE. Page Gemini Major Programmer s Guide (for GT6 and GV6 products only).

Introduction NOTE. Page Gemini Major Programmer s Guide (for GT6 and GV6 products only). Introduction Purpose of this Document This document is designed as a reference for the firmware features used with the Gemini Series of digital stepper and servo drives. For hardware-related information

More information

This 4-port RS-422/485 Adapter is provided with an external switching power adapter in the package.

This 4-port RS-422/485 Adapter is provided with an external switching power adapter in the package. USB-4COMi-M USB to Quad RS-422/485 to Serial Adapter Manual The USB to Industrial Quad RS-422/485 Adapter is designed to make industrial communication port expansion quick and simple. Connecting to a USB

More information

Senses transitions on 16 discrete inputs and issues user programmed serial strings

Senses transitions on 16 discrete inputs and issues user programmed serial strings User s Manual Model HR-16P 16-Channel Programmable Serial Device Senses transitions on 16 discrete inputs and issues user programmed serial strings UMA1112 Rev C Copyright 2012. Hall Research, Inc. All

More information

Sartorius Comparator. Interface Description for the CC Model Series

Sartorius Comparator. Interface Description for the CC Model Series 98647-000-53 Sartorius Comparator Interface Description for the CC Model Series Contents Page General Information 4 General Specifications 5 Data Output Formats 6 Data Input Formats 11 Synchronization

More information

Flex Series User Guide

Flex Series User Guide User Programmable Current 4..20mA Digital RS485 Dual & Single Axis Up to 360º 2016 Flex Series User Guide Sensor Installation, Wiring, Flexware App Instructions Page 1 of 33 Page 2 of 33 Table of Contents

More information

1450 First Ave. Page 1 of 11 Chippewa Falls, WI (800) or (715) Fax: (715)

1450 First Ave. Page 1 of 11 Chippewa Falls, WI (800) or (715) Fax: (715) 1450 First Ave. Page 1 of 11 Model DHM200 User Manual 1450 First Ave. Page 2 of 11 Warranty This product is fully warranted against defective materials and/or workmanship for a period of one year after

More information

PROGRAMMING WAND QUICKSTART GUIDE (PRELIMINARY)

PROGRAMMING WAND QUICKSTART GUIDE (PRELIMINARY) PROGRAMMING WAND QUICKSTART GUIDE (PRELIMINARY) The Programming Wand makes updating and configuring PixiePlus controllers very simple. It allows you to create and save various configurations to the PixiePlus

More information

LT900SERIES. 1xN Multi-Channel Switch Operation Manual. For RS-232 Control with 16-pin Connector

LT900SERIES. 1xN Multi-Channel Switch Operation Manual. For RS-232 Control with 16-pin Connector LT900SERIES 1xN Multi-Channel Switch Operation Manual For RS-232 Control with 16-pin Connector Table of Contents General Information.. 1 General Specifications...... 2 Interface Connectors..... 3 RS232

More information

RTTYArt Capture Program by William Bytheway

RTTYArt Capture Program by William Bytheway RTTYArt Capture Program by William Bytheway Forward Over the years there have been many hours spent creating pictures using only the characters on the keyboard. In November 1970, Don Royer wrote, We (the

More information

CONTROLLER INFORMATION SHEET

CONTROLLER INFORMATION SHEET CONTROLLER INFORMATION SHEET Maple Model(s) Graphic HMIs PLC or Controller Modbus RTU P/N: 1036-0045 Rev. 06 Date: 09/17/2015 Summary Maple Systems Graphic HMIs communicate with any device that uses the

More information

Centre for Instrumentation, Control and Automation User s Guide to the MAD 2 Microcontroller Board

Centre for Instrumentation, Control and Automation User s Guide to the MAD 2 Microcontroller Board Centre for Instrumentation, Control and Automation User s Guide to the MAD 2 Microcontroller Board Mark Simms September 19, 2002 1 2 Analog Input 8 ports, 8/10-bit resolution Digital I/O 8/16 ports Timers

More information

DNC2go

DNC2go DNC2go Striker Systems P.O. Box 41 White House, TN 37188 Version 1.0.0.2 www.striker-systems.com Revision 8/2/2005 1 Contents Introduction... 3 Installing DNC2go... 4 Using DNC2go... 5 Setting up a Machine

More information

2Installation CHAPTER TWO IN THIS CHAPTER. Checking Your Shipment Express Setup. Chapter 2 Installation 11

2Installation CHAPTER TWO IN THIS CHAPTER. Checking Your Shipment Express Setup. Chapter 2 Installation 11 CHAPTER TWO 2Installation IN THIS CHAPTER Checking Your Shipment Express Setup Chapter 2 Installation 11 Checking Your Shipment Inspect your shipment carefully. You should have received one or more of

More information

SIMATIC TI505. SINEC H1 Communication Processor. User Manual. Order Number: PPX: Manual Assembly Number: Second Edition

SIMATIC TI505. SINEC H1 Communication Processor. User Manual. Order Number: PPX: Manual Assembly Number: Second Edition SIMATIC TI505 SINEC H1 Communication Processor User Manual Order Number: PPX:505 8126 2 Manual Assembly Number: 2586546 0087 Second Edition Copyright 1994 by Siemens Industrial Automation, Inc. All Rights

More information

ION Demo Kit. Quick Start Guide PERFORMANCE MOTION DEVICES

ION Demo Kit. Quick Start Guide PERFORMANCE MOTION DEVICES ION Demo Kit Quick Start Guide PERFORMANCE MOTION DEVICES 1.0 Introduction This guide will help you get your ION Demo Kit up and running quickly. Please follow the instructions below. The kit includes

More information

RS 232 Interface. RS 232 is the Serial interface on the PC. Three major wires for the Serial interface: Transmit Pin 2 Receive Pin 3

RS 232 Interface. RS 232 is the Serial interface on the PC. Three major wires for the Serial interface: Transmit Pin 2 Receive Pin 3 RS 232 Interface RS 232 is the Serial interface on the PC Three major wires for the Serial interface: Transmit Pin 2 Receive Pin 3 Note: SR510 switches pins 2,3 internally HP Func. Gen. Requires a null

More information

Upchurch Scientific Nano Flow Sensor User s Guide

Upchurch Scientific Nano Flow Sensor User s Guide Upchurch Scientific Nano Flow Sensor User s Guide Oak Harbor, WA 98277 Tel: 800.426.0191 360.679.2528 Fax: 800.359.3460 360.679.3830 Email: customerservice.upchurch@idexcorp.com Internet: www.upchurch.com

More information

The information in this chapter will enable you to:

The information in this chapter will enable you to: C H A P T E R ➆ Chapter Objectives Environmental The information in this chapter will enable you to: Electrical Specifications RP240 Connector Power Hardware Reference Use this chapter as a quick-reference

More information

Navigator Update to Software Instructions TABLE OF CONTENTS SECTION 1 DOWNLOAD FILES... 2 SECTION 2 UPDATE BOX SOFTWARE...

Navigator Update to Software Instructions TABLE OF CONTENTS SECTION 1 DOWNLOAD FILES... 2 SECTION 2 UPDATE BOX SOFTWARE... TABLE OF CONTENTS SECTION 1 DOWNLOAD FILES... 2 SECTION 2 UPDATE BOX SOFTWARE... 3-4 SECTION 3 INSTALL 1.05.01 SOFTWARE... 5 SECTION 4 IMPORT ALL PATTERNS... 6 1 Section 1 Download Files: Go to www.innovalongarm.com.

More information

Quick Start Guide. MS-3 Laser Scanner

Quick Start Guide. MS-3 Laser Scanner Quick Start Guide MS-3 Laser Scanner This guide is designed to get your scanner up and running quickly. When connected to a host computer with Windows operating system (2000 or above), you can use ESP

More information

Troubleshooting Guide

Troubleshooting Guide Troubleshooting Guide Troubleshooting Communications With the SilverLode product powered up, start QuickControl and the polling routine should automatically find the device. If QuickControl is already

More information

Application Note CTAN #165

Application Note CTAN #165 Application Note CTAN #165 The Application Note is pertinent to the Commander SE Family Interfacing Commander SE to Modbus Protocol Many customers attempt to connect foreign devices such as HMI displays

More information

QUICK START GUIDE FOR FIRMWARE UPGRADE RS232-TO UART INTERFACE BOARD AND SOFTWARE

QUICK START GUIDE FOR FIRMWARE UPGRADE RS232-TO UART INTERFACE BOARD AND SOFTWARE QUICK START GUIDE FOR FIRMWARE UPGRADE RS232-TO UART INTERFACE BOARD AND SOFTWARE DESCRIPTION RS232-TO-UART Interface board is a PC- Serial-Port-to-UART adaptor that uses a customise Toshiba application

More information

EXPERIMENT 1. FAMILIARITY WITH DEBUG, x86 REGISTERS and MACHINE INSTRUCTIONS

EXPERIMENT 1. FAMILIARITY WITH DEBUG, x86 REGISTERS and MACHINE INSTRUCTIONS EXPERIMENT 1 FAMILIARITY WITH DEBUG, x86 REGISTERS and MACHINE INSTRUCTIONS Pre-lab: This lab introduces you to a software tool known as DEBUG. Before the lab session, read the first two sections of chapter

More information

Version 2.1 SATEL NMS PC

Version 2.1 SATEL NMS PC SATEL NMS PC USER MANUAL 1 Table of contents TABLE OF CONTENTS... 2 1 INTRODUCTION... 6 2 SAFETY INSTRUCTIONS... 7 3 3.1 3.1.1 3.1.2 3.1.3 3.2 3.2.1 3.2.2 3.2.3 3.2.4 NMS FUNDAMENTALS... 8 General NMS

More information

Configuring RS 232 Communications with TheaterTouch Designer and the CM 232

Configuring RS 232 Communications with TheaterTouch Designer and the CM 232 December 2006 Configuring RS 232 Communications with TheaterTouch Designer and the CM 232 Introduction There are several pieces of information that you will need to successfully establish an RS 232 connection

More information

Market Central

Market Central SwitchMaster XK5000 Series Ultra-Compact Kill Switch System OCT 2012 Part Numbers Market Central www.secureswitch.com 500 Business Center Drive Pittsburgh, PA 15205 USA 412.494.2800 CAGE 1BGJ7 COMPLETE

More information

User Guide Laird Configuration and Test Utility Software. Version 1.0

User Guide Laird Configuration and Test Utility Software. Version 1.0 A Version 1.0 REVISION HISTORY Version Date Notes Approver 1.0 07 Dec 2016 Initial Release N. Zach Hogya 2 CONTENTS DVK Software Installation... 4 PC Settings Tab... 4 Port 1/Port 2 Options... 5 Options...

More information

Mesa Met Lab Series Bi-Directional Communications Protocol

Mesa Met Lab Series Bi-Directional Communications Protocol Mesa Met Lab Series Bi-Directional Communications Protocol To enable Mesa customers to integrate their Met Lab Series primary piston provers with their unique applications, our Met Lab systems come standard

More information

Quick Start Guide. MS-3 Laser Scanner

Quick Start Guide. MS-3 Laser Scanner Quick Start Guide MS-3 Laser Scanner This guide is designed to get your scanner up and running quickly. When connected to a host computer with Windows operating system (2000 or above), you can use ESP

More information

Product Family: GS Drives Number: AN-GS-006

Product Family: GS Drives Number: AN-GS-006 APPLICATION NOTE THIS INFORMATION PROVIDED BY AUTOMATIONDIRECT.COM TECHNICAL SUPPORT These documents are provided by our technical support department to assist others. We do not guarantee that the data

More information

USBG-8COM-PRO 8-Port USB to RS-232, 422, 485 Auto Setup Adapter Manual. Features & Specifications. Specifications

USBG-8COM-PRO 8-Port USB to RS-232, 422, 485 Auto Setup Adapter Manual. Features & Specifications. Specifications USBG-8COM-PRO 8-Port USB to RS-232, 422, 485 Auto Setup Adapter Manual The USBG-8COM-PRO 2-Port Series Industrial I/O Adapters are advanced USB to Serial Adapters that connect to 1, 2, 4 or 8 RS- 232/422/485

More information

SOFTWARE MANUAL PHOENIX AC DRIVE DX & EX DRIVEMASTER

SOFTWARE MANUAL PHOENIX AC DRIVE DX & EX DRIVEMASTER SOFTWARE MANUAL PHOENIX AC DRIVE DX & EX DRIVEMASTER TABLE OF CONTENTS i SECTION TITLE PAGE 1.0 Introduction 1-1 2.0 Initial Setup 2-1 3.0 Main Menu 3-1 4.0 Configuring the Communications 4-1 5.0 Upload/Download

More information

ICS Regent. Communications Package for W INTERPRET. Guarded Peer-Link Communications (T3831) PD-6041

ICS Regent. Communications Package for W INTERPRET. Guarded Peer-Link Communications (T3831) PD-6041 ICS Regent PD-6041 Communications Package for W INTERPRET Guarded Peer-Link Communications (T3831) Issue 1, March, 06 The WINTERPRET Communications Package is an add-in software package that allows you

More information

Using Synplify Pro, ISE and ModelSim

Using Synplify Pro, ISE and ModelSim Using Synplify Pro, ISE and ModelSim VLSI Systems on Chip ET4 351 Rene van Leuken Huib Lincklaen Arriëns Rev. 1.2 The EDA programs that will be used are: For RTL synthesis: Synplicity Synplify Pro For

More information

Configuring Terminal Settings and Sessions

Configuring Terminal Settings and Sessions This chapter describes how to manage the terminal settings and sessions on a Cisco NX-OS device. This chapter includes the following sections: Information About Terminal Settings and Sessions, page 1 Licensing

More information

write (unit=*,fmt=*) i =, i! will print: i = 3

write (unit=*,fmt=*) i =, i! will print: i = 3 I/O (F book, chapters 9, 10 and 15) All I/O in Fortran90 is record-based, typically with record delimiters of some kind. This is in contrast to C, which has stream I/O, with no record delimiters required.

More information

Animatics SmartMotor Series, RTC Series ONTROLLER NFORMATION HEET. Overview. Communications Cable

Animatics SmartMotor Series, RTC Series ONTROLLER NFORMATION HEET. Overview. Communications Cable ONTROLLER NFORMATION HEET C I S Animatics SmartMotor Series, RTC Series Overview Maple Systems OIT Family Operator Interface Terminals (Maple OITs) communicate with Animatics SmartMotor and RTC controllers

More information

User Manual for VE GSM Modem

User Manual for VE GSM Modem User Manual for VE GSM Modem INTRODUCTION GSM/GPRS Smart Modem is a multi-functional, ready to use, rugged unit that can be embedded or plugged into any application. The Smart Modem can be controlled and

More information

BIET EtherNet Interface

BIET EtherNet Interface BIET EtherNet Interface Preliminary Release Notes are used to call attention to information that is significant to the understanding and operation of equipment. This BALOGH manual is based on information

More information

2Installation CHAPTER TWO IN THIS CHAPTER. Checking Your Shipment Express Setup. Chapter 2 Installation 11

2Installation CHAPTER TWO IN THIS CHAPTER. Checking Your Shipment Express Setup. Chapter 2 Installation 11 CHAPTER TWO 2Installation IN THIS CHAPTER Checking Your Shipment Express Setup Chapter 2 Installation 11 Checking Your Shipment Inspect your shipment carefully. You should have received one or more of

More information

NMC Simple Sequencer Stand-alone Controller

NMC Simple Sequencer Stand-alone Controller 1.0 Overview NMC Simple Sequencer Stand-alone Controller ---Preliminary 4/99--- The Simple Sequencer is a programmable, stand-alone controller for NMC control modules including the PIC-SERVO, PIC-SERVO/SS-Drive

More information

using the Data-Linc SRM6000 Spread Spectrum Radio Modem (version 5.39) and Wonderware InTouch 95 (version 7.0.1)

using the Data-Linc SRM6000 Spread Spectrum Radio Modem (version 5.39) and Wonderware InTouch 95 (version 7.0.1) using the Data-Linc SRM6000 Spread Spectrum Radio Modem (version 5.39) and Wonderware InTouch 95 (version 7.0.1) This application guide describes how to setup the modems and drivers so that you can exchange

More information

Quick Start Guide to Profibus DP for the Servostar S300/S400/S600/S700 Jimmy Coleman 1/12/2018 Rev. B

Quick Start Guide to Profibus DP for the Servostar S300/S400/S600/S700 Jimmy Coleman 1/12/2018 Rev. B Quick Start Guide to Profibus DP for the Servostar S300/S400/S600/S700 Jimmy Coleman 1/12/2018 Rev. B The purpose of this document is to provide just enough information to get Profibus communication working,

More information

How To Use This Manual

How To Use This Manual vi AX DRIVE USER GUIDE How To Use This Manual Assumptions This manual is designed to help you install. develop. and maintain your system. Each chapter begins with a list of specific objectives that should

More information

DeviceNet Motor Control

DeviceNet Motor Control Quick-Start Guide for Freedom DN65 DeviceNet I/O Module using Eaton Cutler-Hammer NetView 2.0 This Quick-Start Guide provides instructions for configuring a Cutler-Hammer Freedom full voltage, non-reversing

More information

Model BB9 RS-232 Multi-Drop Box. Operating Bulletin. Innovative Flow and Pressure Solutions. Standard 8 pin Mini-DIN Connector

Model BB9 RS-232 Multi-Drop Box. Operating Bulletin. Innovative Flow and Pressure Solutions. Standard 8 pin Mini-DIN Connector Operating Bulletin Standard 8 pin Mini-DIN Connector Model BB9 RS-232 Multi-Drop Box Innovative Flow and Pressure Solutions 6 pin Locking Industrial Connector 1 12/15/2011 Rev.1 DOC-BB9MAN-RS232 2 Alicat

More information

How to control and monitor up to 16 Motor Insight motor protection relays via an HMi and Modbus serial

How to control and monitor up to 16 Motor Insight motor protection relays via an HMi and Modbus serial Application The purpose of this application example is to demonstrate how to use the HMi electronic operator interface family to control and monitor up to 16 Motor InsightT motor protection relays via

More information

DFS/Cutter. Debugging Communication Problems

DFS/Cutter. Debugging Communication Problems DFS/Cutter Technical Support Bulletin Debugging Communication Problems Abstract: This TSB is written to help users debug communication problems where the cutter appears to ignore everything the computer

More information

FA-2448 SIX POSITION Filter Wheel

FA-2448 SIX POSITION Filter Wheel 15 Discovery Way, Acton, MA 01720 Phone: (978)263-3584, Fax: (978)263-5086 Web Site: www.acton-research.com Operating Instructions Acton Research Corporation FA-2448 SIX POSITION Filter Wheel Rev. 3.05.17

More information

Interface Technology Group, Inc.

Interface Technology Group, Inc. Interface Technology Group, Inc. Model RDU 1.2X2 Reader Display Unit Operation and Maintenance Manual Firmware Version 2.02 Specifications: Interface Technology Group, Inc. 2107 South Hwy US-1 Rockledge,

More information

Installation & Operation

Installation & Operation LED Readout 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

emu - Mains Distribution Unit

emu - Mains Distribution Unit emu - Mains Distribution Unit Operation Manual Ver 2.7 20-04-11 - Page 1-20/04/2011 General Description The emu is a twelve output mains distribution unit with an embedded web server to provide IP control

More information

SATA Storage Duplicator Instruction on KC705 Rev Sep-13

SATA Storage Duplicator Instruction on KC705 Rev Sep-13 SATA Storage Duplicator Instruction on KC705 Rev1.0 24-Sep-13 This document describes the step to run SATA Duplicator Demo for data duplication from one SATA disk to many SATA disk by using Design Gateway

More information

STEPPER-MOTOR-RD STEPPER MOTOR REFERENCE DESIGN KIT USER S GUIDE. 1. Kit Contents. 2. Kit Overview. Figure 1. Stepper Motor Reference Design Board

STEPPER-MOTOR-RD STEPPER MOTOR REFERENCE DESIGN KIT USER S GUIDE. 1. Kit Contents. 2. Kit Overview. Figure 1. Stepper Motor Reference Design Board STEPPER MOTOR REFERENCE DESIGN KIT USER S GUIDE 1. Kit Contents The Stepper Motor Reference Design Kit contains the following items: Stepper Motor Reference Design Board Stepper Motor Universal AC to DC

More information

Four opto-isolated signal channels: SD, RD, RTS, and CTS. Electrical compatibility with RS-485. A 5V DC/DC converter for power isolation

Four opto-isolated signal channels: SD, RD, RTS, and CTS. Electrical compatibility with RS-485. A 5V DC/DC converter for power isolation July 2000 RS-4 Port Isolator IC0ACC03 The IC0ACC03 RS-4 Port Isolator replaces the obsolete ICCMM0 Isolated Repeater/Converter (also known as the Brick ). This Port Isolator provides the basic functionality

More information

Product Support Bulletin

Product Support Bulletin EPSON AMERICA, INC. EPSON Product Support Bulletin Subject: 24 Pin Printer Error and Beep Codes Date: 4/3/91 PSB No: P-0076 Page(s): 1 of 4 Originator JV Epson printers issue beep tones when certain error

More information

The following simple procedures should be performed prior to testing the 289H M relay card:

The following simple procedures should be performed prior to testing the 289H M relay card: 289H M LSS Installation & Operations Manual Start Up & Test Procedures Chapter 5 INTRODUCTION The information in this section of the manual provides the step by step procedures for conducting any testing

More information

QUASAR PROJECT KIT # ATMEL AVR PROGRAMMER

QUASAR PROJECT KIT # ATMEL AVR PROGRAMMER This kit is a simple but powerful programmer for the Atmel AT90Sxxxx ( AVR ) family of microcontrollers. The Atmel AVR devices are a low-power CMOS 8-bit microcontroller using a RISC architecture. By executing

More information

ASTAT XB/XBm Remote Operator

ASTAT XB/XBm Remote Operator ASTAT XB/XBm Remote Operator User Manual 1 Introduction 1.1 Important User Information Observe all necessary safety precautions when controlling the soft starter remotely. Alert personnel that machinery

More information