Preliminary Design Report. Project Title: Human-Powered Sub. Team Name: Depth Perception

Size: px
Start display at page:

Download "Preliminary Design Report. Project Title: Human-Powered Sub. Team Name: Depth Perception"

Transcription

1 EEL 4924 Electrical Engineering Design (Senior Design) Preliminary Design Report 19 April 2011 Project Title: Team Name: Depth Perception Team Members: Name: Jared Korn Name: Alex Lizardo Abstract Our project consists of collaborating with the UF Human Powered Sub team to design, test, and build the electronics systems for the sub. The system supports control of six servo motors and a linear actuator as well as an LCD display for important real time information. Four servo motors are used for elevators at the front and back of the sub and on each side, two control the rudder. Two pressure sensors detect pitch and depth and the system compensates accordingly while a webcam with image processing hardware will track a string of lights on the floor of the pool to detect yaw. Manual electric control of the entire system via a joystick is used as an override in case of failure of software. The entire system is housed in a waterproof box and powered by a single three cell LiPo battery.

2 Page 2/12 Table of Contents Title/cover/abstract...Page 1 Table of Contents...Page 2 List of Tables and Figures...Page 2 Introduction...Page 3 Objectives...Page 3 Concept/Technology...Page 4 Hardware Block Diagram...Page 5 Software Control Flowcharts...Pages 6-9 Microprocessor Software...Page 10 Timeline... Page 10 Bill of Materials... Page 11 Appendix A... Page 12 List of Tables and Figures Figure 1...Page 3 Figure 2...Page 4 Figure 3...Page 4 Figure 4...Page 4 Figure 5...Page 5 Figure 6...Page 6 Figure 7...Page 7 Figure 8...Page 8 Figure 9...Page 9 Figure 10...Page 10 Figure 11...Page 12

3 Page 3/12 Introduction The UF team consists of several Mechanical Engineering students who are designing and building a submarine for a competition. Currently the entire project is funded through sponsorship so any electronics should be available to us at no cost. The sub is powered only by human power but contains several electrical components that were designed to control the sub. The project involves digital and analog hardware design including amplification and filtering as well as power supply design. All the software is written on one microcontroller unit. Lastly, the entire electronic system must be waterproof while still being connected to external sensors and motors. Figure 1 - Previous Human-Powered sub team and sub Objectives Automatic Pitch control - Two pressure sensors located in the front and back ends of the sub will sense the pitch of the sub and send this information to a microcontroller which will control 2 servo motors to correct the pitch. Manual Yaw control - A joystick will be accessible to the driver to manually turn the sub left and right. The joystick will send signals to the microcontroller to adjust servos attached to fins to turn left or right. Display - An LCD will provide important information to the driver. The information will include current depth, RPMs, and battery life. Other information may be displayed if a need arises. Power system - A 3 cell LiPo battery is available as the power source for the electronics. Regulation of voltage levels was designed to adequately provide appropriate power to all motors and electronics. Thrust efficiency - A reed switch connected to the microcontroller detects rotation of the driveshaft and software determines the RPMs. This data is used to adjust the linear actuator that changes the pitch of the prop. Manual Pitch Control - A joystick is used as a back-up for manual control of the sub s pitch. Two analog input indicating left/right and up/down are fed to a microcontroller which sends the necessary adjustments to the servo motors. Automatic Yaw control - A webcam attached to an on board computer with imaging processing software will view a string of lights on the bottom of the pool and send this information to a microcontroller. The microcontroller will then adjust servo motors to turn left or right depending on the location of the lights.

4 Page 4/12 Concept/Technology The LCD used is the same one from the Microprocessor and Junior Design courses. It was on hand, easily programmed and small enough to fit in the limited space the electronics are housed in. The main flight control Servos are high-torque, digital, water resistant servos from Traxxas. They each provide 125 oz-in torque and are controlled by PWM. Although there are six total servos, only three signals are needed since two servos will receive the same single (opposite sides of the sub.) This was helpful as the microcontroller can output up to three PWM signals. The linear actuator is an extremely powerful linear servo with position feedback and internal limit switches to stop the motor when it is fully extended or compressed. It is controlled applying 12V DC to the power pins to move in one Figure 2 - Traxxas 2075 Digital Servo direction and -12V DC to move in the Figure 3 - HDLS V Linear Actuator reverse. We used high power relays to digitally control the movement of the linear actuator. One relay controls power being supplied to the actuator while another reverses the leads to switch direction. Each relay is controlled by a digital output from the microcontroller. The two pressure transducers output a voltage on the order of 150 mv that varies linearly with depth. Both outputs are amplified using an LT1630 op amp and sent to the Analog to digital converter of the microcontroller. The joystick is a relic from the previous control systems for the sub. Each axis has its own analog output that is fed directly to the microcontroller s Analog to Digital pins to determine the direction to shift the servos. The software written to handle this accounts for a certain threshold so as to not misinterpret a small movement on one axis when attempting to actually move another axis. We used an MSP430 microcontroller as the main processor for our system. It is responsible for updating the LCD and controlling all the motors and linear actuator. It will also monitor all the sensors and perform the simple calculations for the LCD display values. Figure 4 - Analog joystick used for manual control The other processor is an embedded computer. We chose the Gumstix for its small form factor and features. A powered USB Hub provides the necessary power to the webcam and serves as an interface between the camera and the Gumstix embedded computer. Ideally we wanted the Gumstix to be able to do the image processing for automatic yaw control but at this time it is not fully functioning. The webcam to use for the image processing is a Microsoft HD-5000 lifecam. We chose it because it is compatible with the Gumstix and others have had success using it to do imaging processing for other

5 Page 5/12 projects. It does not receive its power through a direct USB connection with the Gumstix computer, but rather through an externally powered USB hub. The Gumstix USB ports are unable to source enough current to operate the camera. The entire power supply system is a simple network of voltage regulators that supply rails of DC voltage for each component. The different rails are 12V, 6V, 5V, and 3.3V. The Gumstix has its own 5V rail to prevent hardware failure in case of minor fluctuation in the power. One three cell LiPo battery fully charged puts out around 15 Volts DC which is stepped down by five voltage regulators to provide the appropriate voltages. Hardware Block Diagram Figure 5 - Main Hardware Block diagram

6 Page 6/12 Software Control Flowcharts Figure 6 - Main Control software flowchart

7 Page 7/12 Figure 7 - Pitch control software flowchart

8 Page 8/12 Figure 8 - RPMs and Linear actuator software control flowchart

9 Page 9/12 Figure 9 - Yaw control software flowchart

10 Page 10/12 Microprocessor Software There are five Analog inputs to the microcontroller as we as two digital ones from the Gumstix. Four of the analog inputs are from the two pressure sensors and each axis of the joystick. The last input is a scaled down supply voltage to determine battery life remaining. There are also two digital inputs from pushbuttons used to change from an initial state and to switch to manual control. The microcontroller outputs several digital pins for the LCD, a couple digital pins for controlling the linear actuator relays, and 3 PWM signals for the two elevators and rudder. Timeline Figure 10 - Gantt chart

11 Page 11/12 Bill of Materials (1) GUM3503T Embedded processor & expansion board - $ (1) MSP430F2272 Processor - $2.20 (6) Stratax 2075 Servos - $ (1) BC2004A 4-Line LCD Display - $19.95 (1) ksk-1a Reed Switch - $1.50 (1) lifecam hd camera - $29.95 (2) ND 5Vvoltage regulators - $6.80 (1) 7812 voltage regulator - $0.65 (1) NJM7806FA 6V voltage regulator - $0.75 (1) ND 3.3V voltage regulator - $3.40 (1) HDLS V Linear Actuator - $80.00 (2) DS2E-S-DC5V RELAYS - $9.36 TOTAL - $617.56

12 Page 12/12 Appendix A - Schematic of entire system Figure 11 - Schematic of Entire system

Preliminary Design Report. Project Title: Human-Powered Sub. Team Name: Depth Perception

Preliminary Design Report. Project Title: Human-Powered Sub. Team Name: Depth Perception EEL 4924 Electrical Engineering Design (Senior Design) Preliminary Design Report 31 January 2011 Project Title: Team Name: Depth Perception Team Members: Name: Jared Korn Email: ex.malfunction@gmail.com

More information

GUIDE TO SP STARTER SHIELD (V3.0)

GUIDE TO SP STARTER SHIELD (V3.0) OVERVIEW: The SP Starter shield provides a complete learning platform for beginners and newbies. The board is equipped with loads of sensors and components like relays, user button, LED, IR Remote and

More information

ASV 2008 Son of a Boatname. Group 1 Michael Podel Gor Beglaryan Kiran Bernard Christina Sylvia

ASV 2008 Son of a Boatname. Group 1 Michael Podel Gor Beglaryan Kiran Bernard Christina Sylvia ASV 2008 Son of a Boatname Group 1 Michael Podel Gor Beglaryan Kiran Bernard Christina Sylvia ASV 2009 SS Boatname ASV 2010 Boatname the Brave Autonomous Surface Vehicle Robotics Club at UCF AUVSI and

More information

EEL 4924 Electrical Engineering Design (Senior Design) Final Report April 25th 2010

EEL 4924 Electrical Engineering Design (Senior Design) Final Report April 25th 2010 Nguyen Nguyen Situation See Spot Track 1 EEL 4924 Electrical Engineering Design (Senior Design) Final Report April 25th 2010 Project Title: See Spot Track Team Name: Nguyen Nguyen Situation Team Members:

More information

QUANSER Flight Control Systems Design. 2DOF Helicopter 3DOF Helicopter 3DOF Hover 3DOF Gyroscope. Quanser Education Solutions Powered by

QUANSER Flight Control Systems Design. 2DOF Helicopter 3DOF Helicopter 3DOF Hover 3DOF Gyroscope. Quanser Education Solutions Powered by QUANSER Flight Control Systems Design 2DOF Helicopter 3DOF Helicopter 3DOF Hover 3DOF Gyroscope Quanser Education Solutions Powered by 2 DOF Helicopter What does it represent? Classic helicopter with main

More information

Members: Mark Kampfer, Richard Robinson

Members: Mark Kampfer, Richard Robinson DumbleDoor RFID security system Members: Mark Kampfer, Richard Robinson Final Design Report EEL 4924 Electrical Engineering Design 2 Contents List of Figures... 2 Abstract... 2 Introduction... 3 Project

More information

EEL4914 Senior Final Design Report Beatbox Sensei

EEL4914 Senior Final Design Report Beatbox Sensei Team Mic Jones EEL4914 Senior Final Design Report Beatbox Sensei Spring 2008 Submitted April 21, 2008 The project is inspired by a hip hop art called beatboxing. Beatboxing primarily involves the art of

More information

THIS IS THE CURRENT FF USER GUIDE AS OF PLEASE DO NOT USE ANY PREVIOUSLY DATED VERSIONS

THIS IS THE CURRENT FF USER GUIDE AS OF PLEASE DO NOT USE ANY PREVIOUSLY DATED VERSIONS THIS IS THE CURRENT FF USER GUIDE AS OF 05-04-2012 PLEASE DO NOT USE ANY PREVIOUSLY DATED VERSIONS INTRODUCTION: I compiled this guide from information posted on RCGroups.COM and from GoodLuckBuy.COM where

More information

ECE 477 Design Review Team 8 Spring Mike Cianciarulo, Josh Wildey, Robert Toepfer, Trent Nelson

ECE 477 Design Review Team 8 Spring Mike Cianciarulo, Josh Wildey, Robert Toepfer, Trent Nelson ECE 477 Design Review Team 8 Spring 2008 Mike Cianciarulo, Josh Wildey, Robert Toepfer, Trent Nelson Outline Project overview Project-specific success criteria Block diagram Component selection rationale

More information

THIS IS THE CURRENT FF USER GUIDE AS OF PLEASE DO NOT USE ANY PREVIOUSLY DATED VERSIONS

THIS IS THE CURRENT FF USER GUIDE AS OF PLEASE DO NOT USE ANY PREVIOUSLY DATED VERSIONS THIS IS THE CURRENT FF USER GUIDE AS OF 02-26-2012 PLEASE DO NOT USE ANY PREVIOUSLY DATED VERSIONS INTRODUCTION: I compiled this guide from information posted on RCGroups.COM and from GoodLuckBuy.COM where

More information

AeroCore 2 for DragonBoard

AeroCore 2 for DragonBoard AeroCore 2 for DragonBoard TM Gumstix, Inc. shall have no liability of any kind, express or implied, arising out of the use of the Information in this document, including direct, indirect, special or consequential

More information

Ceilbot vision and mapping system

Ceilbot vision and mapping system Ceilbot vision and mapping system Provide depth and camera data from the robot's environment Keep a map of the environment based on the received data Keep track of the robot's location on the map Recognize

More information

This is an inspection failure, not meeting the requirement of >10k Ohm between either PD battery post and chassis.

This is an inspection failure, not meeting the requirement of >10k Ohm between either PD battery post and chassis. Troubleshooting This is a document put together by CSA Laura Rhodes that contains a lot of information about troubleshooting steps for a lot of common control system problems encountered at events. No

More information

D115 The Fast Optimal Servo Amplifier For Brush, Brushless, Voice Coil Servo Motors

D115 The Fast Optimal Servo Amplifier For Brush, Brushless, Voice Coil Servo Motors D115 The Fast Optimal Servo Amplifier For Brush, Brushless, Voice Coil Servo Motors Ron Boe 5/15/2014 This user guide details the servo drives capabilities and physical interfaces. Users will be able to

More information

Aerial Surveillance Drone: Power Management

Aerial Surveillance Drone: Power Management Aerial Surveillance Drone: Power Management The Aerial Surveillance Drone is a quadrotor controlled by a mobile application and a microcontroller programmed to identify and follow suspicious targets while

More information

Pridgen Vermeer Robotics ATmega128 Revision 0

Pridgen Vermeer Robotics ATmega128 Revision 0 Features: 6x 8-bit I/O Ports 4x A/D Inputs 6x PWM Headers 2x RS 232 Terminals Power Bus LCD Header (4-bit mode) Smart Power Connecter Power Switch Header Power LED Debug LED Note: Some pins have multiple

More information

Autonomous Underwater Vehicle Control with a 3 Actuator False Center Mechanism

Autonomous Underwater Vehicle Control with a 3 Actuator False Center Mechanism Autonomous Underwater Vehicle Control with a 3 Actuator False Center Mechanism Cheri Everlove, Santa Clara University Mentor: Bill Kirkwood Summer 2004 Keywords: AUV, False Center, Steering Mechanism ABSTRACT

More information

Surveying of Underwater Robot for Marine Exploration

Surveying of Underwater Robot for Marine Exploration IJSTE - International Journal of Science Technology & Engineering Volume 2 Issue 09 March 2016 ISSN (online): 2349-784X Surveying of Underwater Robot for Marine Exploration D. S. Vidhya Puja S Patil Assistant

More information

RoboClaw 2x30A Dual Channel Motor Controller

RoboClaw 2x30A Dual Channel Motor Controller RoboClaw 2x30A, 34VDC Dual Channel Brushed DC Motor Controller Version 2.2 (c) 2016 Ion Motion Control. All Rights Reserved. Feature Overview: 60 Amps Peak Per Channel Channel Bridging Supported Dual Quadrature

More information

Automated Tennis - Image Processing and Launcher. Group 14 Michael Rathbun Aviel Yashar Khoa Hoang Kyle Willnow

Automated Tennis - Image Processing and Launcher. Group 14 Michael Rathbun Aviel Yashar Khoa Hoang Kyle Willnow Automated Tennis - Image Processing and Launcher Group 14 Michael Rathbun Aviel Yashar Khoa Hoang Kyle Willnow Motivation Make tennis as convenient as bowling Appeal to the lazy and luxurious Increase

More information

12v Power Controller Project Board

12v Power Controller Project Board 12v Power Controller Project Board 12 Volt Power Controller Introduction This board provides three functions... DC power gate Low voltage disconnect Voltage / current display The typical usage for this

More information

Homework 11: Reliability and Safety Analysis

Homework 11: Reliability and Safety Analysis ECE 477 Digital Systems Senior Design Project Rev 8/09 Homework 11: Reliability and Safety Analysis Team Code Name: ATV Group No. _3 Team Member Completing This Homework: Sebastian Hening E-mail Address

More information

Team: XeroDual. EEL 4924 Electrical Engineering Design. Final Report 3 August Project Ehrgeiz. Team Name: XeroDual

Team: XeroDual. EEL 4924 Electrical Engineering Design. Final Report 3 August Project Ehrgeiz. Team Name: XeroDual Page 1/20 EEL 4924 Electrical Engineering Design Final Report 3 August 2009 Project Ehrgeiz Team Name: XeroDual Reinier Santos yayan26@ufl.edu Project Abstract: This project aims to design a human interface

More information

INTRODUCTION TABLE OF CONTENTS 1 INTRODUCTION WELCOME TO THE 2009 FRC CONTROL SYSTEM Suggestions for Getting Started 2

INTRODUCTION TABLE OF CONTENTS 1 INTRODUCTION WELCOME TO THE 2009 FRC CONTROL SYSTEM Suggestions for Getting Started 2 Section 1 INTRODUCTION TABLE OF CONTENTS 1 INTRODUCTION 2 1.1 WELCOME TO THE 2009 FRC CONTROL SYSTEM 2 1.1.1 Suggestions for Getting Started 2 1.2 TECHNICAL SUPPORT FOR THE 2009 FRC CONTROL SYSTEM 2 1.3

More information

MECHATRONIC LAB ROOM NO: 4201, MECHANICAL DEPARTMENT INTERCOM: 418. INCHARGE: Mr. M. MOHANDASS, Associate Professor, Mechanical

MECHATRONIC LAB ROOM NO: 4201, MECHANICAL DEPARTMENT INTERCOM: 418. INCHARGE: Mr. M. MOHANDASS, Associate Professor, Mechanical MECHATRONIC LAB ROOM NO: 4201, MECHANICAL DEPARTMENT INTERCOM: 418 INCHARGE: Mr. M. MOHANDASS, Associate Professor, Mechanical ASSOCIATE INCHARGE: K. KARTHEE, Assistant Professor, Mechanical SUPPORTING

More information

Fixed Wing Models 45

Fixed Wing Models 45 Fixed Wing Models 45 FLAP FLAPERON Flap Flaperon Mixer Aileron Rudder Mixer Aileron Differential Mixer The mixer "F-A" allows an adjustable portion of the flap control system to be fed to the aileron channels

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

Automated Industrial Wind Tunnel Network Control with LabView

Automated Industrial Wind Tunnel Network Control with LabView Automated Industrial Wind Tunnel Network Control with LabView Senior Project Proposal Matt Draear Advisor: Alexander Malinowski November 15, 2012 Project Summary The purpose of this project is to upgrade

More information

Single-Axis Camera Stabilizer

Single-Axis Camera Stabilizer Senior Design I Project Proposal Single-Axis Camera Stabilizer Project sponsored by Professor Michael F. Young, George Mason University Team 3 Spring/Summer 2014: Thomas Mizell Alexander Pennock Ahmed

More information

The Information contained herein is subject to change without notice. Revisions may be issued regarding changes and/or additions.

The Information contained herein is subject to change without notice. Revisions may be issued regarding changes and/or additions. Arbor 70C TM Gumstix, Inc. shall have no liability of any kind, express or implied, arising out of the use of the Information in this document, including direct, indirect, special or consequential damages.

More information

BassBot. Design Team 03. Louis Begue- Archivist, EE Greg Haren- So8ware, EE Joshua Kuzman- Hardware, EE Michael Prechel- Team Lead, EE

BassBot. Design Team 03. Louis Begue- Archivist, EE Greg Haren- So8ware, EE Joshua Kuzman- Hardware, EE Michael Prechel- Team Lead, EE BassBot Design Team 03 Louis Begue- Archivist, EE Greg Haren- So8ware, EE Joshua Kuzman- Hardware, EE Michael Prechel- Team Lead, EE Dr. CarleFa Dr. Lee 12/2/2011 Need RoboGames music robot challenge is

More information

Accelerometer-Based Musical Instrument

Accelerometer-Based Musical Instrument Accelerometer Music Instrument University of Texas at Austin TI Innovation Challenge 2015 Project Report Team Leader: Team Members: Advising Professor: Video Texas Instruments Mentor (if applicable): Date:12/13/2014

More information

Academic Year Annexure I. 1. Project Title: Color sensor based multiple line follower robot with obstacle detection

Academic Year Annexure I. 1. Project Title: Color sensor based multiple line follower robot with obstacle detection Academic Year 2015-16 Annexure I 1. Project Title: Color sensor based multiple line follower robot with obstacle detection TABLE OF CONTENTS 1.1 Abstract 2-2 1.2 Motivation 3-3 1.3 Objective 3-3 2.1 Block

More information

AeroCore 2 for Intel Joule Module

AeroCore 2 for Intel Joule Module AeroCore 2 for Intel Joule Module TM Gumstix, Inc. shall have no liability of any kind, express or implied, arising out of the use of the Information in this document, including direct, indirect, special

More information

ReMutt Control. Critical Design Review

ReMutt Control. Critical Design Review ReMutt Control Critical Design Review The Team Team Leader: Steven Guan Team Members: Eric Brunnett, Daniel Kwak, Joon Hee Lee, Alex Chepilev What is the ReMutt Control? Remote pet feeding system operated

More information

Figure 18: Basic input port drawing.

Figure 18: Basic input port drawing. Appendix A Hardware Inputs The mx_ctlr.0 board has several different types of inputs and outputs allowing for a wide range of functions and actions. The inputs for the board can be broken into three basic

More information

VEX ARM Cortex -based Microcontroller and VEXnet Joystick User Guide

VEX ARM Cortex -based Microcontroller and VEXnet Joystick User Guide 1. VEX ARM Cortex -based Microcontroller and VEXnet Joystick Pairing Procedure: a. The Joystick must first be paired to the VEX ARM Cortex -based Microcontroller before they will work using VEXnet Keys.

More information

Robotics Jumpstart Training II. EasyC: Software & Firmware Updates

Robotics Jumpstart Training II. EasyC: Software & Firmware Updates Robotics Jumpstart Training II EasyC: Software & Firmware Updates Objectives: Learn how to update EasyC Current Version: 4.2.1.9 Learn how to update Firmware VEX Joystick (Controller) VEX Microcontroller

More information

HDBB Breakout board user s manual

HDBB Breakout board user s manual HDBB Breakout board user s manual The HDBB breakout board was designed to use with our Whale2(-T)*, Whale3, Mammut* and Dugong servo drives or with any other third party stepper or servo drives which using

More information

Homework 5: Circuit Design and Theory of Operation Due: Friday, February 24, at NOON

Homework 5: Circuit Design and Theory of Operation Due: Friday, February 24, at NOON Homework 5: Circuit Design and Theory of Operation Due: Friday, February 24, at NOON Team Code Name: Motion Tracking Laser Platform Group No.: 9 Team Member Completing This Homework: David Kristof NOTE:

More information

Robert G. Landers. Manufacturing Automation and Control Laboratory (130 Toomey)

Robert G. Landers. Manufacturing Automation and Control Laboratory (130 Toomey) Robert G. Landers Broad Areas of Research Interests: Controls applications and manufacturing automation Specific Research Interests: Modeling, analysis, monitoring, and control of manufacturing processes

More information

The Information contained herein is subject to change without notice. Revisions may be issued regarding changes and/or additions.

The Information contained herein is subject to change without notice. Revisions may be issued regarding changes and/or additions. Pepper 43R TM Gumstix, Inc. shall have no liability of any kind, express or implied, arising out of the use of the Information in this document, including direct, indirect, special or consequential damages.

More information

Group 13 Monitor and Control of an Excavator Robot

Group 13 Monitor and Control of an Excavator Robot ELEC 490 PROJECT BLUEPRINT DOCUMENT Group 13 Monitor and Control of an Excavator Robot Submitted December 21st, 2005 FOR Dr. Michael Greenspan Dr. Kevyan Hashtrudi-Zaad Executive Summary In the first two

More information

Scott Kanowitz, A. Antonio Arroyo. Machine Intelligence Laboratory Department of Electrical and Computer Engineering

Scott Kanowitz, A. Antonio Arroyo. Machine Intelligence Laboratory Department of Electrical and Computer Engineering Scott Kanowitz, A. Antonio Arroyo Machine Intelligence Laboratory Department of Electrical and Computer Engineering 332 Benton Hall University of Florida Gainesville, FL 32611 Email: skano@mil.ufl.edu

More information

Wireless Fire Fighting Robot

Wireless Fire Fighting Robot Wireless Fire Fighting Robot Sai Swapneel Gayala 1, Bhanu Murthy Soppari 2 1 Student Mechanical Engineering,VNR VJIET-Hyderabad 2 Assistant Professor,VNR VJIET, HYDERABAD Abstract: At present world of

More information

Preliminary Project Proposal. Project Title: Automatic Storm Shutters. Team Name: Make It Rain

Preliminary Project Proposal. Project Title: Automatic Storm Shutters. Team Name: Make It Rain EEL 4924 Electrical Engineering Design (Senior Design) Preliminary Project Proposal 28 May 2009 Project Title: Automatic Storm Shutters Team Name: Make It Rain Team Members: Name: Kyle Weber Name: Zachary

More information

ADVANCED TRAINING INSTITUTE, HYDERABAD

ADVANCED TRAINING INSTITUTE, HYDERABAD Revision:01 LEARNING CONTENT Page 1 of 8 III COURSE CODE IA-01 COURSE TITLE PLC PROGRAMMING FOR INDUSTRIAL AUTOMATION OBJECTES On completion of the course, the learner will be able to explain the applications

More information

Western Washington University. Electrical Engineering Technology. Etec 471. Professor Morton. Senior Hardware Description. Automated Aquarium

Western Washington University. Electrical Engineering Technology. Etec 471. Professor Morton. Senior Hardware Description. Automated Aquarium Western Washington University Electrical Engineering Technology Etec 471 Professor Morton Senior Hardware Description Automated Aquarium Greg Rose 4/27/04 Introduction The Automated Aquarium Controller

More information

Interaction with the Physical World

Interaction with the Physical World Interaction with the Physical World Methods and techniques for sensing and changing the environment Light Sensing and Changing the Environment Motion and acceleration Sound Proximity and touch RFID Sensors

More information

Make a Quadcopter using KK Flight Controller

Make a Quadcopter using KK Flight Controller Make a Quadcopter using KK 2.1.5 Flight Controller 1 Typical Applications A quadcopter, also called a quadrotor helicopter or quadrotor, is a multirotor helicopter that is lifted and propelled by four

More information

Speed Controller ZSU A01

Speed Controller ZSU A01 ZSU A01 The ZSU speed controller is a monitor of rotating or oscillating machine parts. The speed controller continuously compares the set speed with the actual speed and produces a switching output in

More information

CORTEX Microcontroller and Joystick User Guide

CORTEX Microcontroller and Joystick User Guide This is a User Guide for using the VEX CORTEX Microcontroller and VEX Joystick. Refer to the VEX Wiki (http://www.vexforum.com/wiki/index.php/vex_cortex_microcontroller) for updates to this document. 1.

More information

A.U.R.A.S Autonomous Ultrasonic Robot for Area Scanning

A.U.R.A.S Autonomous Ultrasonic Robot for Area Scanning A.U.R.A.S Autonomous Ultrasonic Robot for Area Scanning Project Presentation ECE 511 Fall 2014 George Mason University 12/05/2014 Group: 2 Team Members: DevarajDhakshinamurthy Krishna Nikhila Kalinga Gagandeep

More information

MICROCONTROLLER BASED SMART FAN SYSTEM

MICROCONTROLLER BASED SMART FAN SYSTEM MUHAMMAD KHAIRI BACHELOR OF ELECTRICAL ENGINEERING (HONS.) (ELECTRONICS) 2007 UMP MICROCONTROLLER BASED SMART FAN SYSTEM MUHAMMAD KHAIRI BIN ABD. GHANI UNIVERSITI MALAYSIA PAHANG v ABSTRACT This project

More information

SystemVision Case Study: Robotic System Design. Dan Block Senior Project Oregon State University

SystemVision Case Study: Robotic System Design. Dan Block Senior Project Oregon State University SystemVision Case Study: Robotic System Design Dan Block Senior Project Oregon State University Introduction The TekBot is part of the Oregon State University (OSU) Platforms for Learning concept 1, created

More information

Group 10 Programmable Sensor Output Simulator Progress Report #2

Group 10 Programmable Sensor Output Simulator Progress Report #2 Department of Electrical Engineering University of Victoria ELEC 499 Design Project Group 10 Programmable Sensor Output Simulator Progress Report #2 March 5, 2005 Submitted by: Group No.: 10 Team: Exfour

More information

Draft. CNC Controller Datasheet. 1 Features. 2 Applications

Draft. CNC Controller Datasheet. 1 Features. 2 Applications 1 Features 4-axis stepper motor control 2 general purpose 15 amp switched load outputs 12-36 VDC power supply Up to 15 amps output current. Plug compatible with standard Mean Well power supply Up to 6

More information

Electric Imp impexplorer Kit

Electric Imp impexplorer Kit Electric Imp impexplorer Kit The Electric Imp impexplorer Kit is the ideal basis for building self-contained connected devices. It includes not only a trio of temperature and humidity, motion, and pressure

More information

Final Report. Autonomous Robot: Chopper John Michael Mariano December 9, 2014

Final Report. Autonomous Robot: Chopper John Michael Mariano December 9, 2014 Final Report Autonomous Robot: Chopper John Michael Mariano December 9, 2014 EEL 4665: Intelligent Machines Design Laboratory Instructors: Dr. A. Antonio Arroyo, Dr. Eric M. Schwartz TA: Nicholas Cox,

More information

MODEL K INSTRUCTION MANUAL CONTENTS

MODEL K INSTRUCTION MANUAL CONTENTS MODEL 7173 - K INSTRUCTION MANUAL CONTENTS 1. MODEL 7173 - K ELECTRONIC FFU STEERING SYSTEM 2. MODEL 7173 - K COMPONENTS 3. MOUNTING THE 7173 - K AMPLIFIER UNIT 4. MOUNTING THE FFU CONTROLLER UNITS 5.

More information

MIAC-01 Now you are in control

MIAC-01 Now you are in control Page 1 Now you are in control General purpose industrial controller Full graphical programming language supplied A wide variety of applications Page 2 Introduction What does it do? MIAC (Matrix Industrial

More information

Thursday, September 15, electronic components

Thursday, September 15, electronic components electronic components a desktop computer relatively complex inside: screen (CRT) disk drive backup battery power supply connectors for: keyboard printer n more! Thursday, September 15, 2011 integrated

More information

Homework 5: Theory of Operation and Hardware Design Narrative Due: Friday, October 3, at NOON

Homework 5: Theory of Operation and Hardware Design Narrative Due: Friday, October 3, at NOON Homework 5: Theory of Operation and Hardware Design Narrative Due: Friday, October 3, at NOON Team Code Name: ECE Grande Group No. 3 Team Member Completing This Homework: Ashley Callaway e-mail Address

More information

Scientech Universal PLC Platform. Features. New

Scientech Universal PLC Platform. Features. New New In today's environment of automation, the importance of PLC has rapidly increased. Universal PLC Platform is an ideal setup to study the working of PLC's used for industrial applications. has been

More information

Polar and Polygon Path Traversal of a Ball and Plate System

Polar and Polygon Path Traversal of a Ball and Plate System Polar and Polygon Path Traversal of a Ball and Plate System Aneeq Zia Electrical Engineering Department, LUMS School of Science and Engineering D.H.A, Lahore Cantt, 54792, Pakistan aneeq91@hotmail.com

More information

Exercise 5-1. Electrical Circuit and Panel EXERCISE OBJECTIVE DISCUSSION OUTLINE DISCUSSION. Detailed electrical schematic

Exercise 5-1. Electrical Circuit and Panel EXERCISE OBJECTIVE DISCUSSION OUTLINE DISCUSSION. Detailed electrical schematic Exercise 5-1 Electrical Circuit and Panel EXERCISE OBJECTIVE When you have completed this exercise, you will be familiar with the trainer electrical schematic and components. DISCUSSION OUTLINE The Discussion

More information

ACDC - A Helping Hand

ACDC - A Helping Hand ACDC - A Helping Hand Akash Jinandra, Carlos Cuesta, Devin Defond, Chang Ching Wu Dept. of Electrical Engineering and Computer Science, University of Central Florida, Orlando, Florida, 32816-2450 Abstract

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 Table of Contents 1. Introduction... 4 Features... 4 2. Part Numbering Scheme... 5 3. Electrical and Thermal Specifications... 6 Power

More information

Preliminary Design Report

Preliminary Design Report Preliminary Design Report EEL4924-Electrical Engineering Design 2 University of Florida 25 January 2012 Team Members: Ryan Griffin & Brie Colon Project Abstract: Our project consists of designing an electronic

More information

A. Abstract.2. B. Mechanical Design Process..4. B.1 Frame 5. B.2 Boyancy...6. B.3 Thrusters B.4 Housing...8. B.5 Cover 8. B.6 Robotic Arm..

A. Abstract.2. B. Mechanical Design Process..4. B.1 Frame 5. B.2 Boyancy...6. B.3 Thrusters B.4 Housing...8. B.5 Cover 8. B.6 Robotic Arm.. 1 A. Abstract Underwater world has always been one of the most unknown and complex places for human being. Scientists believe that our knowledge form the underwater world is only 10% whilst in comparison

More information

Airtalk I/O Extender

Airtalk I/O Extender Airtalk I/O Extender for Stratomaster Enigma, Odyssey and Voyager EFIS systems User manual Document date 21/6/2007 General The I/O Extender is a small unit designed to extend the I/O interface capabilities

More information

Final Design Report. Project Title: Automatic Storm Shutters. Team Name: Make It Rain

Final Design Report. Project Title: Automatic Storm Shutters. Team Name: Make It Rain EEL 4924 Electrical Engineering Design (Senior Design) Final Design Report 4 August 2009 Project Title: Automatic Storm Shutters Team Name: Make It Rain Team Members: Name: Kyle Weber Name: Zachary Wernlund

More information

Preliminary Design Report A Wireless ECU Monitoring System Team WEMS 27 January 2009

Preliminary Design Report A Wireless ECU Monitoring System Team WEMS 27 January 2009 EEL 4924 Electrical Engineering Design (Senior Design) Preliminary Design Report A Wireless ECU Monitoring System 27 January 2009 Abstract The Wireless ECU Monitoring System (WEMS) will provide a wireless

More information

RONIN THUMB CONTROLLER

RONIN THUMB CONTROLLER RONIN THUMB CONTROLLER User Manual V1.0 2015.6 Disclaimers and Warnings Congratulations on purchasing your new DJI product. Carefully read the manual and all disclaimers before using this product. By using

More information

Innovation First, Inc Full-Size Robot Controller Reference Guide

Innovation First, Inc Full-Size Robot Controller Reference Guide 2004 Full-Size Robot Controller Reference Guide 2.19.2004 www.innovationfirst.com Page 2 Table of Contents 1. Robot Controller Overview... 3 2. Main Power Input... 4 3. Battery Backup Power... 4 4. PROGRAM...

More information

Open Sesame. Grant Apodaca Jeffrey Bolin Eric Taba Richie Agpaoa Evin Sellin

Open Sesame. Grant Apodaca Jeffrey Bolin Eric Taba Richie Agpaoa Evin Sellin Open Sesame Grant Apodaca Jeffrey Bolin Eric Taba Richie Agpaoa Evin Sellin 1 Description Open Sesame is a portable, affordable, compact and easyto-use door security accessory, that can unlock your door

More information

CANBUS I/O EXPANSION MODULES MODELS exm / exm FEATURES Models & Configurable CANbus connection allows communication with other CANbus enabled devices. Multi-purpose I/O pins in a compact, low cost, rugged

More information

EZ-Bv4 Datasheet v0.7

EZ-Bv4 Datasheet v0.7 EZ-Bv4 Datasheet v0.7 Table of Contents Introduction... 2 Electrical Characteristics... 3 Regulated and Unregulated Power Pins... 4 Low Battery Warning... 4 Hardware Features Main CPU... 5 Fuse Protection...

More information

Research and Design of Universal Proportional Valve Controller

Research and Design of Universal Proportional Valve Controller Open Access Library Journal 2018, Volume 5, e4588 ISSN Online: 2333-9721 ISSN Print: 2333-9705 Research and Design of Universal Proportional Valve Controller Qiyu Zhang, Xiaoxiao Cao, Minghai Duan, Xiaohui

More information

Meeting Date: February 12, Meeting Location: Building 78 Room Meeting time: 8:00 10:00 AM. Timeline:

Meeting Date: February 12, Meeting Location: Building 78 Room Meeting time: 8:00 10:00 AM. Timeline: Agenda Meeting Purpose Detailed design review of P10543 Update of color measurement system. The objective of this technical review is to conduct an evaluation of the proposed design solution and to identify

More information

RoboClaw 120A/160A/200A Dual Channel Motor Controller

RoboClaw 120A/160A/200A Dual Channel Motor Controller RoboClaw 2x160A, 34VDC Dual Channel RoboClaw 2x120AHV, 60VDC Dual Channel RoboClaw 2x160AHV, 60VDC Dual Channel RoboClaw 2x200AHV, 60VDC Dual Channel Brushed DC Motor Controllers Version 2.1 (c) 2016 Ion

More information

Wall-Follower. Xiaodong Fang. EEL5666 Intelligent Machines Design Laboratory University of Florida School of Electrical and Computer Engineering

Wall-Follower. Xiaodong Fang. EEL5666 Intelligent Machines Design Laboratory University of Florida School of Electrical and Computer Engineering Wall-Follower Xiaodong Fang EEL5666 Intelligent Machines Design Laboratory University of Florida School of Electrical and Computer Engineering TAs: Tim Martin Josh Weaver Instructors: Dr. A. Antonio Arroyo

More information

SOLARIUM: HOME AUTOMATION SYSTEM USING BLUETOOTH

SOLARIUM: HOME AUTOMATION SYSTEM USING BLUETOOTH SOLARIUM: HOME AUTOMATION SYSTEM USING BLUETOOTH Varsha Singh 1 & Savita Sindhu 2 Abstract: In this paper, we aim at designing a home automation system using automatic sun tracking system. Also operating

More information

Work in Progress Ohio Northern University Wind Tunnel Upgrade Senior Capstone

Work in Progress Ohio Northern University Wind Tunnel Upgrade Senior Capstone Work in Progress Ohio Northern University Wind Tunnel Upgrade Senior Capstone Sean Lemke, Robert Money, Garrett Petty Ohio Northern University, s-lemke@onu.edu, r-money@onu.edu, g-petty@onu.edu Abstract

More information

Final Report. Project Title: Dial A Whip

Final Report. Project Title: Dial A Whip EEL 4924 Electrical Engineering Design (Senior Design) 25 April 2012 Project Title: Dial A Whip Team Members: Name: Chris Calvo Name: Daniel De Leo Project Abstract: Dial A Whip consists of a compact module

More information

Single Linear Flexible Joint (SLFJ)

Single Linear Flexible Joint (SLFJ) Linear Motion Servo Plants: IP01 and IP02 Single Linear Flexible Joint (SLFJ) User Manual Table of Contents 1. Single Linear Flexible Joint (SLFJ)...1 1.1. Single Linear Flexible Joint: System Description...1

More information

Breakoutboard for ESS Smoothstepper

Breakoutboard for ESS Smoothstepper Breakoutboard for ESS Smoothstepper Operation Manual All rights to these operating instructions remain with cnc-technics. Texts, information and illustrations of these operating instructions may not be

More information

Now you are in control

Now you are in control Page 1 Now you are in control General purpose industrial controller Full graphical programming language supplied A wide variety of applications trademark of. Page 2 Introduction What does it do? MIAC (Matrix

More information

TechNexion PICO SOM Expansion Board

TechNexion PICO SOM Expansion Board TechNexion PICO SOM Expansion Board TM Gumstix, Inc. shall have no liability of any kind, express or implied, arising out of the use of the Information in this document, including direct, indirect, special

More information

CJ series Ergonomic multifunction joysticks

CJ series Ergonomic multifunction joysticks an APEM Group Company CJ series The CJ Series joystick features an ergonomic multifunction handle purposely designed for safety critical hand-operated applications. Available as a one or two axes joystick,

More information

AC System Monitoring Device. Andrew Jarrett Project Advisor: Professor Gutschlag Department of Electrical and Computer Engineering October 1, 2015

AC System Monitoring Device. Andrew Jarrett Project Advisor: Professor Gutschlag Department of Electrical and Computer Engineering October 1, 2015 AC System Monitoring Device Andrew Jarrett Project Advisor: Professor Gutschlag Department of Electrical and Computer Engineering October 1, 2015 Outline Background Problem Background Problem Statement

More information

TOC F1 Operations Manual

TOC F1 Operations Manual TOC F1 Operations Manual - 1 - General Description The TOC F1 is a single channel wireless lens control system. The system can be used on most broadcast or cinema lenses. The TOC F1 includes a hand held

More information

Optical Encoders. Sold & Serviced By: Toll Free Phone: Toll Free Fax:

Optical Encoders. Sold & Serviced By:   Toll Free Phone: Toll Free Fax: SERVO-TEK SERVO-TEK PRODUCTS COMPANY, INC. Optical Encoders www.servotek.com Toll Free Phone: 877-378-0240 sales@servo2go.com RC-800 Summary Hollow Shaft Encoders ST50 Series High Performance Rotary Incremental

More information

FlexPak 3000 Drive Operator Interface Module (OIM) User s Guide

FlexPak 3000 Drive Operator Interface Module (OIM) User s Guide FlexPak 3000 Drive Operator Interface Module (OIM) User s Guide Instruction Manual D2-3344 The information in this manual is subject to change without notice. Throughout this manual, the following notes

More information

PC2004 PRESSURE CONTROLLER

PC2004 PRESSURE CONTROLLER PC CTROLLER FRT PANEL Digital Display & Display Selector Switch The Display Selector Switch has five positions: PRESS Displays the pressure sensed at the transducer. INT SP Displays the INTERNAL SETPOINT

More information

Equipack. Zach Boynton. Brenton Chasse. Colin Morrisseau. Alex Nichols CSE CSE. EE Advisor: Prof. Salthouse

Equipack. Zach Boynton. Brenton Chasse. Colin Morrisseau. Alex Nichols CSE CSE. EE Advisor: Prof. Salthouse Equipack Brenton Chasse CSE Zach Boynton EE Alex Nichols enter Dept name in Slide Title Master CSE Colin Morrisseau EE Project Overview - Problem People don t know how to properly wear/load their backpacks

More information

SUPER BRAIN ESC-100A Brushless Speed Controller INSTRUCTIONS

SUPER BRAIN ESC-100A Brushless Speed Controller INSTRUCTIONS SUPER BRAIN ESC-100A Brushless Speed Controller INSTRUCTIONS Thanks so much for purchasing Turnigy Super Brain speed controllers. Please read the instruction booklet carefully before flying to ensure to

More information

Observatory Automation Project

Observatory Automation Project Observatory Automation Project Detail Design Review Control of Electric Dome Drive System Grant Matsushige/Steven Bauman Version 1.0 17 May 2010 1. Overview After the preliminary design review, it s been

More information

THE WI-FI SEEKER GROUP 30 CHRISTINA LEICHTENSCHLAG ADRIAN MORGAN JIMMY WONG SPONSORS: LEIDOS DUKE ENERGY

THE WI-FI SEEKER GROUP 30 CHRISTINA LEICHTENSCHLAG ADRIAN MORGAN JIMMY WONG SPONSORS: LEIDOS DUKE ENERGY THE WI-FI SEEKER GROUP 30 CHRISTINA LEICHTENSCHLAG ADRIAN MORGAN JIMMY WONG SPONSORS: LEIDOS DUKE ENERGY THE WI-FI SEEKER The Wi-Fi Seeker is a robot whose purpose is to determine the location where a

More information

Page 1 / 14. Dear Makerspace User,

Page 1 / 14. Dear Makerspace User, Dear Makerspace User, This list will give you an overview of all the parts that can be bought at the Student Project House Makerspace Electronics Shop. To easily find the correct part we sorted them in

More information