Project Title: Wireless Hummer. ECE Final Written Report

Size: px
Start display at page:

Download "Project Title: Wireless Hummer. ECE Final Written Report"

Transcription

1 Project Title: Wireless Hummer ECE Final Written Report Project Team Members: Justin Audley, Blake Brown, Christopher Dean, Andrew Russell, Andrew Saunders ECE Faculty Advisor: Dr. Richard A. Messner Submit Date: May 19, 2010

2 Abstract: The Wirelesss Hummer was a senior design project created by five electrical engineering students during the school year. The goal of this project was to transform a remote control toy car into a laptop controlled reconnaissance robot. The Hummer was outfitted with a webcam, a microphone, four ultrasonic range finders, an Arduino Microcontroller and an Acer netbook. The research was completed and the project was presented at the Undergraduate Research Conference on April 27, 2011, where it functioned as expected. This report outlines the research, implementation, and testing that was performed on the Hummer from October 2010 to April It is written in chronological order of the goals that were completed during that period and an evaluation of the project and our performance is given at the end.

3 Table of Contents Abstract:... 2 Introduction... 4 Project Overview... 4 Initial Research:... 5 Wireless Steering and Control:... 6 Obstacle Detection:... 7 Relative Motion Detection:... 8 Video Transmission:... 8 Additional Goals Research:... 9 Elevator Accessibility: Evaluation:... 11

4 Introduction: This project idea was shaped by Dr. Richard A. Messner, and we accepted the challenge at the end of ECE 694 in the spring of We talked with Dr. Messner at the beginning of September 2010 about what his intentions were for the toy hummer and we wrote a proposal outlining our goals and expected budget for the project. The proposal was presented and accepted by Dr. Tom Miller and Dr. Richard A. Messner during October Research for the project started immediately, and we completed our first task of wireless control just in time for the project progress report in December At the start of second semester, we still needed to complete our secondary tasks, relative motion detection, obstacle detection and video transmission by April It is safe to say that we had our work cut out for us. These main goals were completed by the end of March, and we began working on our lofty additional goal of elevator accessibility in April. At the URC, all of our proposed deliverable goals were completed and in working order, but the elevator accessibility became a proof-of-concept idea because we weren't able to manipulate a solenoid from an infrared signal. The project was considered completed once the URC ended and further research was not conducted. Project Overview The purpose of this project was to create a device that will be capable of receiving and executing commands given from a remote location. For this project, the device was a remote control toy Hummer (shown in Figure 1) that was outfitted with several sensors, a netbook and an arduino microcontroller. The built-in remote control functionality was disabled, and the connection to the Hummer was made over an ad-hoc network which provided several advantages. The ad-hoc network allowed access directly to the hummer from a remote location without the use of wires and it avoided the heavy traffic on the UNH wireless network. This connection was used to send commands from the remote user to the hummer and to relay video from the Hummer back to the remote user. Figure 1: Remote Control Hummer for Senior Project (September 2010)

5 Initial Research: In October 2010, we disassembled the toy hummer and found that there were two DC motors, one for the front axle and one for the rear axle as shown in figure 2. We also found a servo motor with two wires for power and three wires for the potentiometer value shown in Figure 3. The toy was controlled by a single 12 volt lead acid battery. The motors were controlled by an h-bridge control circuit that interpreted the signals sent from the handheld remote transmitter. There was also another circuit board which we determined to be devoted to power distribution. The transmitter operated at 24 MHz. Initially, we left the antenna connected to the Hummer. This allowed us to observe how the hummer responded to the signals sent from the transmitter. We used this information to determine the functionality of the two circuits, because we could not find any information about this toy online. The antenna, headlights, taillights, and speaker were all connected to the control board shown in Figure 4. It was determined that a microcontroller was present on the control board with pins 8 and 9 being used to control the steering of the vehicle. Figure 2: The Undercarriage of the Hummer Figure 3: Hummer Taken Apart with Control Board, Power Board, Steering Cable and DC Motors Figure 4: Control Board interfaced to the Arduino (not shown)

6 Wireless Steering and Control: The communication medium between the user and the vehicle was the IEEE wireless standard, otherwise known as WiFi. The Windows Sockets API, WinSock, was the highest level layer between the two communication devices. The client opened a connection that the server was listening for, creating a channel for the two-way communication between the user and the Hummer (see Figure 5). Custom code was written for both the server and client, which was constantly checking buffers for data to be received or transmitted. The server to client code was written using OGRE, an open source 3D graphics rendering system. However, a graphical user interface (GUI) was not created due to lack of time. Custom code was also written for the Arduino using the Arduino IDE. This code controlled the on board circuitry on the Hummer. We had specific code written for speed, steering, and the ultrasonic range finders. Below is a portion of some of the custom code used to control the Hummer. int minfrontdistance = 30; int minbackdistance = 20; int minleftdistance = 5; int minrightdistance =5; void ProcessSensors() { //if going Forward and front sensor sees something if ((SensorVal1 <minfrontdistance) && (Direction == 1)){ goforward(0); //stop } //if going Backward and back sensor sees something if ((SensorVal4 < minbackdistance) && (Direction == 0)){ goforward(0); //stop } //Front Left Sensor if(sensorval3 < minleftdistance){ goforward(0); } //Front Right Sensor if(sensorval2 < minrightdistance){ goforward(0); } return; } This code was used for obstacle detection and each SensorVal is a reading from one of the ultrasonic range finders. The minimum distances for each side is set by the user and are shown above. Looking at Front Left Sensor for example, if SensorVal3, the detected value from the ultrasonic range finder, is less than the set minleftdistance of 5, the Hummer will stop. The line goforward(0)is telling the Hummer to go forward at a speed of 0, which realistically means telling the Hummer to stop. In order for the Hummer to move, commands were sent from the user at the client computer, which were sent over WiFi to the server computer, which was the onboard netbook. The WASD keys and the arrow keys were used as the input for speed and steering. The up arrow was used for setting the maximum speed, and the down arrow decreases the maximum speed. These were chosen because they are typical movement keys for a computer game. The steering would automatically go back to the center when no turn key was pressed. These commands were

7 interpreted by the netbook and then sent over the COM port to the Arduino. The Arduino parsed the command and executed the required action, whether it be controlling the H-Bridge to drive the DC motors for forward and backward movement, or controlling the servo motor for turning. The ability to drive the hummer over the wireless network in Kingsbury was poor. There was a noticeable latency between when the user inputted a command and the hummer acted upon the command. This led to the decision to use an ad-hoc network, as this is not using any internet connected network at all, and is simply connecting the netbook to the remote computer. The netbook did not have the ability to host an ad-hoc network, but it could connect to one. Therefore, we used the remote laptop to setup the network. Figure 5: Flowchart for link between Client PC (user) and Hummer Obstacle Detection: For the obstacle detection portion of the project, the sensors chosen were the Maxbotix LV-MaxSonar-EZ0 ultrasonic range finders (Figure 6) capable of detecting distances accurate to the inch in the range of 5 inches to several feet. Four of these sensors were used, one on each side of the Hummer. These sensors all ran simultaneously to collect data from every direction. There are multiple ways these sensors can output the data. For this project, an analog voltage proportional to the distance measured was the best choice as it can be easily read by the A/D converter of the Arduino. This allowed the Arduino to override the user in the event an obstacle was in the path of the Hummer. The first problem encountered with the sensors was that while the code to process the sensor data and determine if the hummer needs to stop was running, the hummer moved with a stutter, stopping and starting constantly. Commenting out this function in the Arduino code allowed the hummer to move smoothly again. The problem was that the explicit delays in the code as specified by Maxbotix for proper sensor operation were making the main loop take too long to execute. These delays were shortened and the main loop was cleaned up, removing everything that was not absolutely necessary that had been created throughout the project for various debugging purposes. The hummer was then brought into the hall and tested again, where it could successfully stop itself before driving into a wall, even with instruction from the user to do so.

8 Figure 6: Maxbotix LV-MaxSonar-EZ0 Ultrasonic Range Finder Relative Motion Detection: The goal was to allow the hummer to track its movements relative to its starting position as well as speed and overall distance. We researched an optical mouse hack, where the data from the sensor is used to track movement similar to how a mouse on a computer works. We disassembled two optical mice and built two separate contraptions that were attached to each side of the undercarriage of the hummer. These sensors required a strong source of ambient light, and as such, LEDs were angled toward the ground directly under the sensors. We were able to move the hummer back and forth and see the mouse pointer on a computer screen move accordingly. We ran out of time to fully test and implement this idea. Video Transmission: The Hummer was implemented with a USB web camera connected to the netbook. It was placed on the top of the Hummer above the windshield in order to provide the best visibility. The webcam worked fine directly on the netbook with very minimal delay between the capture and the display. A problem arose when we tried to stream the video data from the netbook (server) to the client. We downloaded and used the software Broadcam (figure 6), which allowed us to stream the captured video as a series of images to a website. The Internet Protocol (IP) address of this website was never constant because it was dependent on the netbook which did not have a static IP address. Consequently, the client always needed to verify the server IP address in order to view the stream. This became a nuisance especially when the server would lose its internet connection. Eventually, when we realized the UNH wireless network would not cooperate with our needs, we switched to using an ad-hoc (or point to point) network. The Broadcam software was no longer usable because it required an active internet connection. Figure 7: Snapshot of the Broadcam software setup menu

9 Research into other methods of video streaming led us to VideoLan (VLC Media Player). This is an open source media player that is capable of streaming video over any type of network connection to a single IP address or to multiple IP addresses. We decided to stream to only one IP address, the client. Setting up the stream required selecting the active webcam and microphone and entering the IP address of the client. Once the stream was set up, the client simply needed to open VLC media player, open the port where the video was sent and then what the hummer was seeing could be viewed on the remote laptop (Figure 7). Figure 8: Snapshot of VLC Media Player showing the captured stream The video streaming speed was limited due to the processing power of the netbook and thus the delay from the camera to the client was about 5 seconds. We attempted to view the video while sending movement commands to the hummer, and this did not end as expected. Since WiFi is half-duplex, the movement controls for the Hummer we sent got delayed by several seconds and it was visibly obvious that the Hummer was not responding to some commands. We decided not to use the video streaming while we were controlling the Hummer and would only turn it on while the Hummer was standing still. This still completed our goal for this portion of the project, because we had achieved an easy way to stream video from the server to the client. Additional Goals Research: The additional goals were objectives that we wanted to accomplish once the deliverable goals were achieved. These goals included autonomous movement, audio streaming, elevator accessibility, a laptop battery back-up solution, and on and off device data storage. Research was completed on the elevator accessibility, audio streaming, and the laptop battery solution. The elevator accessibility is discussed in the next section. We made audio streaming an additional goal, because we thought that the microphone would only pick up the noise from the motor, and that we would have needed to design some sort of filter. This did not end up being the case and was easily included with the transmission of video. In regard to the netbook battery, we did not need to have a backup solution because the duration of the battery was over 6 hours. This was tested battery by connecting it to the wireless internet and reloading a webpage every 2 minutes. We did not have time to devote to autonomous movement, but did discuss how we would try to implement the idea. We figured we could set the Hummer on the ground, and give it an initial speed. Then the Arduino would interpret the data from the sensors to control the rest of the movement, such as stopping in front of obstacles, reversing and finding a separate way around. This would have been really cool to accomplish, but unfortunately we ran out of time and had other goals to accomplish. The on and off device storage was not feasible for this project. We wanted to be able to save the videos in order to go back and view them later, but again the processing power of the netbook prevented us from accomplishing this goal. It became

10 apparent that streaming the video and movement commands was too much for the Hummer to handle and adding the recording of the video was not going to be a possibility. Elevator Accessibility: The elevator accessibility was partially met. We designed a circuit (Figure 9) to allow the Hummer to push an elevator button with a solenoid. The Hummer had an infrared transmitter onboard and a receiving circuit was attached to the wall, leading to solenoids located over the elevator buttons. The idea was to send a binary code through infrared transmission, which would be interpreted by digital logic. Based on the code received, the logic would activate the corresponding solenoid. To implement this idea we had an infrared detector lead to a Schmidt Trigger which would define a logic high and low level. This output went to a ripple counter, which would count on every falling edge. The count was converted to a binary number, which was fed into logic gates to drive the corresponding solenoid. However, a major problem that was not predicted occurred. The output of the Schmidt Trigger had hysteresis along with noise on the falling edges of the clock counts, which in turn created incorrect counts. The inability to accurately count prevented us from using this concept. Figure 9: Original Circuit Design A proof of concept circuit (Figure 10) was created instead. The same photo detecting circuit was implemented and the output became the input of a voltage comparator that was constructed using an LM 311 operational amplifier. The voltage comparator had a threshold voltage of 350 mv. This ensured that when infrared was not sent the comparator would output 0 volts, or a logic low. When infrared was received and the voltage exceeded the threshold, a 5 volt logic high was outputted. This was sent to a 12 volt relay, which activated the solenoid simulating a button press on an elevator. The implement circuit is shown in Figure 11.

11 Evaluation: Our original problem statement outlined how first responders and safety personnel cannot enter an unknown area and survey it in a safe and timely manner. Knowing this, we designed a way to take out the human factor. The proposed problem solution was to be able to control a vehicle from a remote location and do the necessary work. Accomplishing our project goals allowed us to do just that. Wireless transmission between the Hummer used and the remote computer allowed us to safely survey an unknown area. For the purposes of this project, we used Kingsbury Hall to test the functionality of the Hummer. Video and audio transmission allowed the user to see and hear everything that the Hummer was able to see and hear. Obstacle detection was implemented so that the Hummer would automatically stop moving if the remote user was trying to drive it into an unseen wall or obstruction. Accomplishing these goals was a good way to simulate how the Hummer could actually be used in a real life scenario. There were a couple aspects of the project that we would have completed differently if given the opportunity. The first would have been to use a more powerful computer rather than use the netbook. A more powerful computer could have allowed for simultaneous movement and video feedback as we believe the netbook could not process the information fast enough. The second aspect would be to use a different camera. We feel as though the camera could have been better, but understand it was only for proof of concept. A superior camera may have yielded better picture quality at the receiving end. Given the opportunity to continue working on this project, we would finish implementing the relative motion detection, create a user friendly GUI, and continue debugging the original elevator accessibility design. If this project were to continue through another senior project team, several enhancements could be made. One enhancement could include controlling the Hummer from something other than a computer, for example a tablet, ipod, or Smartphone. A second possible enhancement could be to have the Hummer move autonomously. Moving autonomously removes the need for human interaction. If the Hummer was able to map out the interior of a building, it would know where to go and how to get there before a human did. This project was an excellent experience for us. We gained a lot of usable experience in designing and troubleshooting circuits that directly related to our project. We learned how to write a project proposal, stay within the proposed budget and how to use meetings effectively to keep everyone up to date and on track. We found out how difficult it is to stick to a week by week timeline that was created in the beginning of the year. Most of the goals were accomplished by the end of the year, but not everything matched perfectly to the timeline. Overall, the project was successful and it was a lot of fun.

Autonomously Controlled Front Loader Senior Project Proposal

Autonomously Controlled Front Loader Senior Project Proposal Autonomously Controlled Front Loader Senior Project Proposal by Steven Koopman and Jerred Peterson Submitted to: Dr. Schertz, Dr. Anakwa EE 451 Senior Capstone Project December 13, 2007 Project Summary:

More information

M:2:I Milestone 2 Final Installation and Ground Test

M:2:I Milestone 2 Final Installation and Ground Test Iowa State University AerE 294X/AerE 494X Make to Innovate M:2:I Milestone 2 Final Installation and Ground Test Author(s): Angie Burke Christopher McGrory Mitchell Skatter Kathryn Spierings Ryan Story

More information

University of New Hampshire: FSAE ECE Progress Report

University of New Hampshire: FSAE ECE Progress Report University of New Hampshire: FSAE ECE Progress Report Team Members: Christopher P. Loo & Joshua L. Moran Faculty Advisor: Francis C. Hludik, Jr., M.S. Courses Involved: ECE 541, ECE 543, ECE 562, ECE 633,

More information

High Level Design ElecTrek

High Level Design ElecTrek High Level Design ElecTrek EE Senior Design November 9, 2010 Katie Heinzen Kathryn Lentini Neal Venditto Nicole Wehner Table of Contents 1 Introduction...3 2 Problem Statement and Proposed Solution...3

More information

MIPRover: A Two-Wheeled Dynamically Balancing Mobile Inverted Pendulum Robot

MIPRover: A Two-Wheeled Dynamically Balancing Mobile Inverted Pendulum Robot ECE 3992 Senior Project Proposal MIPRover: A Two-Wheeled Dynamically Balancing Mobile Inverted Pendulum Robot 6 May 2005 Prepared By: Kevin E. Waters Department of Electrical and Computer Engineering University

More information

Beyond Standard. Dynamic Wheel Endurance Tester. Caster Concepts, Inc. Introduction: General Capabilities: Written By: Dr.

Beyond Standard. Dynamic Wheel Endurance Tester. Caster Concepts, Inc. Introduction: General Capabilities: Written By: Dr. Dynamic Wheel Endurance Tester Caster Concepts, Inc. Written By: Dr. Elmer Lee Introduction: This paper details the functionality and specifications of the Dynamic Wheel Endurance Tester (DWET) developed

More information

Implementation of a Grid Connected Solar Inverter with Maximum Power Point Tracking

Implementation of a Grid Connected Solar Inverter with Maximum Power Point Tracking ECE 4600 GROUP DESIGN PROJECT PROGRESS REPORT GROUP 03 Implementation of a Grid Connected Solar Inverter with Maximum Power Point Tracking Authors Radeon Shamilov Kresta Zumel Valeria Pevtsov Reza Fazel-Darbandi

More information

Vehicle Diagnostic Logging Device

Vehicle Diagnostic Logging Device UCCS SENIOR DESIGN Vehicle Diagnostic Logging Device Design Requirements Specification Prepared by Mackenzie Lowrance, Nick Hermanson, and Whitney Watson Sponsor: Tyson Hartshorn with New Planet Technologies

More information

GCAT. University of Michigan-Dearborn

GCAT. University of Michigan-Dearborn GCAT University of Michigan-Dearborn Mike Kinnel, Joe Frank, Siri Vorachaoen, Anthony Lucente, Ross Marten, Jonathan Hyland, Hachem Nader, Ebrahim Nasser, Vin Varghese Department of Electrical and Computer

More information

Table of Contents. Abstract... Pg. (2) Project Description... Pg. (2) Design and Performance... Pg. (3) OOM Block Diagram Figure 1... Pg.

Table of Contents. Abstract... Pg. (2) Project Description... Pg. (2) Design and Performance... Pg. (3) OOM Block Diagram Figure 1... Pg. March 5, 2015 0 P a g e Table of Contents Abstract... Pg. (2) Project Description... Pg. (2) Design and Performance... Pg. (3) OOM Block Diagram Figure 1... Pg. (4) OOM Payload Concept Model Figure 2...

More information

GPS Robot Navigation Bi-Weekly Report 2/07/04-2/21/04. Chris Foley Kris Horn Richard Neil Pittman Michael Willis

GPS Robot Navigation Bi-Weekly Report 2/07/04-2/21/04. Chris Foley Kris Horn Richard Neil Pittman Michael Willis GPS Robot Navigation Bi-Weekly Report 2/07/04-2/21/04 Chris Foley Kris Horn Richard Neil Pittman Michael Willis GPS Robot Navigation Bi-Weekly Report 2/07/04-2/21/04 Goals for Two Week Period For the first

More information

The Lug-n-Go. Team #16: Anika Manzo ( ammanzo2), Brianna Szczesuil (bszcze4), Gregg Lugo ( gclugo2) ECE445 Project Proposal: Spring 2018

The Lug-n-Go. Team #16: Anika Manzo ( ammanzo2), Brianna Szczesuil (bszcze4), Gregg Lugo ( gclugo2) ECE445 Project Proposal: Spring 2018 The Lug-n-Go Team #16: Anika Manzo ( ammanzo2), Brianna Szczesuil (bszcze4), Gregg Lugo ( gclugo2) ECE445 Project Proposal: Spring 2018 TA: Mickey Zhang Introduction 1.1 Problem Statement and Objective

More information

UNIVERSITÉ DE MONCTON FACULTÉ D INGÉNIERIE. Moncton, NB, Canada PROJECT BREAKPOINT 2015 IGVC DESIGN REPORT UNIVERSITÉ DE MONCTON ENGINEERING FACULTY

UNIVERSITÉ DE MONCTON FACULTÉ D INGÉNIERIE. Moncton, NB, Canada PROJECT BREAKPOINT 2015 IGVC DESIGN REPORT UNIVERSITÉ DE MONCTON ENGINEERING FACULTY FACULTÉ D INGÉNIERIE PROJECT BREAKPOINT 2015 IGVC DESIGN REPORT UNIVERSITÉ DE MONCTON ENGINEERING FACULTY IEEEUMoncton Student Branch UNIVERSITÉ DE MONCTON Moncton, NB, Canada 15 MAY 2015 1 Table of Content

More information

Linear Induction Motor (LIMO) Modular Test Bed for Various Applications

Linear Induction Motor (LIMO) Modular Test Bed for Various Applications Linear Induction Motor (LIMO) Modular Test Bed for Various Applications ECE 4901 Senior Design I Fall 2013 Fall Project Report Team 190 Members: David Hackney Jonathan Rarey Julio Yela Faculty Advisor

More information

Stationary Bike Generator System (Drive Train)

Stationary Bike Generator System (Drive Train) Central Washington University ScholarWorks@CWU All Undergraduate Projects Undergraduate Student Projects Summer 2017 Stationary Bike Generator System (Drive Train) Abdullah Adel Alsuhaim cwu, 280zxf150@gmail.com

More information

Department of Electrical and Computer Science

Department of Electrical and Computer Science Department of Electrical and Computer Science Howard University Washington, DC 20059 EECE 401 & 402 Senior Design Final Report By Team AutoMoe Tavares Kidd @ 02744064 Lateef Adetona @02732398 Jordan Lafontant

More information

Engineering Fundamentals Final Project Engineering Lab Report

Engineering Fundamentals Final Project Engineering Lab Report Engineering Fundamentals Final Project Engineering Lab Report 4/26/09 Tony Carr Christopher Goggans Zach Maxey Matt Rhule Team Section A2-6 Engineering Fundamentals 151 I have read and approved of the

More information

Laser Tag Droid. Jake Hamill, Martin Litwiller, Christian Topete ECE 445 Project Proposal

Laser Tag Droid. Jake Hamill, Martin Litwiller, Christian Topete ECE 445 Project Proposal Laser Tag Droid Jake Hamill, Martin Litwiller, Christian Topete ECE 445 Project Proposal 1. Introduction 1.1 Objective Our proposed project is to design, build, and test a remote control laser tag droid

More information

Introduction to Computers and Engineering Problem Solving Spring 2012 Problem Set 8: Rail switching Due: 12 noon, Friday, April 27, 2012

Introduction to Computers and Engineering Problem Solving Spring 2012 Problem Set 8: Rail switching Due: 12 noon, Friday, April 27, 2012 Introduction to Computers and Engineering Problem Solving Spring 2012 Problem Set 8: Rail switching Due: 12 noon, Friday, April 27, 2012 1. Problem Statement Railroads use radio remote control systems

More information

Table of Contents. Executive Summary...4. Introduction Integrated System...6. Mobile Platform...7. Actuation...8. Sensors...9. Behaviors...

Table of Contents. Executive Summary...4. Introduction Integrated System...6. Mobile Platform...7. Actuation...8. Sensors...9. Behaviors... TaleGator Nyal Jennings 4/22/13 University of Florida Email: Magicman01@ufl.edu TAs: Ryan Chilton Josh Weaver Instructors: Dr. A. Antonio Arroyo Dr. Eric M. Schwartz Table of Contents Abstract...3 Executive

More information

EGG 101L INTRODUCTION TO ENGINEERING EXPERIENCE

EGG 101L INTRODUCTION TO ENGINEERING EXPERIENCE EGG 101L INTRODUCTION TO ENGINEERING EXPERIENCE LABORATORY 11: AUTOMATED CAR PROJECT DEPARTMENT OF ELECTRICAL AND COMPUTER ENGINEERING UNIVERSITY OF NEVADA, LAS VEGAS GOAL: This section combines the motor

More information

Slippage Detection and Traction Control System

Slippage Detection and Traction Control System Slippage Detection and Traction Control System May 10, 2004 Sponsors Dr. Edwin Odom U of I Mechanical Engineering Department Advisors Dr. Jim Frenzel Dr. Richard Wall Team Members Nick Carter Kellee Korpi

More information

Caliber: Road Quality Profiling

Caliber: Road Quality Profiling Caliber: Road Quality Profiling Capstone Design Specification Samuel Quintana John Spencer James Uttaro Damien Hobday CSc 59866 : Senior Design Professor: Jie Wei Brief Team Caliber wants to map the quality

More information

Initial Project and Group Identification Document. Metal detecting robotic vehicle (seek and find metallic objects using a robotic vehicle)

Initial Project and Group Identification Document. Metal detecting robotic vehicle (seek and find metallic objects using a robotic vehicle) Initial Project and Group Identification Document Project Idea: Metal detecting robotic vehicle (seek and find metallic objects using a robotic vehicle) Team Members: Robertson Augustine (Computer Engineer)

More information

Detection of rash driving on highways

Detection of rash driving on highways Detection of rash driving on highways 1 Ladly Patel, 2 Kumar Abhishek Gaurav, 3 Dr. Revathi V 1,2 Mtech. CSE (Big Data & IoT), 3 Associate Professor Dayananda Sagar University, Bengaluru, India Abstract-

More information

Detailed Design Review

Detailed Design Review Detailed Design Review P16241 AUTONOMOUS PEOPLE MOVER PHASE III Team 2 Agenda Problem Definition Review Background Problem Statement Project Scope Customer Requirements Engineering Requirements Detailed

More information

2018 KANSAS BEST BREAKOUT SESSIONS

2018 KANSAS BEST BREAKOUT SESSIONS 2018 KANSAS BEST BREAKOUT SESSIONS Tips for Building a Robot Bryan Jaax September 8, 2018 1 ST STEP: READ the RULES and Technical Data Package 2 FOLLOW AN ENGINEERING PROCESS Define the Problem Brainstorm:

More information

Alan Kilian Spring Design and construct a Holonomic motion platform and control system.

Alan Kilian Spring Design and construct a Holonomic motion platform and control system. Alan Kilian Spring 2007 Design and construct a Holonomic motion platform and control system. Introduction: This project is intended as a demonstration of my skills in four specific areas: Power system

More information

QUICK START GUIDE FOR ACCESS CONTROL BOARDS. DX Series Four Door TCP/IP Web Server Controller. Model: ACP-DXEL4

QUICK START GUIDE FOR ACCESS CONTROL BOARDS. DX Series Four Door TCP/IP Web Server Controller. Model: ACP-DXEL4 QUICK START GUIDE FOR ACCESS CONTROL BOARDS DX Series Four Door TCP/IP Web Server Controller Model: ACP-DXEL Table of Contents 0- Introduction 0 - Overview 0. - Package Contents 0. - Installation Requirements

More information

Evaluating Stakeholder Engagement

Evaluating Stakeholder Engagement Evaluating Stakeholder Engagement Peace River October 17, 2014 Stakeholder Engagement: The Panel recognizes that although significant stakeholder engagement initiatives have occurred, these efforts were

More information

Welcome to the world of fischertechnik's ROBOTICS line 3 Some General Information 3. Component Explanations 4

Welcome to the world of fischertechnik's ROBOTICS line 3 Some General Information 3. Component Explanations 4 Welcome to the world of fischertechnik's ROBOTICS line 3 Some General Information 3 Electricity 3 Robots, Artificial Humans? 4 ROBOTICS, (Almost) Everything Automatic 4 Component Explanations 4 ROBOTICS

More information

Car Jackers - Project Proposal CS 3992 (Spring 2012) Team members: Jeremy Bonnell Tong Wu

Car Jackers - Project Proposal CS 3992 (Spring 2012) Team members: Jeremy Bonnell Tong Wu Car Jackers - Project Proposal CS 3992 (Spring 2012) Team members: Jeremy Bonnell Tong Wu I. Functional Description The Car Jacker has 3 basic functions controlled via a wireless phone: the remote start/

More information

AC : SMART GRID DEVELOPMENT IN ELECTRICAL DIS- TRIBUTION NETWORK

AC : SMART GRID DEVELOPMENT IN ELECTRICAL DIS- TRIBUTION NETWORK AC 2011-2689: SMART GRID DEVELOPMENT IN ELECTRICAL DIS- TRIBUTION NETWORK Saeed Sean Monemi, California State Polytechnic University, Pomona Dr. Saeed Sean Monemi is a professor of Electrical and Computer

More information

Palos Verdes High School 1

Palos Verdes High School 1 Abstract: The Palos Verdes High School Institute of Technology (PVIT) Unmanned Aerial Vehicle team is proud to present Condor. Condor is a hexacopter weighing in at 1664g including the 4 cell 11.1 volt,

More information

Issue 2.0 December EPAS Midi User Manual EPAS35

Issue 2.0 December EPAS Midi User Manual EPAS35 Issue 2.0 December 2017 EPAS Midi EPAS35 CONTENTS 1 Introduction 4 1.1 What is EPAS Desktop Pro? 4 1.2 About This Manual 4 1.3 Typographical Conventions 5 1.4 Getting Technical Support 5 2 Getting Started

More information

TROUBLESHOOTING AND MAINTAINING ELECTRONIC KILN CONTROL SYSTEMS

TROUBLESHOOTING AND MAINTAINING ELECTRONIC KILN CONTROL SYSTEMS TROUBLESHOOTING AND MAINTAINING ELECTRONIC KILN CONTROL SYSTEMS Tom Salicos American Wood Dryers Clackamas, Oregon After many years of helping American Wood Dryers' customers troubleshoot dry kiln control

More information

2015 AUVSI UAS Competition Journal Paper

2015 AUVSI UAS Competition Journal Paper 2015 AUVSI UAS Competition Journal Paper Abstract We are the Unmanned Aerial Systems (UAS) team from the South Dakota School of Mines and Technology (SDSM&T). We have built an unmanned aerial vehicle (UAV)

More information

NJAV New Jersey Autonomous Vehicle

NJAV New Jersey Autonomous Vehicle The Autonomous Vehicle Team from TCNJ Presents: NJAV New Jersey Autonomous Vehicle Team Members Mark Adkins, Cynthia De Rama, Jodie Hicks, Kristen Izganics, Christopher Macock, Stephen Saudargas, Brett

More information

BEGINNER EV3 PROGRAMMING LESSON 1

BEGINNER EV3 PROGRAMMING LESSON 1 BEGINNER EV3 PROGRAMMING LESSON 1 Intro to Brick and Software, Moving Straight, Turning By: Droids Robotics www.ev3lessons.com SECTION 1: EV3 BASICS THE BRICK BUTTONS 1 = Back Undo Stop Program Shut Down

More information

AC : USE OF POWER WHEELS CAR TO ILLUSTRATE ENGI- NEERING PRINCIPLES

AC : USE OF POWER WHEELS CAR TO ILLUSTRATE ENGI- NEERING PRINCIPLES AC 2011-2029: USE OF POWER WHEELS CAR TO ILLUSTRATE ENGI- NEERING PRINCIPLES Dr. Howard Medoff, Pennsylvania State University, Ogontz Campus Associate Professor of Engineering, Penn State Abington Research

More information

Automated Vehicle Anti-Theft Security System

Automated Vehicle Anti-Theft Security System Senior Design I Initial Project and Group Identification Document Divide and Conquer 09/09/16 Automated Vehicle Anti-Theft Security System University of Central Florida Department of Electrical Engineering

More information

IDL Dragonfly Manual

IDL Dragonfly Manual 2015 IDL-20003 Dragonfly Manual FIRMWARE VERSION 3.00 IRIS DYNAMICS LTD. IDL-20003 Manual IrisDynamics.com V1.00 December, 2015 IDL-20003 Manual IrisDynamics.com V1.00 December, 2015 Unpacking, Setup,

More information

How to Choose a Truck Scale Intercom System

How to Choose a Truck Scale Intercom System How to Choose a Truck Scale Intercom System IntercomsOnline.com When drivers pull on to a truck scale, there often needs to be some form of communication so they know what's expected of them. There are

More information

Introduction: Problem statement

Introduction: Problem statement Introduction: Problem statement The goal of this project is to develop a catapult system that can be used to throw a squash ball the farthest distance and to be able to have some degree of accuracy with

More information

2016 IGVC Design Report Submitted: May 13, 2016

2016 IGVC Design Report Submitted: May 13, 2016 2016 IGVC Design Report Submitted: May 13, 2016 I certify that the design and engineering of the vehicle by the current student team has been significant and equivalent to what might be awarded credit

More information

Final Report. James Buttice B.L.a.R.R. EEL 5666L Intelligent Machine Design Laboratory. Instructors: Dr. A Antonio Arroyo and Dr. Eric M.

Final Report. James Buttice B.L.a.R.R. EEL 5666L Intelligent Machine Design Laboratory. Instructors: Dr. A Antonio Arroyo and Dr. Eric M. Final Report James Buttice B.L.a.R.R. EEL 5666L Intelligent Machine Design Laboratory Instructors: Dr. A Antonio Arroyo and Dr. Eric M. Schwartz Teaching Assistants: Mike Pridgen and Thomas Vermeer Table

More information

SMART ROBOT USING RASPBERRY PI AND NODEMCU

SMART ROBOT USING RASPBERRY PI AND NODEMCU SMART ROBOT USING RASPBERRY PI AND NODEMCU Mr. Rahul R Moorkath 1, Mr. Narshi P Parmar 2, Mr. Piyush J Prajapati 3, Mr. Milan A Goswami 4, Prof. Rajnikant P Sandhani 5 1,2,3,4 Student, Department of E&C

More information

INTRODUCTION... 3 REQUIREMENTS... 3 SPECIFICATIONS... 4 DESIGN APPROACH... 5 PRODUCT COST ANALYSIS... 7 STATEMENT OF WORK... 8 SCHEDULES...

INTRODUCTION... 3 REQUIREMENTS... 3 SPECIFICATIONS... 4 DESIGN APPROACH... 5 PRODUCT COST ANALYSIS... 7 STATEMENT OF WORK... 8 SCHEDULES... Table of Contents INTRODUCTION... 3 REQUIREMENTS... 3 HAND... 3 CONTROL GLOVE... 3 TRANSMITTER AND RECEIVER... 3 PROGRAM... 4 BLOCK DIAGRAM... 4 SPECIFICATIONS... 4 DESIGN APPROACH... 5 THE CONTROL GLOVE...

More information

2016 Car Tech Impact Study. January 2016

2016 Car Tech Impact Study. January 2016 2016 Car Tech Impact Study January 2016 Objectives & Methodology Objectives Identify vehicle technologies that are currently being used and that are must haves for future vehicle purchases Determine how

More information

ENGINEERING FOR HUMANS STPA ANALYSIS OF AN AUTOMATED PARKING SYSTEM

ENGINEERING FOR HUMANS STPA ANALYSIS OF AN AUTOMATED PARKING SYSTEM ENGINEERING FOR HUMANS STPA ANALYSIS OF AN AUTOMATED PARKING SYSTEM Massachusetts Institute of Technology John Thomas Megan France General Motors Charles A. Green Mark A. Vernacchia Padma Sundaram Joseph

More information

Lesson Plan: Electricity and Magnetism (~100 minutes)

Lesson Plan: Electricity and Magnetism (~100 minutes) Lesson Plan: Electricity and Magnetism (~100 minutes) Concepts 1. Electricity and magnetism are fundamentally related. 2. Just as electric charge produced an electric field, electric current produces a

More information

ISA Intimidator. July 6-8, Coronado Springs Resort Walt Disney World, Florida

ISA Intimidator. July 6-8, Coronado Springs Resort Walt Disney World, Florida ISA Intimidator 10 th Annual Intelligent Ground Vehicle Competition July 6-8, 2002- Coronado Springs Resort Walt Disney World, Florida Faculty Advisor Contact Roy Pruett Bluefield State College 304-327-4037

More information

2 nd Generation Charging Station

2 nd Generation Charging Station 2 nd Generation Charging Station By Jasem Alhabashy, Riyadh Alzahrani, Brandon Gabrelcik, Ryan Murphy and Ruben Villezcas Team 13 Progress Report for ME486c Document Submitted towards partial fulfillment

More information

Autonomous Dog Entertainment

Autonomous Dog Entertainment Autonomous Dog Entertainment By Mary Abbott Aimee Rogala Robert Scheuneman Proposal for ECE 445, Senior Design, Spring 2017 TA: Luke Wendt 8February2017 Project No. 16 Contents 1 Introduction...............................................................

More information

BASIC ELECTRICAL MEASUREMENTS By David Navone

BASIC ELECTRICAL MEASUREMENTS By David Navone BASIC ELECTRICAL MEASUREMENTS By David Navone Just about every component designed to operate in an automobile was designed to run on a nominal 12 volts. When this voltage, V, is applied across a resistance,

More information

Starter Robot Kit IR Version. Robot Tank Three-wheeled Robot Car

Starter Robot Kit IR Version. Robot Tank Three-wheeled Robot Car D1.1.1_M402010088 USER MANUAL Starter Robot Kit IR Version Robot Tank Three-wheeled Robot Car Quick Guide Warning: Keep this kit out of the reach of small children or animals. Small parts may cause choking

More information

Embodied Speech and Facial Expression Avatar Progress Report 1

Embodied Speech and Facial Expression Avatar Progress Report 1 Embodied Speech and Facial Expression Avatar Progress Report 1 Presented to Professor Ricardo Gutierrez-Osuna on February 23, 2004 by Dan Harbin - Evan Zoss - Jaclyn Tech - Brent Sicking - 1 - Table of

More information

Your web browser (Safari 7) is out of date. For more security, comfort and. the best experience on this site: Update your browser Ignore

Your web browser (Safari 7) is out of date. For more security, comfort and. the best experience on this site: Update your browser Ignore Your web browser (Safari 7) is out of date. For more security, comfort and Activitydevelop the best experience on this site: Update your browser Ignore Circuits with Friends What is a circuit, and what

More information

MaxSonar Operation on a Multi-Copter

MaxSonar Operation on a Multi-Copter maxbotix.com http://www.maxbotix.com/articles/067.htm MaxSonar Operation on a Multi-Copter MaxBotix Inc., sensors have been successfully used on a number of multi- copters. Multi- copters are also called

More information

Impact of High Photo-Voltaic Penetration on Distribution Systems. Design Document

Impact of High Photo-Voltaic Penetration on Distribution Systems. Design Document Impact of High Photo-Voltaic Penetration on Distribution Systems Design Document DEC1614 Alliant Energy Dr. Venkataramana Ajjarapu Logan Heinen/Team Leader Difeng Liu/Team Webmaster Zhengyu Wang/Team Communication

More information

Thank you for buying an Alien Power System (APS) product. WARNING: Product Features:

Thank you for buying an Alien Power System (APS) product. WARNING: Product Features: Thank you for buying an Alien Power System (APS) product. Please follow the instructions to program your controller. Incorrect handling may cause damage to the controller and cause injury to yourself and

More information

Abstract. GLV Systems Test Plan 1

Abstract. GLV Systems Test Plan 1 GLV Systems Test Plan 1 Abstract This document details the acceptance test plan for the Grounded Low Voltage system being developed for the LFEV design project. This is only a test plan draft, and will

More information

Electrical Dump Truck 980E-4

Electrical Dump Truck 980E-4 Introduction of Products Electrical Dump Truck 980E-4 Tom Wisely Jeff Seiwell Doug Surrat Komatsu identified a product gap in the large truck market. We recognized a customer shift with the 360t (960E-2/2K)

More information

ZT-USB Series User Manual

ZT-USB Series User Manual ZT-USB Series User Manual Warranty Warning Copyright All products manufactured by ICP DAS are under warranty regarding defective materials for a period of one year, beginning from the date of delivery

More information

P15044 Intelligent Mobility Cane

P15044 Intelligent Mobility Cane P15044 Intelligent Mobility Cane Name Major Role Allan Andranikian ME Lead Engineer Andrew Greeley ME Vibrations Lead Ben Stewart EE Sensors Lead Dan Chianucci CE Controls Lead Justine Nichols IE Project

More information

Automated Seat Belt Switch Defect Detector

Automated Seat Belt Switch Defect Detector pp. 10-16 Krishi Sanskriti Publications http://www.krishisanskriti.org/publication.html Automated Seat Belt Switch Defect Detector Department of Electrical and Computer Engineering, Sri Lanka Institute

More information

The Automatic Can Crusher

The Automatic Can Crusher The Automatic Can Crusher Brandon Jefferson and Stanley Andrews Dept. of Electrical Engineering and Computer Science, University of Central Florida, Orlando, Florida, 32816-2450 (12 point Times font) ABSTRACT

More information

Princess Sumaya University for Technology

Princess Sumaya University for Technology IGVC2014-E500 Princess Sumaya University for Technology Hamza Al-Beeshawi, Enas Al-Zmaili Raghad Al-Harasis, Moath Shreim Jamille Abu Shash Faculty Name:Dr. Belal Sababha Email:b.sababha@psut.edu.jo I

More information

EGG 101L INTRODUCTION TO ENGINEERING EXPERIENCE

EGG 101L INTRODUCTION TO ENGINEERING EXPERIENCE EGG 101L INTRODUCTION TO ENGINEERING EXPERIENCE LABORATORY 8: DC MOTOR CONTROL DEPARTMENT OF ELECTRICAL AND COMPUTER ENGINEERING UNIVERSITY OF NEVADA, LAS VEGAS GOAL: This section will introduce DC motors

More information

Project Report Cover Page

Project Report Cover Page New York State Pollution Prevention Institute R&D Program 2015-2016 Student Competition Project Report Cover Page University/College Name Team Name Team Member Names SUNY Buffalo UB-Engineers for a Sustainable

More information

Eurathlon Scenario Application Paper (SAP) Review Sheet

Eurathlon Scenario Application Paper (SAP) Review Sheet Scenario Application Paper (SAP) Review Sheet Team/Robot Scenario FKIE Autonomous Navigation For each of the following aspects, especially concerning the team s approach to scenariospecific challenges,

More information

BASIC MECHATRONICS ENGINEERING

BASIC MECHATRONICS ENGINEERING MBEYA UNIVERSITY OF SCIENCE AND TECHNOLOGY Lecture Summary on BASIC MECHATRONICS ENGINEERING NTA - 4 Mechatronics Engineering 2016 Page 1 INTRODUCTION TO MECHATRONICS Mechatronics is the field of study

More information

DRIVERLESS SCHOOL BUS

DRIVERLESS SCHOOL BUS World Robot Olympiad 2019 WeDo Open Category Game Description, Rules and Evaluation SMART CITIES DRIVERLESS SCHOOL BUS Version: January 15 th WRO International Premium Partners INTRODUCTION... 2 1. CHALLENGE

More information

ROBOTICS BUILDING BLOCKS

ROBOTICS BUILDING BLOCKS ROBOTICS BUILDING BLOCKS 2 CURRICULUM MAP Page Title...Section Estimated Time (minutes) Robotics Building Blocks 0 2 Imaginations Coming Alive 5...Robots - Changing the World 5...Amazing Feat 5...Activity

More information

8051 MICRO-CONTROLLER BASED ROBOTIC CAR

8051 MICRO-CONTROLLER BASED ROBOTIC CAR 8051 MICRO-CONTROLLER BASED ROBOTIC CAR Robotic Car is a miniature prototype car powered by batteries whose various movements can be control either manually or automatically, or the combination of both.

More information

SUMMER PROJECT ROBOTICS CLUB, IIT KANPUR

SUMMER PROJECT ROBOTICS CLUB, IIT KANPUR SUMMER PROJECT ROBOTICS CLUB, IIT KANPUR 2013 AUTONOMOUS UNDERWATER VEHICLE Mentor - Dhrupal R. Shah Hall-10 Mob:-8765696060 Members Prakhar Jain Hall-5 Mob:-9807885652 Pranav Vyas Hall-3 Mob:-9695796655

More information

LETTER TO PARENTS SCIENCE NEWS. Dear Parents,

LETTER TO PARENTS SCIENCE NEWS. Dear Parents, LETTER TO PARENTS Cut here and paste onto school letterhead before making copies. Dear Parents, SCIENCE NEWS Our class is beginning a new science unit using the FOSS Magnetism and Electricity Module. We

More information

Problem Definition Review

Problem Definition Review Problem Definition Review P16241 AUTONOMOUS PEOPLE MOVER PHASE III Team Agenda Background Problem Statement Stakeholders Use Scenario Customer Requirements Engineering Requirements Preliminary Schedule

More information

Quick Guide. Unipro Laptimer Version September Go faster faster. UNIPRO ApS

Quick Guide. Unipro Laptimer Version September Go faster faster. UNIPRO ApS Quick Guide Unipro Laptimer 6003 Version 1.45 5. September 2009 Go faster faster UNIPRO ApS VIBORG HOVEDVEJ 24 DK-7100 VEJLE DENMARK Tel.: +45 75 85 11 82 Fax: +45 75 85 17 82 www.uniprolaptimer.com mail@uniprolaptimer.com

More information

ELG4126: Case Study 2 Hybrid System Design and Installation

ELG4126: Case Study 2 Hybrid System Design and Installation ELG4126: Case Study 2 Hybrid System Design and Installation Diesel Driven Generator Life Cycle Costing Photovoltaic Cells, Modules, and Arrays Possibility of Integrating Fuel Cells and Wind Turbines Environmental

More information

ROBOT C CHALLENGE DESIGN DOCUMENT TEAM NAME. Sample Design Document. Bolt EVA. Lightning. RoboGirls. Cloud9. Femmebots

ROBOT C CHALLENGE DESIGN DOCUMENT TEAM NAME. Sample Design Document. Bolt EVA. Lightning. RoboGirls. Cloud9. Femmebots ROBOT C CHALLENGE DESIGN DOCUMENT TEAM NAME (SELECT TEAM NAME TO NAVIGATE TO THE TEAM S DESIGN DOCUMENT) Sample Design Document Bolt EVA Lightning RoboGirls Cloud9 Femmebots SAMPLE ROBOT C DESIGN DOCUMENT

More information

Re: ENSC 305W/440W Design Specification RAHS (Remote Automotive Heating System)

Re: ENSC 305W/440W Design Specification RAHS (Remote Automotive Heating System) March 19, 2015 School of Engineering Science Simon Fraser University Burnaby, British Columbia V5A 1S6 Attn: Dr. Andrew Rawicz Re: ENSC 305W/440W Design Specification RAHS (Remote Automotive Heating System)

More information

Sensor Suit for the Visually Impaired

Sensor Suit for the Visually Impaired Sensor Suit for the Visually Impaired Proposed Completion Date 2013 People today that are visually impaired at birth or by misfortune have few options for methods of getting around in their every-day lives.

More information

Application Note. First trip test. A circuit breaker spends most of its lifetime conducting current without any

Application Note. First trip test. A circuit breaker spends most of its lifetime conducting current without any Application Note First trip test A circuit breaker spends most of its lifetime conducting current without any operation. Once the protective relay detects a problem, the breaker that was idle for maybe

More information

Intelligent Transportation Systems. Secure solutions for smart roads and connected highways. Brochure Intelligent Transportation Systems

Intelligent Transportation Systems. Secure solutions for smart roads and connected highways. Brochure Intelligent Transportation Systems Intelligent Transportation Systems Secure solutions for smart roads and connected highways Secure solutions for smart roads and connected highways Today s technology is delivering new opportunities for

More information

Second Generation Bicycle Recharging Station

Second Generation Bicycle Recharging Station Second Generation Bicycle Recharging Station By Jasem Alhabashy, Riyadh Alzahrani, Brandon Gabrelcik, Ryan Murphy and Ruben Villezcas Team 13 Final Report For ME486c Document Submitted towards partial

More information

Journal of Emerging Trends in Computing and Information Sciences

Journal of Emerging Trends in Computing and Information Sciences Pothole Detection Using Android Smartphone with a Video Camera 1 Youngtae Jo *, 2 Seungki Ryu 1 Korea Institute of Civil Engineering and Building Technology, Korea E-mail: 1 ytjoe@kict.re.kr, 2 skryu@kict.re.kr

More information

Folding Shopping Cart Design Report

Folding Shopping Cart Design Report Folding Shopping Cart Design Report EDSGN 100 Section 010, Team #4 Submission Date- 10/28/2013 Group Image with Prototype Submitted by: Arafat Hossain, Mack Burgess, Jake Covell, and Connor Pechko (in

More information

[Kadam*et al., 5(8):August, 2016] ISSN: IC Value: 3.00 Impact Factor: 4.116

[Kadam*et al., 5(8):August, 2016] ISSN: IC Value: 3.00 Impact Factor: 4.116 IJESRT INTERNATIONAL JOURNAL OF ENGINEERING SCIENCES & RESEARCH TECHNOLOGY VOICE GUIDED DRIVER ASSISTANCE SYSTEM BASED ON RASPBERRY-Pi Sonali Kadam, Sunny Surwade, S.S. Ardhapurkar* * Electronics and telecommunication

More information

Wi-Fi Enabled Motorized Windows for Automatic Climate Control

Wi-Fi Enabled Motorized Windows for Automatic Climate Control ECE 445: Senior Design Spring 2017 Project Proposal Wi-Fi Enabled Motorized Windows for Automatic Climate Control Team 34 Trevor Bush (tsbush2) Alex Casino (casino2) Ryan Stark (rmstark3) TA: Kexin Hui

More information

INSTALLATION AND OPERATION INSTRUCTIONS

INSTALLATION AND OPERATION INSTRUCTIONS 120 Cat. No. H8863 Model: WS-S-TMR INSTALLATION AND OPERATION INSTRUCTIONS IF YOU CANNOT READ OR UNDERSTAND THESE INSTALLATION INSTRUCTIONS DO NOT ATTEMPT TO INSTALL OR OPERATE INTRODUCTION This remote

More information

Smart Traffic Lights

Smart Traffic Lights Smart Traffic Lights Supercomputing Challenge Final Report April 6, 2016 Team #81 Mountain Elementary Team Members: Titus de Jong Kyle Kenamond Marek Jablonski Team Mentors Mack Kenamond Bernard de Jong

More information

PLC BASED AUTOMATIC RAILWAY GATE CONTROLLER AND OBSTACLE DETECTOR

PLC BASED AUTOMATIC RAILWAY GATE CONTROLLER AND OBSTACLE DETECTOR Plc Based Automatic Railway Gate Controller And Obstacle Detector 133 International Journal of Latest Trends in Engineering and Technology Vol.(9)Issue(3), pp.133-139 DOI: http://dx.doi.org/10.21172/1.93.23

More information

Design and Hardware Implementation of a Supervisory Controller for a Wind Power Turbine

Design and Hardware Implementation of a Supervisory Controller for a Wind Power Turbine ECE 4600 Group Design Project Proposal Group 09 Design and Hardware Implementation of a Supervisory Controller for a Wind Power Turbine Supervisors Annakkage, Udaya D., P.Eng McNeill, Dean, P.Eng Bagen

More information

DEVELOPMENT OF LABORATORY MODULE FOR SMALL WIND TURBINE CONTROL SYSTEM

DEVELOPMENT OF LABORATORY MODULE FOR SMALL WIND TURBINE CONTROL SYSTEM DEVELOPMENT OF LABORATORY MODULE FOR SMALL WIND TURBINE CONTROL SYSTEM Project Plan Advisor/Client: Dr. Venkatarama Ajjarapu Achila Jayasuriya Adam Literski Eurydice Ulysses Josephine Namatovu Logeshwar

More information

Software Requirements Specification (SRS) Active Park Assist

Software Requirements Specification (SRS) Active Park Assist Software Requirements Specification (SRS) Active Park Assist Authors: David Kircos, Neha Gupta, Derrick Dunville, Anthony Laurain, Shane McCloskey Customer: Eileen Davidson, Ford Motor Company Instructor:

More information

Dr. Christopher Ganz, ABB, Group Vice President Extending the Industrial Intranet to the Internet of Things, Services, and People (EU6)

Dr. Christopher Ganz, ABB, Group Vice President Extending the Industrial Intranet to the Internet of Things, Services, and People (EU6) Dr. Christopher Ganz, ABB, Group Vice President Extending the Industrial Intranet to the Internet of Things, Services, and People (EU6) Slide 1 ABB paves the way for the big shifts Internet of Things,

More information

How Regenerative Braking Works

How Regenerative Braking Works Feature How Regenerative Braking Works The regenerative braking systems on Nissan hybrid vehicles can be confusing and misunderstood. Let s take a look at how these systems really work. 26 Nissan TechNews

More information

Implementation of telecontrol of solar home system based on Arduino via smartphone

Implementation of telecontrol of solar home system based on Arduino via smartphone IOP Conference Series: Materials Science and Engineering PAPER OPEN ACCESS Implementation of telecontrol of solar home system based on Arduino via smartphone To cite this article: B Herdiana and I F Sanjaya

More information

Segway with Human Control and Wireless Control

Segway with Human Control and Wireless Control Review Paper Abstract Research Journal of Engineering Sciences E- ISSN 2278 9472 Segway with Human Control and Wireless Control Sanjay Kumar* and Manisha Sharma and Sourabh Yadav Dept. of Electronics &

More information