SP ROBOTIC WORKS PVT. LTD. Viper 35A User Manual

Size: px
Start display at page:

Download "SP ROBOTIC WORKS PVT. LTD. Viper 35A User Manual"

Transcription

1 . SP ROBOTIC WORKS PVT. LTD. Viper 35A User Manual

2 Contents 1. Description Product Specification Features Operating Modes Input Modes R/C Transmitter Mode Microcontroller Mode Motor Control Modes Mixed Mode Independent Mode Combination of Input and Motor Control modes Servo Commands for Microcontroller Mode Mixed Mode Initialization commands Movement commands Independent Mode Initialization command Movement commands

3 1. Description VIPER Series Motor Driver takes up the pride to be India's first indigenously developed speed control enabled motor driver. It is the most efficient and easy to use dual motor drivers available on the market. Rather than the other relay based controller boards, Viper has sophisticated electronics such as MOSFETS to make the control smoother, enable speed control and also generates the necessary combination of signals for you (i.e. pushing the front throttle on your remote is enough to make your robot move forward). It also gives a full control over your robot by providing 9 functions- forward, reverse, spot left, spot right, forward right, forward left, reverse left, reverse right and stop with the additional option of Speed Control. It also has 4 operating modes which can serve specific needs (Refer Section-2 for details). VIPER is one of its kind to have reverse polarity protection which most of the motor speed controllers doesn't have. By this feature the endurance and durability of the VIPER is maintained. 2

4 1.1 Product Specification Model: Specifications: Operating modes: Size: VIPER 35A 35A Continuous, 50A Peak per channel, 7-30V Nominal, 30V Absolute maximum 2 Input Modes, 2 Motor Control Modes 90 x 65 x 42.5 mm (LBH) 1.2 Features Operating Channels 2 Operating Modes - 4 Reverse Polarity Protection Overload Protection Skid steer/differential drive Full functional motor driver (9 Functions) Speed Control enabled Integration with 2.4 GHz RF Modules. 2. Operating Modes Viper 2x35 offers the following operating modes to suit specific needs, 1. Input Modes a. R/C Transmitter Mode b. Microcontroller Mode 2. Motor Control Modes a. Mixed Mode b. Independent Mode Both the modes work in combination with each other to provide 4 operating modes in total. 2.1 Input Modes Viper 2x35 can be controlled either by using R/C Transmitter-Receiver or a Microcontroller (eg. Arduino). R/C uses (servo) pulses to send commands to the Viper 2x35. A Microcontroller can be programmed to generate pulses (Servo Library of Arduino) which is then fed to the signal pins of Viper 2x R/C Transmitter Mode Switch state: DIP SWITCH 1 - ON Setting the DIP switch 1 to the ON position selects the R/C Transmitter mode. This mode is used when R/C Transmitter and receiver are going to be used to control the Viper 2x35. R/C Receiver actually puts out signals as servo pulses which will be given as input to Viper. Using servo connector cables, R/C Receiver is connected Viper s DRV and STR signal pins. 3

5 This mode involves the process of auto-calibration that Viper does when a Transmitter is switched on. Viper will automatically calibrate the neutral state (position) of the Transmitter s joysticks. The Start-up process of Viper 2x35 involving calibration in this mode will be as follows: a. After powering on the Viper Board, S1 LED (BLUE) goes high. b. Once the transmitter is turned on/already turned on, S2 LED (GREEN) goes high and S1 LED starts blinking rapidly after calibrating for a second. c. Kindly start using the joystick only after S1 LED s blinking starts (after being calibrated). If the transmitter is turned off or receiver is unplugged (or any loss of signal), the motor driving will be stopped and S2 LED (GREEN) will get turned off Microcontroller Mode Switch state: DIP SWITCH 1 - OFF Setting the DIP switch 1 to the OFF position selects the Microcontroller mode. Using this mode, commands can be given to Viper using a microcontroller (eg. Arduino). The Servo library that comes packaged with Arduino software can be used for this purpose. Values used in servo commands are prefixed. So there will no calibration process unlike R/C Transmitter mode. Refer to section for a sample list of commands used to control the Viper from Arduino 2.2 Motor Control Modes Viper 2x35 offers to control motors independently with separate signal for each motor (terminal) or both the signals combined to control all the motors Mixed Mode Switch state: DIP SWITCH 2 - ON Setting DIP switch 2 to the ON position selects the mixed mode. The signal going to DRV pin will control both the motors for forward and backward movement. The signal going to STR pin will control both the motors for left and right movement. Both the signals should be available for the motors to run. If one signal is lost/disconnected, then the motor driving will stop Independent Mode Switch state: DIP SWITCH 2 - OFF Setting DIP switch 2 to the OFF position selects the independent mode. Unlike mixed mode, the signals are not dependent and will not control both the motors. Here the signal going to DRV pin will control the motor connected to M1 output terminals. The signal going to STR pin will control the motor connected to M2 output terminals. Since the signals are independent, Viper can be made to run with any one signal in this mode. 4

6 2.3 Combination of Input and Motor Control modes RC INDEPENDENT MODE RC MIXED MODE MICROCONTROLLER INDEPENDENT MODE MICROCONTROLLER MIXED MODE 3. Servo Commands for Microcontroller Mode In order to control the Viper using inputs from an Arduino, the Servo library that comes with Arduino software can be used. 3.1 Mixed Mode Initialization commands Use Servo library s attach method: servo.attach(pin, min, max); servo1.attach(pin1, 1000, 2000); servo2.attach(pin2, 1000, 2000); Movement commands Use servo library s writemicroseconds or write method to control the motors. servo.writemicroseconds(microseconds) (or) servo.write(degree) NOTE: writemicroseconds method gives more accuracy towards speed control than the write method. 5

7 a. Forward movement: driveservo.writemicroseconds(microseconds) (or) driveservo.write(degree) where - microseconds ranges from , degree ranges from steerservo.writemicroseconds(1500) (or) steerservo.write(90) b. Reverse movement: driveservo.writemicroseconds(microseconds) (or) driveservo.write(degree) where - microseconds ranges from , degree ranges from steerservo.writemicroseconds(1500) (or) steerservo.write(90) c. Spot Left movement: driveservo.writemicroseconds(1500) (or) driveservo.write(90) steerservo.writemicroseconds(microseconds) (or) steerservo.write(degree) where - microseconds ranges from , degree ranges from d. Spot Right movement: driveservo.writemicroseconds(1500) (or) driveservo.write(90) steerservo.writemicroseconds(microseconds) (or) steerservo.write(degree) where - microseconds ranges from , degree ranges from e. Stop: driveservo.writemicroseconds(1500) (or) driveservo.write(90) steerservo.writemicroseconds(1500) (or) steerservo.write(90) f. Other movements: Combination of Forward movement s driveservo command and Spot Left (or) Spot Right movement s steerservo command will achieve Forward Left or Forward Right movement respectively. Similarly the combination of Backward movement s driveservo command and Spot Left (or) Spot Right movement s steerservo command will achieve Backward Left or Backward Right movement respectively. On a further note, 6

8 3.2 Independent Mode Initialization command In this mode, the commands are common for both the signal outputs. As mentioned before, Use Servo's 3-argument attach method: servo.attach(pin, min, max); Movement commands To control motor connected to M1 terminals, write servo pulses to DRV pin. Similarly to control motor connected to M2 terminals, write servo pulses to STR pin. Using the write command: servo.write(degree) (or) servo.writemicroseconds(microseconds) NOTE: writemicroseconds method gives more accuracy towards speed control than the write method. Forward Movement: microseconds ranges from , degree ranges from Backward Movement: microseconds ranges from , degree ranges from Stop: microseconds 1500, degree - 90 Using forward command for one servo (signal), and backward command for another servo (signal) will achieve left and right movement. 7

Viper 2x35 Operating Modes

Viper 2x35 Operating Modes SP ROBOTIC WORKS PVT. LTD. Viper 2x35 Operating Modes Contents 1. Operating Modes... 2 1.1 Input Modes... 2 1.1.1 R/C Transmitter Mode... 2 1.1.2 Microcontroller Mode... 3 1.2 Motor Control Modes... 3

More information

High Current DC Motor Driver Manual

High Current DC Motor Driver Manual High Current DC Motor Driver Manual 1.0 INTRODUCTION AND OVERVIEW This driver is one of the latest smart series motor drivers designed to drive medium to high power brushed DC motor with current capacity

More information

Enhanced SmartDrive40 MDS40B

Enhanced SmartDrive40 MDS40B Enhanced SmartDrive40 MDS40B User's Manual Rev 1.0 December 2015 Created by Cytron Technologies Sdn. Bhd. All Rights Reserved 1 INDEX 1. Introduction 3 2. Packing List 4 3. Product Specifications 5 4.

More information

Figure 1. DMC 60 components.

Figure 1. DMC 60 components. 1300 Henley Court Pullman, WA 99163 509.334.6306 www.digilentinc.com DMC 60 Reference Manual Revised November 15, 2016 This manual applies to the DMC 60 rev. A Overview The DMC 60 is an electronic speed

More information

RB-Rop-08 Scorpion XXL Dual 20A 6V to 28V R/C DC Motor Driver

RB-Rop-08 Scorpion XXL Dual 20A 6V to 28V R/C DC Motor Driver RB-Rop-08 Scorpion XXL Dual 20A 6V to 28V R/C DC Motor Driver The Robot Power Scorpion XXL is a flexible high-performance two-channel motor controller for small to medium mobile robots such as firefighting

More information

12V Victor 888 User Manual

12V Victor 888 User Manual The Victor speed controllers are specifically engineered for robotic applications. The high current capacity, low voltage drop, and peak surge capacity make the Victor ideal for drive systems while its

More information

RCDC2 Radio Controlled Device Controller- 2 channel

RCDC2 Radio Controlled Device Controller- 2 channel RCDC2 Radio Controlled Device Controller- 2 channel Power input can be anywhere from +9VDC to +24VDC and is applied as shown above. Compact- only 3.3 square The 2 relays are SPDT (single pole, double throw:

More information

100A PWM Input Pulse (High Time) 1 2 ms Nominal ms max PWM Input Rate (Period) ms PWM Output Chop Rate (Switching Frequency)

100A PWM Input Pulse (High Time) 1 2 ms Nominal ms max PWM Input Rate (Period) ms PWM Output Chop Rate (Switching Frequency) The Victor SP is a speed controller designed through collaboration between VEX Robotics (VEX.com) & Cross the Road Electronics () that allows for fine control and high performance of brushed DC motors

More information

CAUTION DO NOT ATTEMPT TO ALTER THE TUNING OF THE RADIO EQUIPMENT. DO NOT USE RADIO CONTROL EQUIPMENT IN THUNDERSTORMS.

CAUTION DO NOT ATTEMPT TO ALTER THE TUNING OF THE RADIO EQUIPMENT. DO NOT USE RADIO CONTROL EQUIPMENT IN THUNDERSTORMS. P.O Box 578 Casino, NSW, 2470 Australia Phone: International ++614 2902 9083 Australia (04) 2902 9083 Website: http://rcs-rc.com E mail: Info@rcs-rc.com TX-5vL Digital Proportional R/C TABLE OF CONTENTS

More information

Directions for Wiring and Using The GEARS II (2) Channel Combination Controllers

Directions for Wiring and Using The GEARS II (2) Channel Combination Controllers Directions for Wiring and Using The GEARS II (2) Channel Combination Controllers PWM Input Signal Cable for the Valve Controller Plugs into the RC Receiver or Microprocessor Signal line. White = PWM Input

More information

Index. n A. n B. n C. Base biasing transistor driver circuit, BCD-to-Decode IC, 44 46

Index. n A. n B. n C. Base biasing transistor driver circuit, BCD-to-Decode IC, 44 46 Index n A Android Droid X smartphone, 165 Arduino-based LCD controller with an improved event trigger, 182 with auto-adjust contrast control, 181 block diagram, 189, 190 circuit diagram, 187, 189 delay()

More information

Built-in soft-start feature. Up-Slope and Down-Slope. Power-Up safe start feature. Motor will only start if pulse of 1.5ms is detected.

Built-in soft-start feature. Up-Slope and Down-Slope. Power-Up safe start feature. Motor will only start if pulse of 1.5ms is detected. Thank You for purchasing our TRI-Mode programmable DC Motor Controller. Our DC Motor Controller is the most flexible controller you will find. It is user-programmable and covers most applications. This

More information

Hobby Servo Tutorial. Introduction. Sparkfun: https://learn.sparkfun.com/tutorials/hobby-servo-tutorial

Hobby Servo Tutorial. Introduction. Sparkfun: https://learn.sparkfun.com/tutorials/hobby-servo-tutorial Hobby Servo Tutorial Sparkfun: https://learn.sparkfun.com/tutorials/hobby-servo-tutorial Introduction Servo motors are an easy way to add motion to your electronics projects. Originally used in remotecontrolled

More information

Manual for Hyperion Receivers 1. Binding Step 1. Power up the receiver in bind mode

Manual for Hyperion Receivers 1. Binding Step 1. Power up the receiver in bind mode - This is not a Horizon Hobbies DSM2, DSMX product, and is not manufactured or endorsed by Horizon Hobbies LLC. DSM2, and DSMX are registered trademarks of Horizon Hobbies LLC. Manual for Hyperion Receivers

More information

Mechatronics Engineering and Automation Faculty of Engineering, Ain Shams University MCT-151, Spring 2015 Lab-4: Electric Actuators

Mechatronics Engineering and Automation Faculty of Engineering, Ain Shams University MCT-151, Spring 2015 Lab-4: Electric Actuators Mechatronics Engineering and Automation Faculty of Engineering, Ain Shams University MCT-151, Spring 2015 Lab-4: Electric Actuators Ahmed Okasha, Assistant Lecturer okasha1st@gmail.com Objective Have a

More information

The Torxis Linear Servo meets the following environmental conditions:

The Torxis Linear Servo meets the following environmental conditions: Page: 1 1. PRODUCT DESCRIPTION The Torxis Linear Servo is the second generation of linear servos provided by GearWurx. This product features internal position sensing, and closed loop position control.

More information

EQ-ROBO Programming : bomb Remover Robot

EQ-ROBO Programming : bomb Remover Robot EQ-ROBO Programming : bomb Remover Robot Program begin Input port setting Output port setting LOOP starting point (Repeat the command) Condition 1 Key of remote controller : LEFT UP Robot go forwards after

More information

Activity 2 Wave the Flag. Student Guide. Activity Overview. Robotics Jargon. Materials Needed. Building the Robot

Activity 2 Wave the Flag. Student Guide. Activity Overview. Robotics Jargon. Materials Needed. Building the Robot Activity Overview In this activity, you will learn about pivot points and integrate a servo motor into your robot to create a pivot point capable of waving a flag. After building the robot, you will conduct

More information

Activity 2 Wave the Flag. Student Guide. Activity Overview. Robotics Jargon. Materials Needed. Building the Robot

Activity 2 Wave the Flag. Student Guide. Activity Overview. Robotics Jargon. Materials Needed. Building the Robot Activity Overview In this activity, you will learn about pivot points and integrate a servo motor into your robot to create a pivot point capable of waving a flag. After building the robot, you will conduct

More information

Adafruit 16-Channel PWM/Servo HAT & Bonnet for Raspberry Pi

Adafruit 16-Channel PWM/Servo HAT & Bonnet for Raspberry Pi Adafruit 16-Channel PWM/Servo HAT & Bonnet for Raspberry Pi Created by lady ada Last updated on 2018-03-21 09:56:10 PM UTC Guide Contents Guide Contents Overview Powering Servos Powering Servos / PWM OR

More information

DMC-8 (SKU#ROB )

DMC-8 (SKU#ROB ) DMC-8 (SKU#ROB-01-007) Selectable serial or parallel interface Use with Microcontroller or PC Controls 2 DC motors For 5 24 Volt Motors 8 Amps per channel Windows software included Fuse protection Dual

More information

Turtle Shell Racer High Power Edition Michael Curry DistractedArchitect.com Electronics Supplement

Turtle Shell Racer High Power Edition Michael Curry DistractedArchitect.com Electronics Supplement Turtle Shell Racer High Power Edition Michael Curry DistractedArchitect.com Electronics Supplement 1 Parts 2 Channel RC Remote and Receiver Micro Servo Battery Connector DC Motor (with Printed Gearbox)

More information

Scorpion HX User Manual R/C Version

Scorpion HX User Manual R/C Version Table of Contents Features...3 Connections...5 Setup...5 Setup Complete...10 Status Codes...11 Mounting your Scorpion...12 Notes on PCM radios...12 Service and Support...13 Limitations and Warrantees...13

More information

B RoboClaw 2 Channel 30A Motor Controller Data Sheet

B RoboClaw 2 Channel 30A Motor Controller Data Sheet B0098 - RoboClaw 2 Channel 30A Motor Controller (c) 2010 BasicMicro. All Rights Reserved. Feature Overview: 2 Channel at 30Amp, Peak 60Amp Battery Elimination Circuit (BEC) Switching Mode BEC Hobby RC

More information

REMOVE REAR OF TX-2S TO INSERT THE 9 VOLT BATTERY.

REMOVE REAR OF TX-2S TO INSERT THE 9 VOLT BATTERY. P.O Box 578 Casino, NSW, 2470 Australia Phone: International ++614 2902 9083 Australia (04) 2902 9083 Website: http://rcs-rc.com E mail: Info@rcs-rc.com TX-2s Digital Proportional R/C TABLE OF CONTENTS

More information

ENGR 1110: Introduction to Engineering Lab 7 Pulse Width Modulation (PWM)

ENGR 1110: Introduction to Engineering Lab 7 Pulse Width Modulation (PWM) ENGR 1110: Introduction to Engineering Lab 7 Pulse Width Modulation (PWM) Supplies Needed Motor control board, Transmitter (with good batteries), Receiver Equipment Used Oscilloscope, Function Generator,

More information

Remote Control Lawn Mower

Remote Control Lawn Mower Remote Control Lawn Mower ECE 791 Senior Project Progress report Team members: -Hajrush Aliu -Neeraj Gill Faculty Advisor: -Professor Wayne Smith Courses Involved: ECE 541, ECE 543, ECE 649, ECE 651, ECE

More information

REPLACEMENT OF RELAY BOX IN BH-60 BEML DUMP TRUCK USING MICROCONTROLLER AND SOLID STATE POWER DEVICES

REPLACEMENT OF RELAY BOX IN BH-60 BEML DUMP TRUCK USING MICROCONTROLLER AND SOLID STATE POWER DEVICES REPLACEMENT OF RELAY BOX IN BH-60 BEML DUMP TRUCK USING MICROCONTROLLER AND SOLID STATE POWER DEVICES PROJECT REFERENCE NO.: 40S_BE_1782 COLLEGE : NIE INSTITUTE OF TECHNOLOGY, BENGALURU BRANCH : DEPARTMENT

More information

Project Name: SpyBot

Project Name: SpyBot EEL 4924 Electrical Engineering Design (Senior Design) Final Report April 23, 2013 Project Name: SpyBot Team Members: Name: Josh Kurland Name: Parker Karaus Email: joshkrlnd@gmail.com Email: pbkaraus@ufl.edu

More information

BASIC-Tiger Application Note No. 059 Rev Motor control with H bridges. Gunther Zielosko. 1. Introduction

BASIC-Tiger Application Note No. 059 Rev Motor control with H bridges. Gunther Zielosko. 1. Introduction Motor control with H bridges Gunther Zielosko 1. Introduction Controlling rather small DC motors using micro controllers as e.g. BASIC-Tiger are one of the more common applications of those useful helpers.

More information

STPDRV-1 Stepper Motor Driver Data Sheet (R1.0) BFF Design Ltd

STPDRV-1 Stepper Motor Driver Data Sheet (R1.0) BFF Design Ltd STPDRV-1 Stepper Motor Driver Data Sheet (R1.0) BFF Design Ltd 1. Introduction The BFF STPDRV-1 card is a bi-polar stepper motor driver. It is designed to drive the BFF Motorised Trim Wheel or other user-designed

More information

Adafruit 16-Channel PWM/Servo HAT for Raspberry Pi

Adafruit 16-Channel PWM/Servo HAT for Raspberry Pi Adafruit 16-Channel PWM/Servo HAT for Raspberry Pi Created by lady ada Last updated on 2017-05-19 08:55:07 PM UTC Guide Contents Guide Contents Overview Powering Servos Powering Servos / PWM OR Current

More information

Rx62H Linear 5 Channel Brick

Rx62H Linear 5 Channel Brick Rx62H Linear 5 Channel Brick (DSM 2 Compatible) DOWN Elevator Servo MicronWings Website Features Product: DSM2 receiver with 2 onboard linear servos Channels: 5 Size: 23.0 x 24.0 x 8.0mm Weight: 3.48grams

More information

MTC-2 highlight features: ACU highlight features: Contents. MTC-2 and ACU User Manual V5.1

MTC-2 highlight features: ACU highlight features: Contents. MTC-2 and ACU User Manual V5.1 MTC-2 can work alone as a twin motor ECS (electronic speed controller) for RC tanks. When the ACU (auxiliary control unit) is connected, it can also control turret rotation, gun elevation, gun firing,

More information

BFS / BFSM SERIES Installation & Maintenance Manual

BFS / BFSM SERIES Installation & Maintenance Manual Introduction: The BFS / BFSM series electric actuators have battery backup modules for fail safe operation. The BFS series is for two position control and the BFSM series is for proportional control, both

More information

MD03-50Volt 20Amp H Bridge Motor Drive

MD03-50Volt 20Amp H Bridge Motor Drive MD03-50Volt 20Amp H Bridge Motor Drive Overview The MD03 is a medium power motor driver, designed to supply power beyond that of any of the low power single chip H-Bridges that exist. Main features are

More information

Castle Creations, INC.

Castle Creations, INC. Castle Link Live Communication Protocol Castle Creations, INC. 6-Feb-2012 Version 2.0 Subject to change at any time without notice or warning. Castle Link Live Communication Protocol - Page 1 1) Standard

More information

Operation and Installation Manual

Operation and Installation Manual The Next Generation of Operation and Installation Manual G-Scale Graphics 5860 Crooked Stick Dr. Windsor, CO 80550 970-581-3567 GScaleGraphics@comcast.net www.gscalegraphics.net Revision C: H: Updated

More information

of PWM is explained here. Consider a simple circuit as shown in figure below. DC Motor Speed Control using 555 Timer IC. The DC MOTOR SPEED.

of PWM is explained here. Consider a simple circuit as shown in figure below. DC Motor Speed Control using 555 Timer IC. The DC MOTOR SPEED. How To Make A Dc Motor Speed Controller Circuit Using Two 555 Ics DC Motor PWM Speed Control Using 555 IC. The 555 is ubiquitous and can be used as simple PWM speed control. Circuit diagram: DC Motor PWM

More information

Figure 1. Digilent DC Motor

Figure 1. Digilent DC Motor Laboratory 9 - Usage of DC- and servo-motors The current laboratory describes the usage of DC and servomotors 1. DC motors Figure 1. Digilent DC Motor Classical DC motors are converting electrical energy

More information

Introduction to the EXPANSION HUB

Introduction to the EXPANSION HUB Introduction to the EXPANSION HUB REV ROBOTICS - EXPANSION HUB revrobotics.com ANOTHER CONTROLLER CHOICE MODERN ROBOTICS REV ROBOTICS The Expansion hub does not replace the Modern Robotics System. It is

More information

Servos A Brief Guide

Servos A Brief Guide Servos A Brief Guide David Sanderson, MEng (hons) DIS, CEng MIMarEST Technical Director at Kitronik Radio Control (RC) Servos are a simple way to provide electronically controlled movement for many projects.

More information

EEE3410 Microcontroller Applications Department of Electrical Engineering Lecture 11 Motor Control

EEE3410 Microcontroller Applications Department of Electrical Engineering Lecture 11 Motor Control EEE34 Microcontroller Applications Department of Electrical Engineering Lecture Motor Control Week 3 EEE34 Microcontroller Applications In this Lecture. Interface 85 with the following output Devices Optoisolator

More information

Dimensions: Specifications:

Dimensions: Specifications: Rover 5 Rover 5 is a new breed of tracked robot chassis designed specifically for students and hobbyist. Unlike conventional tracked chassis s the clearance can be adjusted by rotating the gearboxes in

More information

Soundmodule TBS Micro V2.0 Page:1 RC - Soundunit TBS Micro V2.0 PWM2 PWM1 A9 A8 A7 A6 NC A1 A2

Soundmodule TBS Micro V2.0 Page:1 RC - Soundunit TBS Micro V2.0 PWM2 PWM1 A9 A8 A7 A6 NC A1 A2 Soundmodule TBS Micro V2.0 Page:1 RC - Soundunit TBS Micro V2.0 RC Connection Speaker Prop 1 Prop 2 Prop 3 PWM2 PWM1 A9 A8 A7 A6 A5 A4 A3 Solderpads Speaker Ground Prop1 Prop2 Prop3 +5V Polarity: - + Sinal

More information

MTC-2 highlight features: ACU highlight features: Contents. MTC-2 and ACU User Manual V4.0

MTC-2 highlight features: ACU highlight features: Contents. MTC-2 and ACU User Manual V4.0 MTC-2 can work alone as a twin motor ECS (electronic speed controller) for RC tanks. When the ACU (auxiliary control unit) is connected, it can also control turret rotation, gun elevation, gun firing,

More information

DC motor control using arduino

DC motor control using arduino DC motor control using arduino 1) Introduction: First we need to differentiate between DC motor and DC generator and where we can use it in this experiment. What is the main different between the DC-motor,

More information

A servo is an electric motor that takes in a pulse width modulated signal that controls direction and speed. A servo has three leads:

A servo is an electric motor that takes in a pulse width modulated signal that controls direction and speed. A servo has three leads: Project 4: Arduino Servos Part 1 Description: A servo is an electric motor that takes in a pulse width modulated signal that controls direction and speed. A servo has three leads: a. Red: Current b. Black:

More information

A Model Based Approach for Human Recognition and Reception by Robot

A Model Based Approach for Human Recognition and Reception by Robot 16 MHz ARDUINO A Model Based Approach for Human Recognition and Reception by Robot Prof. R. Sunitha Department Of ECE, N.R.I Institute Of Technology, J.N.T University, Kakinada, India. V. Sai Krishna,

More information

New Eagle PWM to Analog Converter

New Eagle PWM to Analog Converter New Eagle P.O. Box #272 Ann Arbor, MI 48105-2603 Phone 734.395.2112 Fax 928.395.2114 M E C H A T R O N I C C O N T R O L S O L U T I O N S New Eagle PWM to Analog Converter Revision 0.2 PWM-AN-024-1403

More information

100UF CAPACITOR POTENTIOMETER SERVO MOTOR MOTOR ARM. MALE HEADER PIN (3 pins) INGREDIENTS

100UF CAPACITOR POTENTIOMETER SERVO MOTOR MOTOR ARM. MALE HEADER PIN (3 pins) INGREDIENTS 05 POTENTIOMETER SERVO MOTOR MOTOR ARM 100UF CAPACITOR MALE HEADER PIN (3 pins) INGREDIENTS 63 MOOD CUE USE A SERVO MOTOR TO MAKE A MECHANICAL GAUGE TO POINT OUT WHAT SORT OF MOOD YOU RE IN THAT DAY Discover:

More information

HOW TO UNDERSTAND THE WORKINGS OF RADIO CONTROL

HOW TO UNDERSTAND THE WORKINGS OF RADIO CONTROL HOW TO UNDERSTAND THE WORKINGS OF RADIO CONTROL By: Roger Carignan This article resulted from a workshop hosted by a member of our R/C model club, the 495 th R/C Squadron. I was asked to make a presentation

More information

B Robo Claw 2 Channel 25A Motor Controller Data Sheet

B Robo Claw 2 Channel 25A Motor Controller Data Sheet B0098 - Robo Claw 2 Channel 25A Motor Controller Feature Overview: 2 Channel at 25A, Peak 30A Hobby RC Radio Compatible Serial Mode TTL Input Analog Mode 2 Channel Quadrature Decoding Thermal Protection

More information

Welcome to Electrical Design and Wiring for Indiana F.I.R.S.T Teams

Welcome to Electrical Design and Wiring for Indiana F.I.R.S.T Teams Welcome to Electrical Design and Wiring for Indiana F.I.R.S.T Teams Presenters Chris Noble - Team 829 Mentor Cornerstone Controls Engineer Darrell Noble - Team 71 Mentor Bemcor Engineer Combined 28 years

More information

ARDUINO BASED DC MOTOR SPEED CONTROL

ARDUINO BASED DC MOTOR SPEED CONTROL ARDUINO BASED DC MOTOR SPEED CONTROL Student of Electrical Engineering Department 1.Hirdesh Kr. Saini 2.Shahid Firoz 3.Ashutosh Pandey Abstract The Uno is a microcontroller board based on the ATmega328P.

More information

RC Interface Controller Board Assembly and Operation

RC Interface Controller Board Assembly and Operation RC Interface Controller Board Assembly and Operation Revision Date: January 17, 2006 SUPERDROIDROBOTS.COM RC Interface Controller Board Accurate content is of the utmost importance to the authors of this

More information

Adafruit 16-channel PWM/Servo Shield

Adafruit 16-channel PWM/Servo Shield Adafruit 16-channel PWM/Servo Shield Created by lady ada Last updated on 2018-08-22 03:36:11 PM UTC Guide Contents Guide Contents Overview Assembly Shield Connections Pins Used Connecting other I2C devices

More information

MegaPoints Servo Controller

MegaPoints Servo Controller MegaPoints Servo Controller Covers Servo Controller boards 1.8 onwards A flexible and modular device for controlling model railway points and semaphore signals using inexpensive R/C servos and relays.

More information

DLVP A OPERATOR S MANUAL

DLVP A OPERATOR S MANUAL DLVP-50-300-3000A OPERATOR S MANUAL DYNALOAD DIVISION 36 NEWBURGH RD. HACKETTSTOWN, NJ 07840 PHONE (908) 850-5088 FAX (908) 908-0679 TABLE OF CONTENTS INTRODUCTION...3 SPECIFICATIONS...5 MODE SELECTOR

More information

ARKBIRD-Tiny Product Features:

ARKBIRD-Tiny Product Features: ARKBIRD-Tiny Product Features: ARKBIRD System is a high-accuracy autopilot designed for fixed-wing, which has capability of auto-balancing to ease the manipulation while flying. 1. Function all in one

More information

Digital Multifunctional RC-Soundmodule TBS Mini V2

Digital Multifunctional RC-Soundmodule TBS Mini V2 Digital Multifunctional RC-Soundmodule TBS Mini V2 Important notes about changes on the NEW TBS Mini V2!!! MUST BE READ!!! New connector: External amplifier Volume Unchanged connectors (same as old TBS

More information

1 Day Robot Building (MC40A + Aluminum Base) for Edubot 2.0

1 Day Robot Building (MC40A + Aluminum Base) for Edubot 2.0 1 Day Robot Building (MC40A + Aluminum Base) for Edubot 2.0 Have you ever thought of making a mobile robot in 1 day? Now you have the chance with MC40A Mini Mobile Robot Controller + some accessories.

More information

INSTRUCTIONS. 3DR Plane CONTENTS. Thank you for purchasing a 3DR Plane!

INSTRUCTIONS. 3DR Plane CONTENTS. Thank you for purchasing a 3DR Plane! DR Plane INSTRUCTIONS Thank you for purchasing a DR Plane! CONTENTS 1 1 Fuselage Right wing Left wing Horizontal stabilizer Vertical stabilizer Carbon fiber bar 1 1 1 7 8 10 11 1 Audio/video (AV) cable

More information

X10+ Channel Expander (V2)

X10+ Channel Expander (V2) Xtreme Power Systems X10+ Channel Expander (V2) Installation And Usage Manual Supports: XtremeLink RFU and Nano receivers Futaba SBUS and SBUS2 receivers Spektrum DSM2/DSMX satellite receivers JR DMSS

More information

Understanding RC Servos and DC Motors

Understanding RC Servos and DC Motors Understanding RC Servos and DC Motors What You ll Learn How an RC servo and DC motor operate Understand the electrical and mechanical details How to interpret datasheet specifications and properly apply

More information

Space Research expeditions and open space work. Education & Research Teaching and laboratory facilities. Medical Assistance for people

Space Research expeditions and open space work. Education & Research Teaching and laboratory facilities. Medical Assistance for people Space Research expeditions and open space work Education & Research Teaching and laboratory facilities. Medical Assistance for people Safety Life saving activity, guarding Military Use to execute missions

More information

PS2-SMC-06 Servo Motor Controller Interface

PS2-SMC-06 Servo Motor Controller Interface PS2-SMC-06 Servo Motor Controller Interface PS2-SMC-06 Full Board Version PS2 (Playstation 2 Controller/ Dual Shock 2) Servo Motor Controller handles 6 servos. Connect 1 to 6 Servos to Servo Ports and

More information

Analysis and Construction of a Robot controlled by a Universal Remote Control

Analysis and Construction of a Robot controlled by a Universal Remote Control International Journal of Engineering Research and Development e-issn: 2278-067X, p-issn: 2278-800X, www.ijerd.com Volume 10, Issue 11 (November 2014), PP.22-28 Analysis and Construction of a Robot controlled

More information

MTC-2 highlight features: ACU for Flakpanzer Gepard highlight features: Contents. MTC-2 and ACU User Manual V4.2 (Flakpanzer Gepard Version)

MTC-2 highlight features: ACU for Flakpanzer Gepard highlight features: Contents. MTC-2 and ACU User Manual V4.2 (Flakpanzer Gepard Version) This manual is written for the ACU for Flakpanzer Gepard. There are some modifications on usage of servo and LED ports. Please also notice that GSU (gun stabilize unit) is not supported. MTC-2 highlight

More information

User Manual March 2008

User Manual March 2008 User Manual March 008 Motor Silent Gliss 900, 90, 90, 903 Motor Silent Gliss 9030, 903, 903, 9033 Usermanual Motors 90x_903x Page Copyright April 007 by Silent Gliss International Ltd., 3073 Gümligen/Berne

More information

How to setup and use the Multi Remote Switch (MRS)

How to setup and use the Multi Remote Switch (MRS) SimonEdwards2014 RC Model Supplies How to setup and use the Multi Remote Switch (MRS) The Multi Remote Switch is essential for all R/C models, car/boat/heli or plane. The MRS system can control up to 7

More information

UNISONIC TECHNOLOGIES CO., LTD UU6032B Advance LINEAR INTEGRATED CIRCUIT

UNISONIC TECHNOLOGIES CO., LTD UU6032B Advance LINEAR INTEGRATED CIRCUIT UNISONIC TECHNOLOGIES CO., LTD AUTOMOTIVE TOGGLE SWITCH IC DESCRIPTION The bipolar integrated circuit is designed as a toggle switch. The device, which has a defined power-on status, can be used to control

More information

MD10B Enhanced 10A Motor Driver

MD10B Enhanced 10A Motor Driver MD10B Enhanced 10A Motor Driver User s Manual V1.0 August 2008 Information contained in this publication regarding device applications and the like is intended through suggestion only and may be superseded

More information

Robtics. We strongly believe that if you own a remote observatory or you do advanced imaging you are gonna love this device!

Robtics. We strongly believe that if you own a remote observatory or you do advanced imaging you are gonna love this device! Overigen > Stroomvoorziening > Model: PEG_UPB Artikel: Fabrikant: Pegasus Astro f you are tired of carrying multiple power packs and dealing with a mess of power and data cables, our Ultimate Powerbox,

More information

MEMS Accelerometer sensor controlled robot with wireless video camera mounted on it

MEMS Accelerometer sensor controlled robot with wireless video camera mounted on it MEMS Accelerometer sensor controlled robot with wireless video camera mounted on it The main aim of this project is video coverage at required places with the help of digital camera and high power LED.

More information

3. WHEN TO TURN ON. Always turn the Tx on first, unless binding. Always turn Rx off first.

3. WHEN TO TURN ON. Always turn the Tx on first, unless binding. Always turn Rx off first. - 2 - IF PICS ARE NOT CLEAR ENOUGH, PLEASE DOWNLOAD AND PRINT OUT https://www.rcs-rc.com/store/pdf/instructions/receivers/rx102-1(ab)lr.pdf 2. FEATURES. Purpose: Rx102-1(AB)LR Live Steam & Low OFF Batt

More information

Gesture Controlled Car

Gesture Controlled Car Gesture Controlled Car Chirag Gupta Department of ECE ITM University Nitin Garg Department of ECE ITM University ABSTRACT Gesture Controlled Car is a robot which can be controlled by simple human gestures.

More information

UART2PPM. User s Guide. Version 2.04 dated 02/20/16. Gregor Schlechtriem

UART2PPM. User s Guide. Version 2.04 dated 02/20/16. Gregor Schlechtriem UART2PPM User s Guide Version 2.04 dated 02/20/16 Gregor Schlechtriem www.pikoder.com UART2PPM User s Guide Content Overview 3 PCC PiKoder Control Center 5 Getting started... 5 Real-time Control... 7 minissc

More information

No Gain Tuning. Hunting. Closed Loop System

No Gain Tuning. Hunting. Closed Loop System 2 No Gain Tuning Conventional servo systems, to ensure machine performance, smoothness, positional error and low servo noise, require the adjustment of its servo s gains as an initial crucial step. Even

More information

INSTANT ROBOT SHIELD (AXE408)

INSTANT ROBOT SHIELD (AXE408) INSTANT ROBOT SHIELD (AXE408) 1.0 Introduction Thank you for purchasing this Instant Robot shield. This datasheet is designed to give a brief introduction to how the shield is assembled, used and configured.

More information

Adafruit 16-Channel Servo Driver with Arduino

Adafruit 16-Channel Servo Driver with Arduino Adafruit 16-Channel Servo Driver with Arduino Created by Bill Earl Last updated on 2017-11-26 09:41:23 PM UTC Guide Contents Guide Contents Overview Assembly Install the Servo Headers Solder all pins Add

More information

The plan... CSE 6324 From control to actuators Michael Jenkin Office Hours: Sherman 1028 Wed 3-4. From the bottom up...

The plan... CSE 6324 From control to actuators Michael Jenkin Office Hours: Sherman 1028 Wed 3-4. From the bottom up... The plan... CSE 6324 From control to actuators Michael Jenkin jenkin@cse.yorku.ca Office Hours: Sherman 1028 Wed 3-4 Lectures this week No class next week Start building the week after (i) Need to sort

More information

Blue Point Engineering Inc.

Blue Point Engineering Inc. Engineering Inc. ireless Radio Control of Puppets Setup Overview RF Control C Pointing the ay to Solutions! Hardware Setup Overview Page 1 Servo No.1 Servo No.2 Control Signal Line RX8ch1,2 Servo Board

More information

Control of Electrical Lights and Fans using TV Remote

Control of Electrical Lights and Fans using TV Remote EE 389 Electronic Design Lab -II, Project Report, EE Dept., IIT Bombay, October 2005 Control of Electrical Lights and Fans using TV Remote Group No. D10 Liji Jayaprakash (02d07021)

More information

EXPERIMENT 6: Advanced I/O Programming

EXPERIMENT 6: Advanced I/O Programming EXPERIMENT 6: Advanced I/O Programming Objectives: To familiarize students with DC Motor control and Stepper Motor Interfacing. To utilize MikroC and MPLAB for Input Output Interfacing and motor control.

More information

the Multifunctional DCC decoder for servo s and accessory s with Arduino for everybody (with a DCC central station)

the Multifunctional DCC decoder for servo s and accessory s with Arduino for everybody (with a DCC central station) Multifunctional ARduino dcc DECoder the Multifunctional DCC decoder for servo s and accessory s with Arduino for everybody (with a DCC central station) Author: Nico Teering September 2017 Mardec version:

More information

Timpdon Marine. Club 500 Radio Controlled Motor Controller Model MRCS5. MRCS5 Electrical Specification. Solid State Radio Controlled Motor Controller

Timpdon Marine. Club 500 Radio Controlled Motor Controller Model MRCS5. MRCS5 Electrical Specification. Solid State Radio Controlled Motor Controller Page 16 of 16 MRCS5 Electrical Specification Maximum Supply Voltage Maximum Continuous Current 2 A Maximum Stall Current [Short Term Only] 12 V Nominal A Control Circuit Supply 4.8 V to 6. V, Nominal [Derived

More information

OPERATINGINSTRUCTIONS for SIXTEENCHANNEL SERVO MOTOR CONTROLLER and SIXTEENCHANNEL JOYSTICK AMPLIFIER February 27, 1999

OPERATINGINSTRUCTIONS for SIXTEENCHANNEL SERVO MOTOR CONTROLLER and SIXTEENCHANNEL JOYSTICK AMPLIFIER February 27, 1999 OPERATINGINSTRUCTIONS for SIXTEENCHANNEL SERVO MOTOR CONTROLLER and SIXTEENCHANNEL JOYSTICK AMPLIFIER February 27, 1999 The 16 Channel Servo Motor Controller is used to adapt a 0 to 10 volt analog control

More information

ON Ergonomic Pistol Grip Design 2 Channel AM Proportional System 2 Channel Servo Reversing Switches 2 LED Battery Status Indicator Nicad Battery Charging Jack MADE IN PHILIPPINES NOR REV NOR REV ON I.

More information

Operator s Manual Ride-On Remote Controlled Car

Operator s Manual Ride-On Remote Controlled Car Operator s Manual Ride-On Remote Controlled Car By Kevin Franzino Kelly O Neill Jeffrey Peterson Project for Client #14: Samantha Gillard Client Contacts: Geoff and Jenny Gillard: Newton, MA 617 447-0783;

More information

FIRST Robotics Control System

FIRST Robotics Control System 2018/2019 FIRST Robotics Control System Team 236 1 (click on a component to go to its slide) 2 The Robot Powered solely by 12V battery RoboRIO- is the computer on the robot Controlled by Java code on the

More information

Quick Start Guide V1.1

Quick Start Guide V1.1 X-Pilot autopilot for bait boats Quick Start Guide V1.1 www.toslon.com 1. What s on the display & Keypad instruction 6 7 8 9 10 13 14 15 16 5 4 12.1V 10 1.1 m/s 2 86.5m 10 4 deg 11 275.2m 1.2m/s 18 deg

More information

Adafruit 16-channel PWM/Servo Shield

Adafruit 16-channel PWM/Servo Shield Adafruit 16-channel PWM/Servo Shield Created by lady ada Last updated on 2017-06-29 07:25:45 PM UTC Guide Contents Guide Contents Overview Assembly Shield Connections Pins Used Connecting other I2C devices

More information

Model FLSC-C3-XX. DC Powered Microprocessor Controlled Transmitter

Model FLSC-C3-XX. DC Powered Microprocessor Controlled Transmitter Model FLSC-C3-XX DC Powered Microprocessor Controlled Transmitter CONTENTS. Introduction----------------------------------------------------------------- 2 2. Specifications ---------------------------------------------------------------

More information

Automobile Prototype Servo Control

Automobile Prototype Servo Control IJIRST International Journal for Innovative Research in Science & Technology Volume 2 Issue 10 March 2016 ISSN (online): 2349-6010 Automobile Prototype Servo Control Mr. Linford William Fernandes Don Bosco

More information

Arduino Control of Tetrix Prizm Robotics. Motors and Servos Introduction to Robotics and Engineering Marist School

Arduino Control of Tetrix Prizm Robotics. Motors and Servos Introduction to Robotics and Engineering Marist School Arduino Control of Tetrix Prizm Robotics Motors and Servos Introduction to Robotics and Engineering Marist School Motor or Servo? Motor Faster revolution but less Power Tetrix 12 Volt DC motors have a

More information

Intro to Engineering II for ECE: Lab 3 Controlling Servo Motors Erin Webster and Dr. Jay Weitzen, c 2012 All rights reserved

Intro to Engineering II for ECE: Lab 3 Controlling Servo Motors Erin Webster and Dr. Jay Weitzen, c 2012 All rights reserved Lab 3: Controlling Servo Motors Laboratory Objectives: 1) To program the basic stamp to control the motion of a servo 2) To observe the control waveforms as the motion of the servo changes 3) To learn

More information

The RSW11 replaces the original RadioSwitch, Model RSW1.

The RSW11 replaces the original RadioSwitch, Model RSW1. Timpdon Electronics RadioSwitch Model RSW11 RadioSwitch Model RSW11 is a microprocessor controlled digital single pole on / off switch for the control of switched auxiliaries on a radio controlled model

More information

Adafruit 16-Channel Servo Driver with Arduino

Adafruit 16-Channel Servo Driver with Arduino Adafruit 16-Channel Servo Driver with Arduino Created by Bill Earl Last updated on 2015-09-29 06:19:37 PM EDT Guide Contents Guide Contents Overview Assembly Install the Servo Headers Solder all pins Add

More information

PROFET Operating Modes (Normal, Inverse, Reverse)

PROFET Operating Modes (Normal, Inverse, Reverse) Automotive Power PROFET Operating Modes (Normal, Inverse, Reverse) Application Note V1.0 2011-07-13 Automotive Power PROFET Operating Modes Revision History: V1.0, 2011-07-13 Previous Version: none Page

More information