Forward Full Speed Forward Right Turn Backward Full Speed Backward Right Turn Backward Left Turn

Size: px
Start display at page:

Download "Forward Full Speed Forward Right Turn Backward Full Speed Backward Right Turn Backward Left Turn"

Transcription

1 Lesson 4: Programming Sensors & Servos Boe-Bot Motion Programming (PBasic) P a g e 1 Summary of Servo PulsOut Commands Left (P13) Right (P12) Resulting Motion Forward Full Speed Forward Right Turn Forward Left Turn Backward Full Speed Backward Right Turn Backward Left Turn Counter-clockwise Pivot No Motion Clockwise Pivot 850 = 1700us = 1.7ms = CCW 750 = 1500us = 1.5ms (stand still) 650 = 1300us = 1.3ms = CW

2 Getting Set up: Centering the Servo-Motors P a g e 2 Before the BOE-bot is programmed, the servo-motors must be centered so that there is no motion when the pulse frequency is 1.5 ms (ie, when Freq = 750). To center the servo-motors, perform the following steps: 1. Connect the motors to pins 12 and 13 as outlined earlier. (The motors should NOT be connected to the chassis). 2. Connect the carrier board to your PC, and set the power switch to 1. Then, enter the following PBASIC program: ' This code is used to center the servos... ' It should cause the servos to be motionless. DO PULSOUT 13, 750 'Left wheel - no motion PULSOUT 12, 750 motion LOOP 'Right wheel - no 3. Click the Run icon ( ) to burn the program to the BASIC Stamp chip. 4. Set the power switch to 2 and observe the motion of the control horns. If they are turning (even slightly), they must be re-centered by inserting a small Philips screwdriver into motor s access hole, then gently turning the screwdriver clockwise or counter-clockwise until there is no motion from the control horns.

3 5. When both motors have been centered, the motors can be mounted to the chassis and the wheels can be attached to the motors. Determining Time-Based Motion The short program to make the BOE-bot move forward at full speed is shown again below, along with the time required by the processor to execute each instruction: ' Move forward at full speed DO PULSOUT 13, 850 ' 1.7 ms PULSOUT 12, 650 ' 1.3 ms ' 20.0 ms LOOP ' 1.6 ms (overhead) Each iteration of the loop requires ( ) ms = 24.6 ms (= seconds). Therefore, for motion to last 1 second, the loop must execute (1 / ) = times. This can be more efficiently implemented using a count-controlled loop as follows: ' Move forward at full speed for 1 second X VAR Word FOR X = 1 TO 41 PULSOUT 13, 850 PULSOUT 12, 650 NEXT P a g e 3 In general, to make the BOE-bot move for n seconds, divide n by The resulting value becomes the max value in the FOR-NEXT loop. For example, to move the BOE-bot for 5 seconds,

4 max = 5 / = P a g e 4 Therefore, the loop would use FOR X = 1 TO 203 etc. Determining Distance-Based Motion It is more common to program the BOE-bot to move a specified distance, rather than for a specified amount of time. For example, suppose that you wish to move the Boe-Bot forward 6 feet. First, you will need to determine the speed of your BOE-bot. To calculate the BOE-bot s maximum forward speed, 1. Program the BOE-bot to run for 5 seconds at maximum speed using the following code: ' Move forward at full speed for 5 seconds X VAR Word FOR X = 1 TO 203 PULSOUT 13, 850 PULSOUT 12, 650 NEXT 2. Measure the distance traveled by the BOE-bot (in inches). 3. The speed of the BOE-bot is the distance traveled divided by the time (5 seconds). Therefore, if the BOE-bot traveled inches, the speed is / 6 = 6.65 inches/second. Now that you know the speed of the BOE-bot, distance-based motion can be calculated as follows: 1. Determine the distance (in inches) that you want the BOE-bot to travel. 2. Divide by the BOE-bot speed to determine the time. 3. Divide the time by to obtain the loop counter value. For example, suppose you want the BOE-bot to travel 6 feet:

5 1. Distance = 6 feet = 6 x 12 = 72 inches 2. Time = 72 / 6.65 = Loop counter = / = P a g e 5 Therefore, the loop would be FOR X = 1 TO 367 to move the BOE-bot forward 6 feet. This process must be repeated every time the BOE-bot must be moved a different distance and / or at a different speed.

Gripper Kit for the Boe-Bot Robot (#28202)

Gripper Kit for the Boe-Bot Robot (#28202) 599 Menlo Drive, Suite 100 Rocklin, California 95765, USA Office: (916) 624-8333 Fax: (916) 624-8003 General: info@parallax.com Technical: support@parallax.com Web Site: www.parallax.com Educational: www.stampsinclass.com

More information

ServoPAL (#28824): Servo Pulser and Timer

ServoPAL (#28824): Servo Pulser and Timer Web Site: www.parallax.com Forums: forums.parallax.com Sales: sales@parallax.com Technical: support@parallax.com Office: (916) 624-8333 Fax: (916) 624-8003 Sales: (888) 512-1024 Tech Support: (888) 997-8267

More information

Special Lecture. Basic Stamp 2 Programming. (Presented on popular demand)

Special Lecture. Basic Stamp 2 Programming. (Presented on popular demand) Special Lecture Basic Stamp 2 Programming (Presented on popular demand) Programming Environment Servo Motor: How It Work? The editor window consists of the main edit pane with an integrated explorer panel

More information

Servo Info and Centering

Servo Info and Centering Info and Centering A servo is a mechanical motorized device that can be instructed to move the output shaft attached to a servo wheel or arm to a specified position. Inside the servo box is a DC motor

More information

Chapter 4: Pulse Width Modulation

Chapter 4: Pulse Width Modulation Pulse Width Modulation Page 127 Chapter 4: Pulse Width Modulation PULSES FOR COMMUNICATION AND CONTROL Pulse width modulation is abbreviated PWM, and it refers to a technique of varying the amount of time

More information

PHD User Manual. Table of Contents

PHD User Manual. Table of Contents Table of Contents Overview...2 Install PHD Software...3 Connect PHD Equipment...5 Connect Sensor to the PHD Programmer...6 Run PHD Application...7 Verify Parameters and Program Sensor...10 View Output

More information

The Basics of Robot Mazes Teacher Notes

The Basics of Robot Mazes Teacher Notes The Basics of Robot Mazes Teacher Notes Why do robots solve Mazes? A maze is a simple environment with simple rules. Solving it is a task that beginners can do successfully while learning the essentials

More information

Servo Motors (SensorDAQ only) Evaluation copy. Vernier Digital Control Unit (DCU) LabQuest or LabPro power supply

Servo Motors (SensorDAQ only) Evaluation copy. Vernier Digital Control Unit (DCU) LabQuest or LabPro power supply Servo Motors (SensorDAQ only) Project 7 Servos are small, relatively inexpensive motors known for their ability to provide a large torque or turning force. They draw current proportional to the mechanical

More information

Watch Your Garden Grow

Watch Your Garden Grow Watch Your Garden Grow The Brinno GardenWatchCam is a low cost, light weight, weather resistant, battery operated time-lapse camera that captures the entire lifecycle of any garden season by taking photos

More information

MODULE BOUSSOLE ÉLECTRONIQUE CMPS03 Référence : 0660-3

MODULE BOUSSOLE ÉLECTRONIQUE CMPS03 Référence : 0660-3 MODULE BOUSSOLE ÉLECTRONIQUE CMPS03 Référence : 0660-3 CMPS03 Magnetic Compass. Voltage : 5v only required Current : 20mA Typ. Resolution : 0.1 Degree Accuracy : 3-4 degrees approx. after calibration Output

More information

Eric Mitchell April 2, 2012 Application Note: Control of a 180 Servo Motor with Arduino UNO Development Board

Eric Mitchell April 2, 2012 Application Note: Control of a 180 Servo Motor with Arduino UNO Development Board Eric Mitchell April 2, 2012 Application Note: Control of a 180 Servo Motor with Arduino UNO Development Board Abstract This application note is a tutorial of how to use an Arduino UNO microcontroller to

More information

EVAL-UFDC-1/UFDC-1M-16

EVAL-UFDC-1/UFDC-1M-16 Evaluation Board for Universal Frequency-to- Digital Converters UFDC-1 and UFDC-1M-16 EVAL-UFDC-1/UFDC-1M-16 FEATURES Full-Featured Evaluation Board for the Universal Frequency-to-Digital Converters UFDC-1

More information

DMX-K-DRV. Integrated Step Motor Driver + (Basic Controller) Manual

DMX-K-DRV. Integrated Step Motor Driver + (Basic Controller) Manual DMX-K-DRV Integrated Step Motor Driver + (Basic Controller) Manual DMX-K-DRV Manual page 1 rev 1.33 COPYRIGHT 2007 ARCUS, ALL RIGHTS RESERVED First edition, June 2007 ARCUS TECHNOLOGY copyrights this document.

More information

TORQUE AND FIRST-CLASS LEVERS

TORQUE AND FIRST-CLASS LEVERS TORQUE AND FIRST-CLASS LEVERS LAB MECH 28.COMP From Physics, Eugene Hecht and Physical Science with Computers, Vernier Software & Technology INTRODUCTION In Figure 1, note force F acting on a wrench along

More information

B0099 - Robo Claw 2 Channel 5A Motor Controller Data Sheet

B0099 - Robo Claw 2 Channel 5A Motor Controller Data Sheet B0099 - Robo Claw 2 Channel 5A Motor Controller Feature Overview: 2 Channel at 5A, Peak 7A Hobby RC Radio Compatible Serial Mode TTL Input Analog Mode 2 Channel Quadrature Decoding Thermal Protection Lithium

More information

Series LC6D/LC6C. To power supply PLC. LC6C dedicated teaching box P.971. Options P.973

Series LC6D/LC6C. To power supply PLC. LC6C dedicated teaching box P.971. Options P.973 Series LCD To power supply Electric Actuator Series LCC Stepper Motor Driver LCD Series LX Dedicated Stepper Motor Driver and Positioning Driver Series LCD/LCC PLC Positioning unit (Not incl. To be provided

More information

How To Turn On A Robot On A Computer On A Black Box On A Pc Or Macbook

How To Turn On A Robot On A Computer On A Black Box On A Pc Or Macbook Written Directions for EV3 Line Follow (Heaviside Algorithm) Description: Given a black line and the light sensor on the EV3 robot, we want to have the light sensor read values from the reflected light.

More information

RM410. Hardware Installation Guide. Quick Start Guide. Rack Mounting Kit. Version 1.00 Edition 1, 12/2012

RM410. Hardware Installation Guide. Quick Start Guide. Rack Mounting Kit. Version 1.00 Edition 1, 12/2012 RM410 Rack Mounting Kit Version 1.00 Edition 1, 12/2012 Quick Start Guide Hardware Installation Guide www.zyxel.com Copyright 2012 ZyXEL Communications Corporation IMPORTANT! READ CAREFULLY BEFORE USE.

More information

Dr Robot C# Advance Sputnik Demo Program

Dr Robot C# Advance Sputnik Demo Program 25 Valleywood Drive, Unit 20 Markham, Ontario, L3R 5L9, Canada Tel: (905) 943-9572 Fax: (905) 943-9197 Support@DrRobot.com Dr Robot C# Advance Sputnik Demo Program Version: 1.0.0 June 2008-1 - Copyright

More information

INTRODUCTION TO SERIAL ARM

INTRODUCTION TO SERIAL ARM INTRODUCTION TO SERIAL ARM A robot manipulator consists of links connected by joints. The links of the manipulator can be considered to form a kinematic chain. The business end of the kinematic chain of

More information

Arduino Lesson 16. Stepper Motors

Arduino Lesson 16. Stepper Motors Arduino Lesson 16. Stepper Motors Created by Simon Monk Last updated on 2013-11-22 07:45:14 AM EST Guide Contents Guide Contents Overview Parts Part Qty Breadboard Layout Arduino Code Stepper Motors Other

More information

FLORIDA INTERNATIONAL UNIVERSITY. Miami, Florida ADAPTIVE FAULT-TOLERANT TELEOPERATION. A dissertation submitted in partial fulfillment of the

FLORIDA INTERNATIONAL UNIVERSITY. Miami, Florida ADAPTIVE FAULT-TOLERANT TELEOPERATION. A dissertation submitted in partial fulfillment of the FLORIDA INTERNATIONAL UNIVERSITY Miami, Florida ADAPTIVE FAULT-TOLERANT TELEOPERATION A dissertation submitted in partial fulfillment of the requirements for the degree of DOCTOR OF PHILOSOPHY in MECHANICAL

More information

Digital To Analog Converter with Sine Wave Output

Digital To Analog Converter with Sine Wave Output Digital To Analog Converter with Sine Wave Output Overview In this Lab we will build a resistive ladder network and use the BASIC Stamp to generate the digital data for the D/A conversions. PBASIC will

More information

Handheld USB Digital Endoscope/Microscope

Handheld USB Digital Endoscope/Microscope Handheld USB Digital Endoscope/Microscope ehev1-usbplus User s Manual INTRODUCTION FUNCTIONS AND APPLICATIONS The USB Digital Endoscope/Microscope is a new electronic product for the micro observations.

More information

How To Program An Nxt Mindstorms On A Computer Or Tablet Computer

How To Program An Nxt Mindstorms On A Computer Or Tablet Computer NXT Generation Robotics Introductory Worksheets School of Computing University of Kent Copyright c 2010 University of Kent NXT Generation Robotics These worksheets are intended to provide an introduction

More information

Alpha 10 SERVICE MANUAL. Downloaded from www.cbradio.nl. MAX 10 Meter Amateur Transceiver AM/FM/CW/SSB 6 BAND PROGRAMMABLE MODEL AM-1000.

Alpha 10 SERVICE MANUAL. Downloaded from www.cbradio.nl. MAX 10 Meter Amateur Transceiver AM/FM/CW/SSB 6 BAND PROGRAMMABLE MODEL AM-1000. Alpha 10 MAX 10 Meter Amateur Transceiver MODEL AM-1000 AM/FM/CW/SSB 6 BAND PROGRAMMABLE SERVICE MANUAL Downloaded from www.cbradio.nl Cover Page LOUDER TALKBACK MOD Alpha 10 Max - Model AM-1000 4.7K Resistor

More information

A1000 Cheat Sheet (Open Loop Vector)

A1000 Cheat Sheet (Open Loop Vector) A1000 Cheat Sheet (Open Loop Vector) The following procedure is a supplement to supplied with this equipment and will guide the user in properly wiring the A1000 and. It will also show the user how to

More information

www.jameco.com 1-800-831-4242

www.jameco.com 1-800-831-4242 Distributed by: www.jameco.com 1-800-831-4242 The content and copyrights of the attached material are the property of its owner. Interactive Catalog Replaces Catalog Pages Honeywell Sensing and Control

More information

No Rainfall Data is Collected

No Rainfall Data is Collected No Rainfall Data is Collected There are a number of issues that can cause the system to not collect rainfall data, from clogged collectors to hardware failure or improper part replacement. The most common

More information

The quadrature signals and the index pulse are accessed through five 0.025 inch square pins located on 0.1 inch centers.

The quadrature signals and the index pulse are accessed through five 0.025 inch square pins located on 0.1 inch centers. Quick Assembly Two and Three Channel Optical Encoders Technical Data HEDM-550x/560x HEDS-550x/554x HEDS-560x/564x Features Two Channel Quadrature Output with Optional Index Pulse Quick and Easy Assembly

More information

Application Note AN-SERV-006

Application Note AN-SERV-006 THIS INFORMATION PROVIDED BY AUTOMATIONDIRECT.COM TECHNICAL SUPPORT IS SUPPLIED "AS IS", WITHOUT ANY GUARANTEE OF ANY KIND. These documents are provided by our technical support department to assist others.

More information

LT SERIES User s Manual

LT SERIES User s Manual LT SERIES User s Manual 1 - LT Series Operations Manual TABLE OF CONTENTS Specifications... 2 Introduction... 3 LT Series Models... 4 Optional Features... 4 Getting Started... 5 Installation... 5 Registration...

More information

Beadboard Wall Bookcase

Beadboard Wall Bookcase Beadboard Wall Bookcase Note: The maximum load for each shelf is 30lbs.This hanging system is meant for drywall/wood stud mounting only. If walls are concrete, brick or plaster, please consult your local

More information

Introduction to programming moway

Introduction to programming moway moway Contents Contents... 1 Introduction... 2 Flowcharts... 2 Movement blocks... 5 Conditionals... 6 Loops... 7 AND/OR Operators... 8 Setting flowcharts in order... 10 www.moway-robot.com 1 Introduction

More information

Build A Video Switcher. Reprinted with permission from Electronics Now Magazine September 1997 issue

Build A Video Switcher. Reprinted with permission from Electronics Now Magazine September 1997 issue Build A Video Switcher Reprinted with permission from Electronics Now Magazine September 1997 issue Copyright Gernsback Publications, Inc.,1997 BUILD A VIDEO SWITCHER FRANK MONTEGARI Watch several cameras

More information

NEXUS FX04 and FX04-1 Servo Motor Installation. Fireye DESCRIPTION SAFETY INFORMATION. FX04-1 Shown

NEXUS FX04 and FX04-1 Servo Motor Installation. Fireye DESCRIPTION SAFETY INFORMATION. FX04-1 Shown NEX-3004 AUGUST 4, 2015 Fireye NEXUS FX04 and FX04-1 Servo Motor Installation FX04-1 Shown DESCRIPTION This bulletin describes the installation and operating instructions for the FX04 and FX04-1, 3 lb.-ft./

More information

TL-Series Sub-Spindle Operator s Addendum

TL-Series Sub-Spindle Operator s Addendum 3 4 5 11 9 TL-Series Sub-Spindle Operator s Addendum 2 1 12 10 6 7 8 20HP VECTOR DUAL DRIVE LIVE TOOLING SUB SPINDLE 2008 Haas Automation, Inc. 96-0037 rev L 9/08 1 1. Introduction Specific M codes are

More information

TETRIX Getting Started Guide. Dispenser Building Guide. Step 1. Parts Needed. Tip. 1x Single-Servo Motor Bracket. 1x 96 mm Channel

TETRIX Getting Started Guide. Dispenser Building Guide. Step 1. Parts Needed. Tip. 1x Single-Servo Motor Bracket. 1x 96 mm Channel Step 1 1x 96 mm Channel 1x Single-Servo Motor Bracket 3x 1/2" SHCS 3x Kep Nut Tip Ensure that the teeth of the nut face the head of the screw. 173 Extensions Step 2 1x Servo Horn 1x Flat Bracket 3x 5/16"

More information

Model 2300DR Installation Guide

Model 2300DR Installation Guide Model 2300DR Installation Guide POWER ACCESS CORPORATION P.O. BOX 1050 170 MAIN STREET NEW HARTFORD, CT 06057 800-344-0088 WEBSITE: www.power-access.com EMAIL: salesinfo@power-access.com 1 STANDARD PARTS

More information

DIY QUAD. Build Manual V.A 2014

DIY QUAD. Build Manual V.A 2014 DIY QUAD Build Manual V.A 2014 1 Contents Thanks for purchasing a DIY Quad! These instructions will show you how to assemble a Quad using the Pixhawk autopilot system and ArduCopter/APM:Copter firmware.

More information

Convert your Losi Micro Vehicle from Brushed to Brushless power

Convert your Losi Micro Vehicle from Brushed to Brushless power Convert your Losi Micro Vehicle from Brushed to Brushless power Before we begin the conversion, let s make sure we have all the components you will need. Parts Required: A You will need a NEW servo to

More information

WIRELESS SENSOR BATTERY REPLACEMENT INSTRUCTIONS For Safewatch Residential and Small Business Control Panels

WIRELESS SENSOR BATTERY REPLACEMENT INSTRUCTIONS For Safewatch Residential and Small Business Control Panels www.adt.com WIRELESS SENSOR For Safewatch Residential and Small Business Control Panels Your ADT Safewatch QuickConnect, SafeWatch 3000 or Vista Series residential or small business security system may

More information

Three Channel Optical Incremental Encoder Modules Technical Data

Three Channel Optical Incremental Encoder Modules Technical Data Three Channel Optical Incremental Encoder Modules Technical Data HEDS-9040 HEDS-9140 Features Two Channel Quadrature Output with Index Pulse Resolution Up to 2000 CPR Counts Per Revolution Low Cost Easy

More information

Experiment #26: Stepper Motor Control

Experiment #26: Stepper Motor Control Experiment #26: Stepper Motor Control This experiment demonstrates the control of a small 12-volt unipolar stepper motor. Stepper motors are used as precision positioning devices in robotics and industrial

More information

Global Water Instrumentation, Inc.

Global Water Instrumentation, Inc. Global Water Instrumentation, Inc. 11390 Amalgam Way Gold River, CA 95670 T: 800-876-1172 Int l: (916) 638-3429, F: (916) 638-3270 6 Tipping Bucket: RG200 02/05/10 01-343 - 1 - Congratulations on your

More information

Bluetooth + USB 16 Servo Controller [RKI-1005 & RKI-1205]

Bluetooth + USB 16 Servo Controller [RKI-1005 & RKI-1205] Bluetooth + USB 16 Servo Controller [RKI-1005 & RKI-1205] Users Manual Robokits India info@robokits.co.in http://www.robokitsworld.com Page 1 Bluetooth + USB 16 Servo Controller is used to control up to

More information

TX 2C/RX 2C TOY CAR REMOTE CONTROLLER WITH FIVE FUNCTIONS

TX 2C/RX 2C TOY CAR REMOTE CONTROLLER WITH FIVE FUNCTIONS TOY CAR REMOTE CONTROLLER WITH FIVE FUNCTIONS DESCRIPTION The TX 2C/RX 2C is a pair of CMOS LSIs designed for remote controlled car applications. The TX 2C/RX 2C has five control keys for controlling the

More information

ASSEMBLY MANUAL SE-4S35

ASSEMBLY MANUAL SE-4S35 Automatic drive ASSEBLY ANUAL SE-4S35 AI-4S35 SG-4R35 Battery box otor unit Inter-4 hub CONTENTS WARNING 1 INSTALLATION CONITIONS Battery box Speed sensor Cable lengths and diameters otor unit Recommended

More information

Galil MotionCode Solution: Chip Encapsulation Material Fluid Dispensing Machine

Galil MotionCode Solution: Chip Encapsulation Material Fluid Dispensing Machine Galil MotionCode Solution: Chip Encapsulation Material Fluid Dispensing Machine Contents Page 1. MACHINE DESCRIPTION 1 2. REQUIREMTS 1 3. COMPONTS SELECTED 1 4. IMPLEMTATION 2 1. Machine Description Semiconductor

More information

User manual DinaSys DTC/DTS and DTC/DTZ

User manual DinaSys DTC/DTS and DTC/DTZ PiCommIT has developed the DinaSys DTC/DTS and DinaSys DTC/DTZ turntable controller for the Fleischmann / Marklin Turntables in scale H0, H0m, TT, N and Z. One of the most important starting point was

More information

Wiper Motor Marinco 2.5. Installation Instructions

Wiper Motor Marinco 2.5. Installation Instructions Wiper Motor Marinco 2.5 Installation Instructions Wiper Motor Marinco-2.5 The Marinco 2.5 Wiper Motor Offers the Following Features: Fully sealed base and housing which allows installation in outdoor wet

More information

Transmitter Interface Program

Transmitter Interface Program Transmitter Interface Program Operational Manual Version 3.0.4 1 Overview The transmitter interface software allows you to adjust configuration settings of your Max solid state transmitters. The following

More information

Epec 4W30 INSTRUCTIONS FOR USE. Seinäjoki Finland MEASURING EQUIPMENT NOTE! Read this manual and observe all safety instructions.

Epec 4W30 INSTRUCTIONS FOR USE. Seinäjoki Finland MEASURING EQUIPMENT NOTE! Read this manual and observe all safety instructions. INSTRUCTIONS FOR USE Epec 4W30 MEASURING EQUIPMENT NOTE! Read this manual and observe all safety instructions. Version 1.07 6.6.2002 Seinäjoki Finland Instructions for use Epec 4W30 2 TABLE OF CONTENTS

More information

Your Simple Guide to Battery. www.firstalertpro.com. Replacement. Customer Care: 1-800-852-0086. www.firstalertpro.

Your Simple Guide to Battery. www.firstalertpro.com. Replacement. Customer Care: 1-800-852-0086. www.firstalertpro. Previous Menu Your Simple Guide to Battery www.firstalertpro.com Replacement p e t s ts ep -by Customer Care: 1-800-852-0086 FA/1565 9/00 www.firstalertpro.com Table of Contents: page Introduction...............................

More information

ezsystem elab16m Project 1F: Alarm System (Full Project description)

ezsystem elab16m Project 1F: Alarm System (Full Project description) ezsystem elab16m Project 1F: Alarm System (Full Project description) ezsystem The aim of ezsystem is to enable Creativity and Innovation at an early age in a Problem Based Learning (PBL) approach. ezsystem

More information

CETAC Z-Drive Assembly

CETAC Z-Drive Assembly CETAC Z-Drive Assembly Replacement Guide Manual Part Number 610144 Rev 1, 2012 CETAC Technologies, Printed in USA Overview This guide describes the necessary steps to replace the Z-drive assembly on your

More information

TwinCAT NC Configuration

TwinCAT NC Configuration TwinCAT NC Configuration NC Tasks The NC-System (Numeric Control) has 2 tasks 1 is the SVB task and the SAF task. The SVB task is the setpoint generator and generates the velocity and position control

More information

etape Continuous Fluid Level Sensor Operating Instructions and Application Notes

etape Continuous Fluid Level Sensor Operating Instructions and Application Notes etape Continuous Fluid Level Sensor Operating Instructions and Application Notes TM 1 Table of Contents 1.0 Specifications... 3 2.0 Theory of Operation... 3 3.0 Connection and Installation... 4 4.0 Technical

More information

CONTENTS. What is ROBOTC? Section I: The Basics

CONTENTS. What is ROBOTC? Section I: The Basics BEGINNERS CONTENTS What is ROBOTC? Section I: The Basics Getting started Configuring Motors Write Drive Code Download a Program to the Cortex Write an Autonomous Section II: Using Sensors Sensor Setup

More information

TECHNICAL DATASHEET #TD1404AX PWM CONTROLLED SOLENOID DRIVER

TECHNICAL DATASHEET #TD1404AX PWM CONTROLLED SOLENOID DRIVER TECHNICAL DATASHEET #TD1404AX PWM CONTROLLED SOLENOID DRIVER (PWM Input, 1.2A or 2A Output, Metal Box or PCB) PCB Board - P/N: PWMC-PCB-2A, PWMC-PCB-1.2A Packaged Driver (metal box with 1.5 m (5 ft.) cable)

More information

PRS Y-axis EChain Installation

PRS Y-axis EChain Installation PRS Y-axis Energy Chain Installation Page -1- PRS Y-axis EChain Installation This document shows how to install the Energy chain (Echain) on the Y-axis on ShopBot PRS and PRS BT models. Note that the dust

More information

Lab Experiment 1: The LPC 2148 Education Board

Lab Experiment 1: The LPC 2148 Education Board Lab Experiment 1: The LPC 2148 Education Board 1 Introduction The aim of this course ECE 425L is to help you understand and utilize the functionalities of ARM7TDMI LPC2148 microcontroller. To do that,

More information

Presentation on CNC MACHINES. By: Hafiz Muhammad Rizwan

Presentation on CNC MACHINES. By: Hafiz Muhammad Rizwan Presentation on CNC MACHINES By: Hafiz Muhammad Rizwan WELCOME CNC Machines What is a CNC Machine? CNC : Computer Numerical Control Conventionally, an operator decides and adjusts various machines parameters

More information

ROBOTC Software Inspection Guide with Additional Help Documentation

ROBOTC Software Inspection Guide with Additional Help Documentation VEX ROBOTICS COMPETITION ROBOTC Software Inspection Guide with Additional Help Documentation VEX Cortex Software Inspection Steps: 1. Cortex Firmware Inspection using ROBOTC 2. Testing Cortex Robots using

More information

WISER 14. By the Robosses (Nila, Ishaa, Parvathi, Shivadharshne) National Public School, Bangalore, India And Vishnu Ram

WISER 14. By the Robosses (Nila, Ishaa, Parvathi, Shivadharshne) National Public School, Bangalore, India And Vishnu Ram WISER 14 By the Robosses (Nila, Ishaa, Parvathi, Shivadharshne) National Public School, Bangalore, India And Vishnu Ram Problem Statement What if a child could program a Robot? What if a programmer s imagination

More information

PRODUCTIVITY THROUGH INNOVATION 600 CONTROL DIRECT DRIVE TECHNICAL/OPERATION MANUAL

PRODUCTIVITY THROUGH INNOVATION 600 CONTROL DIRECT DRIVE TECHNICAL/OPERATION MANUAL Rev. D PRODUCTIVITY THROUGH INNOVATION 600 CONTROL DIRECT DRIVE TECHNICAL/OPERATION MANUAL 10 BORIGHT AVENUE, KENILWORTH NEW JERSEY 07033 TELEPHONE: 800-524-0273 FAX: 908-686-9317 TABLE OF CONTENTS Page

More information

Six-servo Robot Arm. DAGU Hi-Tech Electronic Co., LTD www.arexx.com.cn. Six-servo Robot Arm

Six-servo Robot Arm. DAGU Hi-Tech Electronic Co., LTD www.arexx.com.cn. Six-servo Robot Arm Six-servo Robot Arm 1 1, Introduction 1.1, Function Briefing Servo robot, as the name suggests, is the six servo motor-driven robot arm. Since the arm has a few joints, we can imagine, our human arm, in

More information

How To Control Gimbal

How To Control Gimbal Tarot 2-Axis Brushless Gimbal for Gopro User Manual V1.0 1. Introduction Tarot T-2D gimbal is designed for the Gopro Hero3, which is widely used in film, television productions, advertising aerial photography,

More information

6 inch A-Arm Lift Kit WARNING: 16-018/16-019. installation instructions. will fit CLUB CAR DS. included:

6 inch A-Arm Lift Kit WARNING: 16-018/16-019. installation instructions. will fit CLUB CAR DS. included: Revised May 205 6-08/6-09 6 inch A-Arm Lift Kit will fit CLUB CAR DS installation instructions included: Rear Lift Blocks Main Suspension Assembly Spindles A-Arms Rear Shock Mounting Plates U-Bolts WARNING:

More information

Optimizing Sortation Throughput in High Volume Distribution Centers

Optimizing Sortation Throughput in High Volume Distribution Centers Optimizing Sortation Throughput in High Volume Distribution Centers From the pre merge through sortation, the FlexSort integrated sortation sub systemrecently released by Dematic is redefining efficiency

More information

Rethinking the First Year Programming Course

Rethinking the First Year Programming Course Rethinking the First Year Programming Course William David Lubitz Assistant Professor, School of Engineering, University of Guelph wlubitz@uoguelph.ca Abstract The use of microcontrollers in beginning

More information

MDC151-024031 Series

MDC151-024031 Series MDC151-024031 Series 24V, 3A 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: (714)

More information

To Purchase This Item, Visit BMI Gaming www.bmigaming.com 1-800-746-2255 + 1-561-391-7200. Operation Manual

To Purchase This Item, Visit BMI Gaming www.bmigaming.com 1-800-746-2255 + 1-561-391-7200. Operation Manual Operation Manual 90MAN 01 B Copyright 2008 Patent Pending All Rights Reserved Table of Contents Game Play 3 Game Set up 4 Technical Description 5 Programming 6 10 Error Codes 9 Electronic Components 11

More information

QUEEN HOBBY FLIP32+ MANUAL

QUEEN HOBBY FLIP32+ MANUAL QUEEN HOBBY FLIP32+ MANUAL PURPOSE: This user manual covers topics needed to setup your Flip 32+ flight controller from ReadyToFlyQuads.com. All the pictures contained in this user manual, except for company

More information

SyRen 10 / SyRen 25 motor driver user s guide

SyRen 10 / SyRen 25 motor driver user s guide SyRen 10 / SyRen 25 motor driver user s guide July 2007 Input voltage: 6-24V nominal, 30V absolute max. Output Current: Up to 10A/25A continuous. Peak loads may be up to 15A/45A for a few seconds. These

More information

Solid Core and Split Core Adjustable Current Status Switches CSS-O, CSS-C; CSP-O, CSP-C

Solid Core and Split Core Adjustable Current Status Switches CSS-O, CSS-C; CSP-O, CSP-C Solid Core and Split Core Adjustable Current Status Switches CSS-O, CSS-C; CSP-O, CSP-C DESCRIPTION FEATURES PRODUCT DATA Very low operating trip points LED status indication Integral DIN rail mounting

More information

Installation Instructions

Installation Instructions 0.1.2....6.7..9 1 0.1.2....6.7..9 1 Installation Instructions Quick-Mount Visual Instructions for Mechanical Installation Quick-Mount Visual Instructions 1. Rotate the damper to its fail-safe position.

More information

Basic of servomotor control

Basic of servomotor control Basic of servomotor control Nippon Pulse Motor Co.,td. Table of contents I. Connection and operation differences in stepper motors and servomotors 1 Stepper motor 1 Servo motor 1 II. Advantages and disadvantages

More information

Speed-Mat Rectangle Cutter

Speed-Mat Rectangle Cutter Speed-Mat Rectangle Cutter 1 Honeycomb baseboard. 2 Left hold down. 14 3 Bottom hold down. 4 4 Left / right rule. 8 5 8 5 Left / right rule pointer. 1 6 Top / bottom rule. 7 Top / bottom rule pointer.

More information

BIODEX ADDENDUM BIODEX EMG/ANALOG SIGNAL ACCESS CONFIGURATION UTILITY SOFTWARE FOR SYSTEM 3 REVISION 2 AND SYSTEM 4 DYNAMOMETERS

BIODEX ADDENDUM BIODEX EMG/ANALOG SIGNAL ACCESS CONFIGURATION UTILITY SOFTWARE FOR SYSTEM 3 REVISION 2 AND SYSTEM 4 DYNAMOMETERS ADDENDUM BIODEX EMG/ANALOG SIGNAL ACCESS CONFIGURATION UTILITY SOFTWARE FOR SYSTEM 3 REVISION 2 AND SYSTEM 4 DYNAMOMETERS 830-000 835-000 840-000 850-000 BIODEX Biodex Medical Systems, Inc. 20 Ramsey Road,

More information

What Is an Electric Motor? How Does a Rotation Sensor Work?

What Is an Electric Motor? How Does a Rotation Sensor Work? What Is an Electric Motor? How Does a Rotation Sensor Work? Electric Motors Pre-Quiz 1. What is an electric motor? 2. Name two applications (things) you use every day that use electric motors. 3. How does

More information

Telebyte 209 Short Haul Modem

Telebyte 209 Short Haul Modem Telebyte 209 This document provides installation instructions for the Telebyte 209 (Keri Systems P/N SHM-232). This short haul modem can be used to assist in long-distance, direct, connections between

More information

Alignment Laser System.

Alignment Laser System. - O T 6 0 0 0 Alignment Laser System. The OT-6000. Multi -Target,Two Dimensional Alignment. Introducing the most powerful way to measure alignment at distances up to 300 feet. The OT-6000 Alignment Laser

More information

USER MANUAL. EZRUN Series Brushless Speed Controller EZRUN-150A-PRO

USER MANUAL. EZRUN Series Brushless Speed Controller EZRUN-150A-PRO USER MANUAL EZRUN Series Brushless Speed Controller EZRUN-150A-PRO User Manual of EZRUN-150A-PRO Brushless ESC HW-SM405ENG-20130809 Page - 1 - Declaration Thanks for purchasing our Electronic Speed Controller

More information

INSTALLATION INSTRUCTIONS

INSTALLATION INSTRUCTIONS INSTALLATION INSTRUCTIONS Accessory Application Publications No. AII23628 2003 PILOT Issue Date MAY 2002 PARTS LIST Security System Kit (sold separately): P/N 08E51-S84-100 2 Remote controls Attachment

More information

ECE 495 Project 3: Shocker Actuator Subsystem and Website Design. Group 1: One Awesome Engineering

ECE 495 Project 3: Shocker Actuator Subsystem and Website Design. Group 1: One Awesome Engineering ECE 495 Project 3: Shocker Actuator Subsystem and Website Design Group 1: One Awesome Engineering Luquita Edwards Evan Whetsell Sunny Verma Thomas Ryan Willis Long I. Executive Summary The main goal behind

More information

DRS-6/1 Doppler Radar Sensor

DRS-6/1 Doppler Radar Sensor DRS-6/1 Doppler Radar Sensor B+S Software und Messtechnik GmbH Lochhamer Schlag 17 D-82166 Graefelfing Germany October 1999 User's Manual DRS-6 SENSOR for speed measurements 1. DRS-6 Functional Description

More information

SMART MOVE. Gobo Rotators. Smart Move Smart Move DMX Smart Move Jr. Smart Move Jr. DMX Simple Single

SMART MOVE. Gobo Rotators. Smart Move Smart Move DMX Smart Move Jr. Smart Move Jr. DMX Simple Single SMART MOVE Gobo Rotators Smart Move Smart Move DMX Smart Move Jr. Smart Move Jr. DMX Simple Single Table 0f Contents Introduction 2 Product Description 2 Safety Information 3 Gobo Installation 4 Operating

More information

KRC-3AD Wireless Controller Instruction Manual. Translated By:

KRC-3AD Wireless Controller Instruction Manual. Translated By: KRC-3AD Wireless Controller Instruction Manual Translated By: About this Product This product utilizes both the KRC-3AD transmitter and KRR-1 receiver, and is only intended for use as a robot remote controller.

More information

WIRELESS SENSOR BATTERY REPLACEMENT INSTRUCTIONS For Safewatch Residential Control Panels

WIRELESS SENSOR BATTERY REPLACEMENT INSTRUCTIONS For Safewatch Residential Control Panels www.adt.ca WIRELESS SENSOR For Safewatch Residential Control Panels Your ADT Safewatch QuickConnect, SafeWatch 3000 or Vista Series residential security system may be installed with wireless sensors, such

More information

Global Motion Technology Inc Web www.motiontek.ca THCSA200. Capacitive sensor plasma & Oxy-fuel Torch Height Control

Global Motion Technology Inc Web www.motiontek.ca THCSA200. Capacitive sensor plasma & Oxy-fuel Torch Height Control THCSA200 Capacitive sensor plasma & Oxy-fuel Torch Height Control Features 1) Stand alone controller for THC & OHC completely independent from CNC computer software or CNC control system 2) closed-loop

More information

VLT AutomationDrive for Marine winch applications

VLT AutomationDrive for Marine winch applications MAKING MODERN LIVING POSSIBLE VLT APPLICATION NOTE VLT AutomationDrive for Marine winch applications This Application note is meant to be a guideline for using Danfoss VLT AutomationDrive in winch applications.

More information

Table 1 Comparison of DC, Uni-Polar and Bi-polar Stepper Motors

Table 1 Comparison of DC, Uni-Polar and Bi-polar Stepper Motors Electronics Exercise 3: Uni-Polar Stepper Motor Controller / Driver Mechatronics Instructional Laboratory Woodruff School of Mechanical Engineering Georgia Institute of Technology Lab Director: I. Charles

More information

JANUS INTERNATIONAL CORPORATION INSTALLATION INSTRUCTIONS Pantheon Mini Operator

JANUS INTERNATIONAL CORPORATION INSTALLATION INSTRUCTIONS Pantheon Mini Operator JANUS INTERNATIONAL CORPORATION INSTALLATION INSTRUCTIONS Pantheon Mini Operator The Janus Pantheon mini operator does not typically require the provision of any additional site requirements other than

More information

TECHNICAL DATASHEET #TD1000AX DUAL SOLENOID MULTIFUNCTION VALVE DRIVER With Joystick, Potentiometer and Control System Interface P/N: DSDA-SMB Series

TECHNICAL DATASHEET #TD1000AX DUAL SOLENOID MULTIFUNCTION VALVE DRIVER With Joystick, Potentiometer and Control System Interface P/N: DSDA-SMB Series TECHNICAL DATASHEET #TD1000AX DUAL SOLENOID MULTIFUNCTION VALVE DRIVER With Joystick, Potentiometer and Control System Interface P/N: DSDA-SMB Series Description: The Dual Solenoid Multifunction Valve

More information

Access Control Using Smartcard And Passcode

Access Control Using Smartcard And Passcode IOSR Journal of Electrical and Electronics Engineering (IOSR-JEEE) e-issn: 2278-1676 Volume 4, Issue 5 (Jan. - Feb. 2013), PP 29-34 Access Control Using Smartcard And Passcode Omorogiuwa Eseosa 1., Uhunmwangho

More information

HIGH PERFORMANCE MOBILE SURGICAL C-ARM KMC-950

HIGH PERFORMANCE MOBILE SURGICAL C-ARM KMC-950 HIGH PERFORMANCE MOBILE SURGICAL C-ARM 1K x 1k CCD Digital Camera System H.F. GENERATOR & ROTATING ANODE TUBE WITH DIGITAL WORKSTATION DESCRIPTION: Mobile Surgical C-arm systems are integrated with a triple

More information

Automated Container Handling in Port Terminals

Automated Container Handling in Port Terminals Automated Container Handling in Port Terminals Overview. Shipping containers revolutionized the movement of goods, driving change and efficiency throughout the global supply chain. The next revolution

More information

Elektra. Elektra. training. manual. manual. Coffee Grinder. Coffee Grinder SHARING THE PASSION

Elektra. Elektra. training. manual. manual. Coffee Grinder. Coffee Grinder SHARING THE PASSION Elektra manual Coffee Grinder I T A L I A N E S P R E S S O C O F F E E M A C H I N E S AD: Holbein & Partners - Edition January 2006 Elektra training SHARING THE PASSION manual I T A L I A N E S P R E

More information