Application Manual For Programmable Controller RC-Talk (RC-207)

Size: px
Start display at page:

Download "Application Manual For Programmable Controller RC-Talk (RC-207)"

Transcription

1 Application Manual For Programmable Controller RC-Talk (RC-207)

2

3 Table of Contents Introduction... 1 Eight Steps To System Completion... 1 System Design... 1 Wiring... 1 Installing Rc-Talk... 2 Running Rc-Talk... 2 Writing And Editing Program... 4 Application Sample Apllication Sample Compiling... 7 Running & Monitoring... 7 Running In Stand-Alone Mode... 8 Prepared by: Semix Documentation Dept. Document ID. RC-Talk AP-01 Rev. 2.0, Jan. '93 RC-Talk Version 2.0, 7/9/01 i

4

5 Introduction RCTalk language designed for RC-207, makes programming easier and allows you to build a system in the shortest time possible. This manual includes two examples for explaining the use of RCTalk software. Sample Inputs and outputs only. Sample One-axis motion control with inputs and outputs. It is recommended that you at least study the examples and steps before writing your own program. Eight Steps to System Completion The procedures for operating the programmable controller can be broadly divided into the following eight steps: 1. System design & I/O assignment 2. Wiring 3. Installing RCTalk 4. Running RCTalk 5. Writing & Editing a Program 6. Compiling 7. Running & Monitoring 8. Running in Stand-alone Mode System Design: First, the equipment or system to be controlled must be chosen. The ultimate purpose of controller RC-207 is to control an external system. This "system" could be comprised of only inputs and outputs (I/O) or motion control and I/O's. You should decide on the components for your system before proceeding to the next steps. Initially you may want to configure your system similar to the samples for practice. Wiring: Input devices such as limit switches, sensors, relays, solenoids, etc. should be hooked up as detailed in the wiring instruction manual. If your system calls for a stepper motor, refer to the driver instruction manual for wiring the motor and driver. Note: Check all wiring before turning the power supply on. RC-Talk Version 2.0, 7/9/01 1

6 Installing RCTalk To create a directory and copy all the files to your hard drive type the following: c:\md rctalk c:\cd rctalk c:\copy a:*.* This completes the procedure for installing RC-Talk software onto your Hard Drive. For more information, refer to the User's manual, page 2. Running RC-Talk Switch to rctalk directory: c:\cd rctalk Type rctalk and hit enter to run RC-Talk: c:\rctalk>rctalk <file> /<monitor type> monitor type -- v VGA e EGA h Hercules When you start RC-Talk, your screen appears with an animated picture of automation. Press any key to open RC-Talk's text editor screen. Note: If you want to use a mouse, refer to the User's manual for mouse techniques. The software has a default setting of one for COM port and body number. The body number is the identification for the RC-207 controller. To set COM port and body #, do the following steps: 1. Select Option menu - Press ALT key and then press letter O. 2. Select Environment - Press Shift+F7. 3. Type the COM port and Body number in the dialog box. To move between boxes use press tab key. Press enter key after editing all the selection. You can load the application program samples to get familiar with programming using RC-Talk. 1. Press ALT and then F. 2. Under file menu select Open command by Pressing O. 2 RC-Talk Version 2.0, 7/9/01

7 3. Type iodemo.rct or mdemo.rct in the dialog box and then press Enter. RC-Talk Version 2.0, 7/9/01 3

8 Writing & Editing a Program Load either iodemo.rct or mdemo.rct or write your own program after referring to the Language Reference manual. Application Sample 1 (iodemo.rct) System Configuration with input and output devices only (Refer to page -- RC-207 installation manual for system configuration and wiring.) ;****************************************************************** ; This program is written in RC_Talk language for a RC_207 controller. ; ; The outputs on port 2 rotate in both directions (left and ; right), depending on the status of input port 3 bit 1. If the input ; is ON - it rotates right, if OFF - it rotates left. This operation ; will run non-stop until input port 3 bit 0 is turned ON. ; ;****************************************************************** DEF Eloop = INP 3 BIT 0 ;Define end of loop by inport 3 bit 0 DEF RDir = INP 3 BIT 1 ;Define rotate direction switch by inport 3 bit 1 A = 01H ; Load 01hex into A buffer DO CALL MaskA WAIT 2 LOOP WHILE Eloop OFF ; Call MaskA subroutine ; Wait for 200 millisecs.(timer has100 ms multiplication ; factor) ; Repeat until INP 3 Bit 0 OFF END SUB MaskA If RDir ON THEN ROTATER A END IF IF RDIR OFF THEN ROTATEL A END IF OUT 2 A ; Check INP 3 BIT 1 status ; Rotate Right the contents of buffer A ; Rotate Left the contents of buffer A ; Set outport 2 with buffer A contents END SUB 4 RC-Talk Version 2.0, 7/9/01

9 Application Sample 2 (mdemo.rct) System Configuration with input, and output devices and one axis motion control: (Refer to page -- of the RC-207 Installation manual for system configuration and wiring.) ;****************************************************************** ; This program is written in RC_Talk language for RC_207 ; controller. ; This program runs two step motor alternatley while turning ouputs based on ; the status of the inputs. ; ; ; ;****************************************************************** DEF ENDLOOP = INP1 BIT 4 ;Define end of the loop with snesor Input port 1 bit 4 DEF SENSR0 = INP 3 BIT 0 ;Define sensor0 input port 3 bit 0 DEF SENSR1 = INP 3 BIT 1 DEF SENSR2 = INP 3 BIT 2 DEF SENSR3 = INP 3 BIT 3 DEF SENSR4 = INP 3 BIT 4 DEF SENSR5 = INP 3 BIT 5 DEF SENSR6 = INP 3 BIT 6 DEF SENSR7 = INP 3 BIT 7 DEF OUT0 = INP 5 BIT 0 ;Define outport 2 bit 0 as input 5 DEF OUT1 = INP 5 BIT 1 DEF OUT2 = INP 5 BIT 2 DEF OUT3 = INP 5 BIT 3 DEF OUT4 = INP 5 BIT 4 DEF OUT5 = INP 5 BIT 5 DEF OUT6 = INP 5 BIT 6 DEF OUT7 = INP 5 BIT 7 DEF ARM = MOTOR 1 DEF ROTARY = MOTOR 2 ;Define motor 1 as ARM MODE 2DRV ARM RESET ROTARY RESET COUNTER = ;Set position counter to 2000 pulses RC-Talk Version 2.0, 7/9/01 5

10 DO CALL UPDATEOUTPUTS ARM MOVE INC CW FINISH MOVE ;Call subroutine updateoutputs CALL UPDATEOUTPUTS MOVE INC CCW FINISH MOVE CALL UPDATEOUTPUTS ROTARY MOVE INC CW FINISH MOVE CALL UPDATEOUTPUTS MOVE INC CCW FINISH MOVE LOOP WHILE ELOOP OFF END SUB UPDATEOUTPUTS A = INP 3 OUT 2 A END SUB 6 RC-Talk Version 2.0, 7/9/01

11 Compiling: This procedure under Program menu converts the program to low level commands before downloading it to the controller. 1. Press Alt and then F, select save command to save the existing file. 2. To select Program menu press Alt and then letter P 3. To compile Program press C. If program is error free the RC-Talk software downloads the low level program to RC-207's RAM or EEPROM. Refer to Program menu in User's manual page 14. Note: To run and monitor the program connect RC-207 to computer. Refer to wiring instruction manual for details. Donot save to EEPROM when program is running. Abort or END the program before Saving or Erasing the program to or from EEPROM Running & Monitoring 1. Press Alt and then letter P. 2. Press Shift+F7 for Monitoring with Definitions or press F7 to monitor ports only. 3. Press F1 or R to run the program. Once the program is running you can monitor the inputs, outputs, and information about motors, if they are part of the system. 4. Press F3 or E to End the program or F2 or A to abort the program. Note: Aborting the program will result in sudden stopping of the motor, if running. 5. Press F6 or Esc to exit the monitor screen. You can edit the program if necessary. Compile and run it again to verify the program. RC-Talk Version 2.0, 7/9/01 7

12 Running in Stand-Alone Mode If you are satisfied with the logic and the program has run successfully, save the program to memory and the program file. 1. Press Alt, and then P to open Program menu. 2. Select Save command. This procedure saves the program to controller EEPROM. 3. Press Alt, and then F to open file menu. 4. Select Save command in file menu to save program file. Refer to User's manual for more details. Once the program is debugged for logic and saved in the controller's EEPROM, it is ready to run in stand alone mode. 5. Turn off power to the system, including the controller and driver. 6. Wait for a few minutes. 7. Turn power ON. The controller should starts the sequence automatically without any prompting from the computer. You have now successfully completed using RC-Talk to program and run RC-207 contoller in stand-alone mode. 8 RC-Talk Version 2.0, 7/9/01

AMS COCKPIT USERS GUIDE. AMS Cockpit Version 1.1 USERS GUIDE

AMS COCKPIT USERS GUIDE. AMS Cockpit Version 1.1 USERS GUIDE AMS COCKPIT USERS GUIDE Table of Contents AMS Cockpit Version 1.1 USERS GUIDE Revision Date: 1/15/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 Table of Contents

More information

NEW CEIBO DEBUGGER. Menus and Commands

NEW CEIBO DEBUGGER. Menus and Commands NEW CEIBO DEBUGGER Menus and Commands Ceibo Debugger Menus and Commands D.1. Introduction CEIBO DEBUGGER is the latest software available from Ceibo and can be used with most of Ceibo emulators. You will

More information

How to use Digital key pad (option)

How to use Digital key pad (option) Function of Digital key pad Monitoring of rotation speed (actual speed) and load factor, etc. Display detail of trip, and trip history. Trip reset by pressing and. Parameter setting, initialization, and

More information

ChekLoad Users Guide. This guide will assist in configuring the Ingenico en-2500 Check Reader to operate with a merchant s terminal type.

ChekLoad Users Guide. This guide will assist in configuring the Ingenico en-2500 Check Reader to operate with a merchant s terminal type. ChekLoad Users Guide This guide will assist in configuring the Ingenico en-2500 Check Reader to operate with a merchant s terminal type. Global etelecom, Inc. 11/6/2009 Configuration of the Ingenico en-2500

More information

78M6618 PDU1 Firmware Quick Start Guide

78M6618 PDU1 Firmware Quick Start Guide 78M6618 PDU1 Firmware Quick Start Guide July 2012 Rev. 0 UG_6618_122 Table of Contents 1 Introduction... 3 1.1 What s Included with an EVK?... 4 1.2 What s included with an SDK?... 5 1.3 Other Development

More information

Setup support for RAMCHECK. Extensive, context-sensitive On-Line Help and Tutorials. HARD DISK INSTALLATION:

Setup support for RAMCHECK. Extensive, context-sensitive On-Line Help and Tutorials. HARD DISK INSTALLATION: RAMCHECK OWNER S MANUAL While RAMCHECK is a stand-alone unit, the product includes the RAMCHECK PC Communications programs that allow you to upgrade your RAMCHECK s flash EPROM from our Web site (www.innoventions.com).

More information

Figure 1: NC > 2 Axis menu > Options

Figure 1: NC > 2 Axis menu > Options Click To See: How to Use Online Documents SURFCAM Online Documents J 685)&$0Ã5HIHUHQFHÃ0DQXDO 7 &21),*85$7,21722/6 7.1 INTRODUCTION SURFCAM s default configuration parameters are contained in the SURFCAM.INI

More information

Owner s Manual. 1833, 1834, 1835, 1837 PC Programmable Telephone Entry and Access Control Systems

Owner s Manual. 1833, 1834, 1835, 1837 PC Programmable Telephone Entry and Access Control Systems Owner s Manual 1833, 1834, 1835, 1837 PC Programmable Telephone Entry and Access Control Systems DoorKing, Inc. 120 Glasgow Avenue Inglewood, California 90301 U.S.A. Phone: 310-645-0023 Fax: 310-641-1586

More information

3. IMPORTANT: When prompted, accept the default Installation directory.

3. IMPORTANT: When prompted, accept the default Installation directory. Installing ProView 4.0.1 on your PC 1. Insert the ProView 4.0.1 CD-ROM into your CD-ROM Drive. The Install Shield Wizard should run automatically. If it does not, click Start then Run. Enter D:\setup.exe

More information

Comprehensive support USB hot-swappable, USB connection at any time to monitor the state, Mach3 work

Comprehensive support USB hot-swappable, USB connection at any time to monitor the state, Mach3 work USB motion control card installation manual The card features: Supports all versions of Mach3, including the latest version of Mach3 R3.042.040. Supports all versions of Windows, including the latest version

More information

RCX Tutorial. Commands Sensor Watchers Stack Controllers My Commands

RCX Tutorial. Commands Sensor Watchers Stack Controllers My Commands RCX Tutorial Commands Sensor Watchers Stack Controllers My Commands The following is a list of commands available to you for programming the robot (See advanced below) On Turns motors (connected to ports

More information

ISDN Console Setup Utility User s Guide

ISDN Console Setup Utility User s Guide ISDN Console Setup Utility User s Guide Contents Introduction............................ 1 System Requirements.................... 1 README.TXT file...................... 1 Connecting the PC to the 2260d

More information

Instruction Manual for BE-SP3 Circuit. 10/21/07

Instruction Manual for BE-SP3 Circuit. 10/21/07 Page 1 of 54 Instruction Manual for BE-SP3 Circuit. 10/21/07 Page 1 Index: Page 2 BE-SP3 Circuit Specifications. Page 3-4 Intro to the BE-SP3. Page 5 Basics of serial to parallel. Page 6-7 ASCII Code.

More information

Instruction Manual. I/O Master RC-207A RORZE CORPORATION

Instruction Manual. I/O Master RC-207A RORZE CORPORATION Instruction Manual I/O Master RC-207A RORZE CORPORATION Be sure to read the following precautions for your safety. This section describes safety precautions to avoid danger to you or someone else, to

More information

Please note this is an advanced topic. A Look Under the Hood at the Roco Crane Functions. See Macro Appendix M see Engine Profile

Please note this is an advanced topic. A Look Under the Hood at the Roco Crane Functions. See Macro Appendix M see Engine Profile A Look Under the Hood at the Roco Crane Functions See Macro Appendix M see Engine Profile To find out what each Roco Crane function does, click on any item above that is enclosed in a red box and you will

More information

SCORBASE. User Manual. Version 5.3 and higher. for SCORBOT ER-4u SCORBOT ER-2u ER-400 AGV Mobile Robot. Catalog #100342, Rev. G

SCORBASE. User Manual. Version 5.3 and higher. for SCORBOT ER-4u SCORBOT ER-2u ER-400 AGV Mobile Robot. Catalog #100342, Rev. G SCORBASE Version 5.3 and higher for SCORBOT ER-4u SCORBOT ER-2u ER-400 AGV Mobile Robot User Manual Catalog #100342, Rev. G February 2006 Copyright 2006 Intelitek Inc. SCORBASE USER MANUAL Catalog #100342,

More information

1. PLC - Introduction

1. PLC - Introduction What does PLC stand for? PLC - programmable logic controller PLC implements logic control functions by means of a program PLC introduction 1 Features PLC introduction 2 Features PLC introduction 3 An application

More information

The QuickCalc BASIC User Interface

The QuickCalc BASIC User Interface The QuickCalc BASIC User Interface Running programs in the Windows Graphic User Interface (GUI) mode. The GUI mode is far superior to running in the CONSOLE mode. The most-used functions are on buttons,

More information

EC X17 - Installing guide

EC X17 - Installing guide EC X17 - Installing guide Features This 4 Axis CNC Stand-Alone stepper Controller ensures smooth and accurate fast motion Command and program loading is made from the EC Watch software via USB or Ethernet

More information

HARD DISK INSTALLATION:

HARD DISK INSTALLATION: While RAMCHECK is a stand-alone unit, the product includes the Communications Programs that allow you to upgrade your RAMCHECK s flash EPROM from our Web site (www.innoventions.com). The PC programs software

More information

WebPakCS Software Version 1.0

WebPakCS Software Version 1.0 WebPakCS Software Version 1.0 Instruction Manual D2-3447 The information in this manual is subject to change without notice. Throughout this manual, the following notes are used to alert you to safety

More information

HARD DISK INSTALLATION:

HARD DISK INSTALLATION: 7. PC INTERFACE SIMCHECK II OWNER S MANUAL 7. PC PROGRAMS While SIMCHECK II, or SIMCHECK II se, is a stand-alone unit, the product includes the Communications Programs that allow you to upgrade your SIMCHECK

More information

VSM Manager. The VSM Manager is a Windows GUI that can be installed to serially control Genesis Matrixes with a firmware of version 2.5 or later.

VSM Manager. The VSM Manager is a Windows GUI that can be installed to serially control Genesis Matrixes with a firmware of version 2.5 or later. VSM Manager Table of Contents Overview...1 Getting Started...1 Toolbar... 2 Serial Connection... 2 Refresh... 3 Help... 3 Tab Pages... 4 General... 4 Control...5 Schedule... 6 Command... 6 Communications...

More information

34MDSI Series Stepper Motor/Driver/Controller

34MDSI Series Stepper Motor/Driver/Controller 34MDSI Series Stepper Motor/Driver/Controller USER S GUIDE Stepper Motor / Microstep Driver / Controller Eliminates Motor Wires Encoder Options Available Microstep Divisor of 10 Compact Package 20-80V

More information

zub Getting Started zub machine control AG Manual APOSS Getting Started 7/2012 page 1

zub Getting Started zub machine control AG Manual APOSS Getting Started 7/2012 page 1 zub Getting Started Getting Started 1 Safety Tips and Requirements... 2 System Architecture... 3 Installing the APOSS-IDE... 8 Wiring the Controller... 9 Starting and Exiting APOSS... 10 Connecting to

More information

TEEAL. TEEAL Configuration and Setup. Configuration & network setup for new TEEAL machines. Written By: The TEEAL Team

TEEAL. TEEAL Configuration and Setup. Configuration & network setup for new TEEAL machines. Written By: The TEEAL Team TEEAL TEEAL Configuration and Setup Configuration & network setup for new TEEAL machines Written By: The TEEAL Team INTRODUCTION This guide will walk you through the steps to configure TEEAL. Before proceeding

More information

Appendix J: Using Shortcut Keys and Shortcut Menus

Appendix J: Using Shortcut Keys and Shortcut Menus Appendix J: Using Shortcut Keys and Shortcut Menus Introduction This appendix covers shortcuts to many of the menu options, dialog boxes, and commands used in PC-DMIS. Using shortcuts will speed up your

More information

23MDSI Series Stepper Motor/Driver/Controller

23MDSI Series Stepper Motor/Driver/Controller 23MDSI Series Stepper Motor/Driver/Controller USER S GUIDE Stepper Motor / Microstep Driver / Controller Eliminates Motor Wires Encoder Options Available Microstep Divisors of 8, 4, 2, or Full Step Compact

More information

Trio Motion Technology 4-2. Motion Perfect v3

Trio Motion Technology 4-2. Motion Perfect v3 MOTION PERFECT V3 4 Trio Motion Technology 4-2 Software Reference Manual Introduction to Motion Perfect 3 Motion Perfect 3 is an Microsoft Windows based application for the PC, designed to be used in conjunction

More information

Creating and Triggering Animations

Creating and Triggering Animations Creating and Triggering Animations 1. Download the zip file containing BraidGraphics and unzip. 2. Create a new Unity project names TestAnimation and set the 2D option. 3. Create the following folders

More information

Creating a Basic Application for DataPlus Mobile November 18, 2015

Creating a Basic Application for DataPlus Mobile November 18, 2015 Creating a Basic Application for DataPlus Mobile November 18, 2015 An application in DataPlus Mobile determines the types of features and their attributes that can be collected in the field. In this support

More information

IRF90 - Rotating Focuser

IRF90 - Rotating Focuser IRF90 - Rotating Focuser Part # 600180 REV092111 Page 1 Contents Introduction and Overview... 3 Limitations... 3 Packing List... 4 Installation... 5 Remove Existing Focuser... 5 Installing the Rotating

More information

SENSORLESS-BLDC-MOTOR-RD

SENSORLESS-BLDC-MOTOR-RD S ENSORLESS BLDC MOTOR REFERENCE DESIGN KIT USER S GUIDE 1. Kit Contents The BLDC Motor Reference Design Kit contains the following items: BLDC Motor Reference Design Board Brushless DC (BLDC) Motor Universal

More information

ATC2. Swing Arm Tool Changer. Operator s Manual. Rev Centroid Corp. Howard, PA 16841

ATC2. Swing Arm Tool Changer. Operator s Manual. Rev Centroid Corp. Howard, PA 16841 CENTROID ATC2 Swing Arm Tool Changer Operator s Manual Rev. 71513 2004-2013 Centroid Corp. Howard, PA 16841 D:\Keith Documents\Swing Arm atc2 Operating Instructions.odt Page 1 7/15/2013-233 Overview ARM2

More information

Exit: These control how the object exits the slide. For example, with the Fade animation the object will simply fade away.

Exit: These control how the object exits the slide. For example, with the Fade animation the object will simply fade away. PowerPoint 2013 Animating Text and Objects Introduction In PowerPoint, you can animate text and objects such as clip art, shapes, and pictures. Animation or movement on the slide can be used to draw the

More information

Practical Training with the EPOS Studio

Practical Training with the EPOS Studio Practical Training with the EPOS Studio Purpose and goals The purpose of the exercises is to get familiar with some of the tools and wizards of the EPOS Studio. In particular the download wizard for new

More information

Rotator Genius Instruction Manual v1.3.3

Rotator Genius Instruction Manual v1.3.3 Rotator Genius Instruction Manual v1.3.3 OVERVIEW Device connection overview 4O3A Signature Rotator Genius is a smart, high integration rotator controller. It uses an electromagnetic sensor for reading

More information

ATC3 Umbrella Tool Changer. Operator s Manual. Rev. 05-October Centroid Corp. Howard, PA 16841

ATC3 Umbrella Tool Changer. Operator s Manual. Rev. 05-October Centroid Corp. Howard, PA 16841 CENTROID ATC3 Umbrella Tool Changer Operator s Manual Rev. 05-October-2007 2006 Centroid Corp. Howard, PA 16841 D:\Documents\Manuals\ATC3\Umbrella ATC3 Operating Instructions.doc Page 1 of 13 D:\Documents\Manuals\ATC3\Umbrella

More information

Programming in the MAXQ environment

Programming in the MAXQ environment AVAILABLE The in-circuit debugging and program-loading features of the MAXQ2000 microcontroller combine with IAR s Embedded Workbench development environment to provide C or assembly-level application

More information

Welcome to Immersive Terf!

Welcome to Immersive Terf! Immersive Terf 3D Immersive Collaboration Consultants, LLC Welcome to Immersive Terf! Getting Started Welcome to Immersive Terf! We hope you enjoy your adventure! For more information and 30 days of unlimited

More information

U90 Ladder Software Manual. Version 3.50, 6/03

U90 Ladder Software Manual. Version 3.50, 6/03 U90 Ladder Software Manual Version 3.50, 6/03 Table Of Contents Welcome to U90 Ladder... 1 Program Editors... 1 Project Navigation Tree...1 Browse Sequences...1 Printing Documentation...2 Interface Language...

More information

SIMATIC FM 453. Getting Started. 04/2007 Edition. First Steps in Commissioning. Siemens

SIMATIC FM 453. Getting Started. 04/2007 Edition. First Steps in Commissioning. Siemens SIMATIC FM 453 Getting Started 04/2007 Edition First Steps in Commissioning This Guide uses a specific example for channel 1 (axis 1) with servo drive or step drive with four operational steps in successive

More information

MiniLog-Comm. Communication Software for Stepper Motor Control Units OMC, TMC, MCC and IXE. Manual 1237-A007 GB. Status

MiniLog-Comm. Communication Software for Stepper Motor Control Units OMC, TMC, MCC and IXE. Manual 1237-A007 GB. Status MiniLog-Comm Communication Software for Stepper Motor Control Units OMC, TMC, MCC and IXE Status Manual 1237-A007 GB phytron MiniLog-Comm Communication Software for Stepper Motor Control Units OMC, TMC,

More information

RoboAGVSim AGV Simulator User Manual

RoboAGVSim AGV Simulator User Manual RoboAGVSim AGV Simulator User Manual V1.0, December 1, 2017 Visit www.roboteq.com to download the latest revision of this manual Copyright 2017 Roboteq, Inc Copyright Roboteq Inc. 2017. All Rights Reserved.

More information

SENSORLESS-BLDC-MOTOR-RD

SENSORLESS-BLDC-MOTOR-RD S ENSORLESS BLDC MOTOR REFERENCE DESIGN KIT USER S GUIDE 1. Kit Contents The Sensorless BLDC Motor Reference Design Kit contains the following items: Sensorless BLDC Motor Reference Design Board Brushless

More information

Note that FLIP is an Atmel program supplied by Crossware with Atmel s permission.

Note that FLIP is an Atmel program supplied by Crossware with Atmel s permission. INTRODUCTION This manual will guide you through the first steps of getting the SE-8051ICD running with the Crossware 8051 Development Suite and the Atmel Flexible In-System Programming system (FLIP). The

More information

wck programmer User s Manual ver 1.03 software version 1.32 Developer s software tool for wck series Intelligent Robot Module

wck programmer User s Manual ver 1.03 software version 1.32 Developer s software tool for wck series Intelligent Robot Module software version 1.32 Developer s software tool for wck series Intelligent Robot Module User s Manual ver 1.03 Contents 1. Software Overview...3 2. Function Summary and Screen Layout...3 3. Setting Serial

More information

Embedded Training MakeICT Workshop

Embedded Training MakeICT Workshop Embedded Training MakeICT Workshop 1 PROJECT GOAL Come learn with use as we introduce programming skills via a project and program embedded systems with the vision of understanding the hardware and software

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

PMC-1HS/PMC-2HS Series

PMC-1HS/PMC-2HS Series PMC-HS/PMC-2HS Series Features Max. Mpps high-speed operation operation modes: Jog, Continuous, Index, Program mode 2 control command and 6 steps of operations Parallel I/O terminal built in which is connectable

More information

Creating the Tilt Game with Blender 2.49b

Creating the Tilt Game with Blender 2.49b Creating the Tilt Game with Blender 2.49b Create a tilting platform. Start a new blend. Delete the default cube right click to select then press X and choose Erase Selected Object. Switch to Top view (NUM

More information

Hardware and software requirements. Installing and wiring up the FM 357-2

Hardware and software requirements. Installing and wiring up the FM 357-2 This Guide uses a concrete example to guide you through 5 start-up steps in the order given below until you have obtained a functional application. You will then be able to traverse an axis and get to

More information

ENGR 5865 DIGITAL SYSTEMS

ENGR 5865 DIGITAL SYSTEMS ENGR 5865 DIGITAL SYSTEMS ModelSim Tutorial Manual January 22, 2007 Introduction ModelSim is a CAD tool widely used in the industry for hardware design. This document describes how to edit/add, compile

More information

Data Manager Software User Manual

Data Manager Software User Manual Data Manager Software User Manual CONTENTS 1. Installation of USB Virtual COM Port driver software... 2 2. Installation of Data Manager Software... 2 3. Connecting instrument to a PC (Personal Computer)...

More information

PMDX-411 SmartBOB-USB with DB-25 Connector For use with Mach4

PMDX-411 SmartBOB-USB with DB-25 Connector For use with Mach4 PMDX-411 SmartBOB-USB with DB-25 Connector For use with Mach4 Quick Start Guide Document Revision: 0.4 Date: 6 May 2015 This document applies to units built on artwork revision PCB-522B. This is a rough

More information

ProCASE II User Manual

ProCASE II User Manual ProCASE II User Manual 270 Rutledge Road, Fletcher, NC 28732 USA (800) 233-0580 (828) 654-7920 Fax (828) 654-8824 The contents of this document are protected under the copyright laws of the United States

More information

Toon Boom Harmony V15.0

Toon Boom Harmony V15.0 Toon Boom Harmony V15.0 Paint Application Keyboard Shortcuts Guide TOON BOOM ANIMATION INC. 4200 Saint-Laurent, Suite 1020 Montreal, Quebec, Canada H2W 2R2 +1 514 278 8666 contact@toonboom.com toonboom.com

More information

TelePACE Studio Ladder Logic Training Manual

TelePACE Studio Ladder Logic Training Manual TelePACE Studio Ladder Logic Training Manual SCADA products... for the distance TelePACE Studio Ladder Editor Training Manual 1999-2009 Control Microsystems Inc. All rights reserved. Printed in Canada.

More information

Nanotec Electronic GmbH Gewerbestrasse Landsham near Munich Tel: 089/ Fax: 089/

Nanotec Electronic GmbH Gewerbestrasse Landsham near Munich Tel: 089/ Fax: 089/ Manual SMCI-46 Positioning Control (Including Output Module) -1- Contents Page 1 General -3-2 Inputs/outputs and functions -4-2.1 Inputs -6-2.2 Outputs -7-2.3 Pushbuttons -7-2.4 Switches -8-2.5 Serial

More information

THIS MANUAL CONTAINS INFORMATION FOR INSTALLING AND OPERATING THE FOLLOWING PRODUCT:

THIS MANUAL CONTAINS INFORMATION FOR INSTALLING AND OPERATING THE FOLLOWING PRODUCT: Indexing Controller Document: Operation Manual Document #: T06 Document Rev: 3.0 Product: Indexing Table controller Product Rev: 3.0 Created: Jan-2013 Updated: Dec- 2014 THIS MANUAL CONTAINS INFORMATION

More information

78M6613 PSU Firmware Quick Start Guide

78M6613 PSU Firmware Quick Start Guide AVAILABLE 78M6613 PSU Firmware Quick Start Guide May 4, 2012 Rev. 0 UG_6613_113 78M6613 PSU Firmware Quick Start Guide UG_6612_113 Maxim cannot assume responsibility for use of any circuitry other than

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

EC X17 - CNC Ethernet Stepper Controller

EC X17 - CNC Ethernet Stepper Controller EC X17 - CNC Ethernet Stepper Controller Features This 4 Axis CNC Stand-Alone stepper Controller ensures smooth and accurate fast motion Command and program loading is made from the EC Watch software via

More information

MillMaster Pro. able of Contents. 1. Getting Started. ted. 2. Menu Descriptions

MillMaster Pro. able of Contents. 1. Getting Started. ted. 2. Menu Descriptions Tab able of Contents 1. Getting Started ted Introduction... 3 2. Menu Descriptions 2.1 File Menu... 7 2.2 Switch Menu... 11 2.3 View Menu... 12 2.4 Control Menu... 15 2.5 Run Menu... 17 2.6 Tools Menu...

More information

Peripheral Devices devices attached to the CPU (computer)

Peripheral Devices devices attached to the CPU (computer) Lesson Notes Author: Pamela Schmidt Peripheral Devices devices attached to the CPU (computer) Input Devices allows information to be sent to the computer Pointing Devices Mouse Most mice have two buttons.

More information

WELDSEQ Plus. Operation / Installation Manual. Weld Sequence PLC Terminal Program. Computer Weld Technology, Inc.

WELDSEQ Plus. Operation / Installation Manual. Weld Sequence PLC Terminal Program. Computer Weld Technology, Inc. Computer Weld Technology, Inc. 10702 Old Bammel N Houston Rd. Houston, TX 77086 Phone: (713) 462-2118 Fax: (713) 462-2503 Email: cwt@cweldtech.com WELDSEQ Plus Weld Sequence PLC Terminal Program Operation

More information

GmbH, Stettiner Str. 38, D Paderborn

GmbH, Stettiner Str. 38, D Paderborn AnDi 1 to AnDi 4 A/D Converter for M-Bus (Valid from M-Bus generation: $31) Art. no. MB AnDi 1 Art. no. MB AnDi 2 Art. no. MB AnDi 3 Art. no. MB AnDi 4 1 channel A/D converter for M-Bus 2 channel A/D converter

More information

AE483: Lab #1 Sensor Data Collection and Analysis

AE483: Lab #1 Sensor Data Collection and Analysis AE483: Lab #1 Sensor Data Collection and Analysis T. Bretl September 11, 2017 1 Goal You will be working with the AscTec Hummingbird Quadrotor this semester. There are two sources of sensor data that you

More information

Computer Numerical Control for Windows Version 1.2. User s Guide

Computer Numerical Control for Windows Version 1.2. User s Guide Computer Numerical Control for Windows Version 1.2 User s Guide 1998 FlashCut CNC, Inc. 1263 El Camino Real, Suite W, Menlo Park, CA 94025 Phone (650) 853-1444 Fax (650) 853-1405 www.flashcutcnc.com Table

More information

Project Planning. Module 4: Practice Exercises. Academic Services Unit PREPARED BY. August 2012

Project Planning. Module 4: Practice Exercises. Academic Services Unit PREPARED BY. August 2012 Project Planning PREPARED BY Academic Services Unit August 2012 Applied Technology High Schools, 2012 Module Objectives Upon successful completion of this module, students should be able to: 1. Select

More information

A 3-SPEED STEPPER MOTOR

A 3-SPEED STEPPER MOTOR ECE 36 Projects; Stepper Motor 1 of 5 A 3-SPEED STEPPER MOTOR 1. Design a microprocessing system to implement a 3-speed stepper motor. Your design is constrained to use the parts shown in Fig. 1 and described

More information

960H H.264 DVR Setup Guide

960H H.264 DVR Setup Guide Package Content 960H H.264 DVR Setup Guide Inspect the packaging carton. Make sure the 960H H.264 DVR is properly delivered. Remove all items from the box and make sure the box contains the following items.

More information

Manual Software Firmware Loader V1.1

Manual Software Firmware Loader V1.1 Manual Software Firmware Loader V1.1 (PC software for Microsoft Windows XP, VISTA, 7, 10) This manual describes the installation of the Firmware Loader PC software and as a support for starting up the

More information

Robotic Systems ECE 401RB Fall 2006

Robotic Systems ECE 401RB Fall 2006 The following notes are from: Robotic Systems ECE 401RB Fall 2006 Lecture 13: Processors Part 1 Chapter 12, G. McComb, and M. Predko, Robot Builder's Bonanza, Third Edition, Mc- Graw Hill, 2006. I. Introduction

More information

truvision DVR 31 Quick Start Guide

truvision DVR 31 Quick Start Guide truvision DVR 31 Quick Start Guide Content Contact information 1 Package contents 1 Installation environment 1 Setting up the DVR 31 1 Connecting the devices 2 Turning on the DVR 31 2 Operating the DVR

More information

Automation Products for the New Millennium

Automation Products for the New Millennium Automation Products for the New Millennium 21640 N. 19 th Ave Ste C6 Phoenix AZ 85027 USA www.vsi-az.com 623-434-6621 1. OVERVIEW... 3 2. SOFTWARE REQUIREMENTS AND INSTALLATION... 3 3. WORKBENCH COMPONENTS...

More information

Chapter 12 Visual Program Debugger

Chapter 12 Visual Program Debugger Chapter 12 Visual Program Debugger In the previous chapter on programs a section titled Getting programs to do what you want discussed using the log to trace how programs execute. That is a useful technique

More information

LV8548MCSLDGEVB. Stepper Motor Driver Module Solution Kit Quick Start Guide Appendix. Arduino IDE Installation

LV8548MCSLDGEVB. Stepper Motor Driver Module Solution Kit Quick Start Guide Appendix. Arduino IDE Installation LV8548MCSLDGEVB Stepper Motor Driver Module Solution Kit Quick Start Guide Appendix Arduino IDE Installation 1 Run The installer is available in the USB drive provided in the Motor Driver Kit. (To avoid

More information

GO! with Microsoft PowerPoint 2016 Comprehensive

GO! with Microsoft PowerPoint 2016 Comprehensive GO! with Microsoft PowerPoint 2016 Comprehensive First Edition Chapter 3 Enhancing a Presentation with Animation, Video, Tables, and Charts Learning Objectives Customize Slide Backgrounds and Themes Animate

More information

ON4AKH Antenna Rotator controller Version 1.0

ON4AKH Antenna Rotator controller Version 1.0 ON4AKH Antenna Rotator controller Version 1.0 1. Some construction tips The project consists out of 3 boards. The 1 st board is the main board containing the PIC micro controller and the H-bridge components

More information

Schematic Editing Essentials

Schematic Editing Essentials Summary Application Note AP0109 (v2.0) March 24, 2005 This application note looks at the placement and editing of schematic objects in Altium Designer. This application note provides a general overview

More information

PowerVIEW HD 22/30 Version

PowerVIEW HD 22/30 Version Release Notes 9/17/15 PowerVIEW HD 22/30 Version 1.01.04 Released 9/17/15 Additions and Enhancements Improved IR Processing in Half-Recessed Ceiling Mount Improved 1080p/25 video quality. Fixed Issues

More information

PSF-650 Ver Manual

PSF-650 Ver Manual Monitor software for HA-655/675 PSF-650 Ver. 1.22 Manual Product specifications are subject to change without notice for improvement purposes. Keep this manual in a convenient location and refer to it

More information

Arduino Cookbook O'REILLY* Michael Margolis. Tokyo. Cambridge. Beijing. Farnham Koln Sebastopol

Arduino Cookbook O'REILLY* Michael Margolis. Tokyo. Cambridge. Beijing. Farnham Koln Sebastopol Arduino Cookbook Michael Margolis O'REILLY* Beijing Cambridge Farnham Koln Sebastopol Tokyo Table of Contents Preface xiii 1. Getting Started 1 1.1 Installing the Integrated Development Environment (IDE)

More information

Multiple Tool Operating Software 3 Users Manual. Table of Contents. Table of Contents Multiple Tool Operating Software 3 USERS MANUAL...

Multiple Tool Operating Software 3 Users Manual. Table of Contents. Table of Contents Multiple Tool Operating Software 3 USERS MANUAL... Table of Contents Table of Contents... 1 Multiple Tool Operating Software 3 USERS MANUAL... 2 MINIMUM REQUIREMENTS... 2 SUGGESTED REQUIREMENTS... 2 INSTALLATION... 2 START UP... 3 DISPLAY DESCRIPTION...

More information

Operation / Installation Manual

Operation / Installation Manual Computer Weld Technology, Inc. 10702 Old Bammel N Houston Rd. Houston, TX 77086 Phone: (713) 462-2118 Fax: (713) 462-2503 Email: cwt@cweldtech.com ATC II TM AUTOMATIC TORCH CONTROL Operation / Installation

More information

How to update the HF DDS software WARNING

How to update the HF DDS software WARNING How to update the HF DDS software This document describes how to update the software on the HF DDS board. The HF DDS software that is programmed into the PIC18F4520 by Mini-Kits contains a bootload program.

More information

eace PLC Velocio s Embedded Ace (eace) PLC

eace PLC Velocio s Embedded Ace (eace) PLC Velocio s Embedded Ace (eace) PLC eace PLC The eace PLC is a member of the Velocio s groundbreaking series of programmable logic controllers. These PLCs introduce revolutionary new concepts, capabilities,

More information

SECOND EDITION. Arduino Cookbook. Michael Margolis O'REILLY- Tokyo. Farnham Koln Sebastopol. Cambridge. Beijing

SECOND EDITION. Arduino Cookbook. Michael Margolis O'REILLY- Tokyo. Farnham Koln Sebastopol. Cambridge. Beijing SECOND EDITION Arduino Cookbook Michael Margolis Beijing Cambridge Farnham Koln Sebastopol O'REILLY- Tokyo Table of Contents Preface xi 1. Getting Started 1 1.1 Installing the Integrated Development Environment

More information

Help Volume Hewlett Packard Company. All rights reserved. Toolsets: IA Format Utility

Help Volume Hewlett Packard Company. All rights reserved. Toolsets: IA Format Utility Help Volume 1997-2002 Hewlett Packard Company. All rights reserved. Toolsets: IA Format Utility Using the IA Format Utility The IA Format Utility tool lets you convert a.r (dot R) file into an inverse

More information

Programmable stepper motor control board (2 axis)

Programmable stepper motor control board (2 axis) Data pack B Issued March 2002 232-3692 Programmable motor control board (2 axis) Control board RS stock no. 440-098 Control software RS stock no. 440-105 General (RS stock no. 440-098) This board is designed

More information

Blue Point Engineering

Blue Point Engineering Overview DMX Duo driver board allows 2 Unipolar motors and 1 open collector output driver to be controlled from a DMX512 network. he board provides 2 independent motor drives, 1 external load driver and

More information

E102 - Advanced Strain Gauge Transducer Display Interface. Contents

E102 - Advanced Strain Gauge Transducer Display Interface. Contents E102 - Advanced Strain Gauge Transducer Display Interface Contents Torque Transducer Display Interface: TSE3249R Strain Gauge Transducer Display Interface [E102] Operating Guide: TSE2098V (Includes Introduction,

More information

PHARO User Configuration Software UCS USER MANUAL Rev.0-15/07/ pharo.reer.it

PHARO User Configuration Software UCS USER MANUAL Rev.0-15/07/ pharo.reer.it PHARO User Configuration Software UCS USER MANUAL 8540588 - Rev.0-15/07/2004 www.reer.it pharo.reer.it This document is protected by the law of copyright, whereby all rights established therein remain

More information

ServiceBus-Comm. Communication software for Stepper Motor Power Stages with ServiceBus. Manual 1239-A007 GB

ServiceBus-Comm. Communication software for Stepper Motor Power Stages with ServiceBus. Manual 1239-A007 GB ServiceBus-Comm Communication software for Stepper Motor Power Stages with ServiceBus Manual 1239-A007 GB phytron ServiceBus-Comm Communication Software for Stepper Motor Power Stages with ServiceBus

More information

Tait Orca Download and Configuration Application

Tait Orca Download and Configuration Application Tait Orca Download and Configuration Application User s Manual December 2001 439-53010-03 Contents Getting Started...5 Minimum System Requirements...5 Equipment Supplied...5 Application Installation...5

More information

SYSdev Program Development Manual Version 4.3

SYSdev Program Development Manual Version 4.3 SYSdev Program Development Manual Version 4.3 Systems Engineering Associates, Inc. 14989 West 69th Avenue Arvada, Colorado 80007 U.S.A. Telephone: (303) 421-0484 Fax: (303) 421-8108 www.sea-seg.com 02/2004

More information

Light Sensors. Measuring Light. The Phototransistor. Discharge Times. Measuring Light. Chapter 7: Measuring Light

Light Sensors. Measuring Light. The Phototransistor. Discharge Times. Measuring Light. Chapter 7: Measuring Light ME456: Mechatronics Systems Design Chapter 7: Prof. Clark J. Radcliffe Mechanical Engineering Michigan State University http://www.egr.msu.edu/classes/me456/radcliff Light Sensors Digital Camera CCD s

More information

Quick Start Guide ZedboardOLED Display Controller IP v1.0

Quick Start Guide ZedboardOLED Display Controller IP v1.0 Quick Start Guide Introduction This document provides instructions to quickly add, connect and use the ZedboardOLED v1.0 IP core. A test application running on an ARM processor system is used to communicate

More information

AMT203 ABSOLUTE ENCODER Demo Kit User Guide DISCONTINUED

AMT203 ABSOLUTE ENCODER Demo Kit User Guide DISCONTINUED AMT203 ABSOLUTE ENCODER Demo Kit User Guide PART NUMBER: AMT203 AMT-DMBD Demo Board DESCRIPTION: date 2 of 13 DEMO KIT USER GUIDE The AMT-DMBD Demo Board is designed for testing and configuring the AMT

More information