Autonomous Battery Charging of Quadcopter

Size: px
Start display at page:

Download "Autonomous Battery Charging of Quadcopter"

Transcription

1 ECE 4901 Fall 2016 Project Proposal Autonomous Battery Charging of Quadcopter Thomas Baietto Electrical Engineering Gabriel Bautista Computer Engineering Ryan Oldham Electrical Engineering Yifei Song Electrical Engineering Sponsor: Professor Ashwin Dani, Ph.D. Assistant Professor Electrical and Computer Engineering University of Connecticut 347 Fairfield Way, U-4157 ITE-Building Storrs, CT

2 Summary Quadcopters have a limited flight time due to current battery supply limitations. Commercially available quadcopters typically last anywhere from 20 to 30 minutes on a single battery charge. Adding more batteries is not a desirable solution because increasing payload weight will consequently consume more power, ultimately reducing battery life and flight time. Our Design Team plans to develop a UAV system, specifically a quadcopter, which recharges itself without any need for human interaction. For this design project, we plan to develop an autonomous system that can navigate our quadcopter to charging station, charging the quadcopter battery without any human assistance. We have split this design project into two sections. Section one is the software design, which will allow for autonomous flight and docking of our quadcopter with the charging station. The second section is the hardware design that is needed in a charging system that will fully recharge the drones battery in a timely manner. Background Unmanned Aerial Vehicles (UAV) provide aerial surveillance at an affordable cost with easy to learn controls. UAVs have grown increasingly popular over the last decade causing a high demand to continuously improve their functionality. Current UAV technology is severely restricted by battery storage capacity and requires frequent human interaction between sessions to manually recharge a battery. A quadcopter is a class of UAV similar in design to that of a helicopter. Quadcopters are composed of four vertically oriented rotors attached to a frame, each controlled by their own individual motor. Flight is made possible by altering the thrust generated from each rotor according to feedback collected through a collection of sensors and commands. Software can be implemented to automatically send commands to the quadcopter motors based off of the sensory information collected onboard. This automated system can be developed to navigate our quadcopter to a recharging station within a close proximity. The quadcopter will then connect

3 with the recharging station, supplying power to the battery. Finally, after being fully charged, our quadcopter will resume automated flight. An important aspect of our project to consider is the environment that our system will be performing within. Our first test will be completely indoors in an empty room. The quadcopter will be stationed at one end of a room and the charging station will be placed at the other side. The goal is to have the quadcopter successfully locate and dock itself upon the charging station on the opposite side of the room. The drone will then recharge its battery and take off again. All of this will be done without any human interaction. After achieving this first task, we will have successfully developed a platform for further research with an autonomously charging quadcopter in different criteria. That is, we will then have to consider a design that works well with obstacles in the room such as furniture and more importantly a system that cooperates with the weather conditions. For this project to be brought to real world applications, the weather must be considered or the autonomous charging design is useless outdoors. In order to move forward with this design, we will first achieve a fully autonomous battery charging quadcopter system in an empty room indoors. After solving this initial problem, we will then have a platform for future development of a system that works in all environmental conditions. As previously stated, our design is split into a hardware and software section. This will increase our time efficiency by having more specific responsibilities and roles assigned to each individual team member. Software Team Learning and applying Python, the programming language that will be required to design an automated system. Determining the needed sensory information to accomplish an automated flight and navigation procedure. Understanding and applying control commands in ROS (Robotic Operating System) Hardware Team Design of a conductive charging station that will consistently allow our quadcopter to dock.

4 Design and manufacturing of a current and voltage control circuit for both the charging platform and the quadcopter. Any needed modifications to our quadcopter such as additional sensors. Solution To begin this design, our team first needed to select a quadcopter. A comparison was made between 2 drones. Table 1. Comparison chart of AR.Drone and 3DR Key Points Easily modified. Description The A.R. drone is equipped with a removable outer frame and multiple ports for additional sensors. The drone also

5 has many replacement parts commercially available. Good price point. The AR drone is available to use through our sponsor eliminating a need to purchase a drone. Commonly used drone. Because of many third party developers, Parrot launched the AR.Drone open Application Programming Interface (API) game development platform. This open platform allows for creative programming algorithm design. Lightweight and compact The AR drone weighs under a pound and is a relatively compact size (517 x 517 x 127 mm). This lightweight drone allows for a smaller charging station design and will also have less power consumption compared to heavier drones. From table 1, we compared the AR drone 2.0 and 3DR since these two quadcopters are currently available at University of Connecticut. From the chart, we can see that the AR drone 2.0 is lighter and smaller compared to the 3DR. Due to these two characteristics will help us design a smaller charging platform. Since the material of AR drone 2.0 is built by carbon fiber instead of plastic compare to 3DR, it is much more reliable. We decided to use image processing to track the charging station, from the table, the AR drone 2.0 has two internal camera installed already which makes this system possible. So we do not need to use any external cameras for image processing, which the 3DR requires. This will help us decrease the weight on the quadcopter and let the battery last longer. Another important element is the cost of AR Drone is about 300$ compare to 1000$ which will help us keep in the budget.

6 The following limitations need to be realized during the design process. 1. Network Connection. The response time between quadcopter and pc terminal over a network can lead to crippling delays in our system. A wireless network will also be limited in range and 2. Computational Speed. Both quadcopter and pc terminal will have delays in processing information. Image processing can require large amounts of processing power. 3. Stability. The quadcopter will have small unpredicted variances in movement that will inv. 4. Sensor Accuracy. Sensors are designed to operate within certain limits. For example, an acoustic sensor will only pick up on certain sound frequencies and strengths. 5. Charging Time. Current Lithium Polymer battery technology limits the flow of current in and out of the cells. These limits mean battery charging time will be over 2 hours. 6. Weight Capacity. As we increase weight, battery life will decrease as well. 7. Budget. We are limited to roughly $ for any additional parts. Software Technical Design There are different approaches to the software design for a tracking system. The main goal of this tracking system is to simply allow the drone to find the charging station in an empty room and steadily land on it. This system can be broken up into two parts. First we need to find a way to get the quadcopter to find and fly to the general area of the charging station. Once the drone is hovering over the charging station, the second objective is to have it land steadily on it. The quadcopter must autonomously fly to the charging station, dock, and take off once fully charged. In order to achieve autonomous flight, we must write a set of functions for the drone that commands its movement and tracking. These functions will be written in Python using Robot Operating System (ROS) and other packages such as OpenCV for video processing. Autonomous flight will be achieved by letting the drone hover by changing the coordinates of the drone inside a function.

7 Locating the Charging Station One way to locate the rough location of the charging station is to use GPS. The A.R. Drone has an on board GPS system that contains its location. It is possible to obtain a Flight Recorder Module to bring the drone to a specific location on the map. This location can be set to where the charging station is. Another method to locate the charging station is to use image processing. Using different nodes, or functions, the drone will be able to track the charging station and fly over to it. The front camera continually checks for a tag while the drone is autonomously flying. We simply implement algorithms in python and alter parameters to track the specified tag that we want based off shape or color. Once detected, the coordinates of the tag are sent to the drone. The quadcopter will fly over to the station and hover over it. Our team decided to use image processing to locate the charging station. Due to the criteria that the drone will fly indoors without obstacles, we believe that this is the best choice. If this experiment was to take place outside, weather conditions such as snow will affect image processing and another design will need to be considered. However, since the experiment is held inside, GPS is not necessary. We will approach the problem with an image processing method, detecting the color or tag that is near the charging station. The drone will then fly closer to the tag until it arrives at the station. Once the drone has found the charging station, it must dock on top of it in order to charge. In order to do this, the bottom camera of the drone will continuously check for a tag. If the bottom camera detects the docking tag, then the drone will descend onto the charging station and start charging. Another function will continuously check the battery life until it is full. Once it is full the drone will take off again to autonomously fly. Below is a brief visual of how the image tracking system will work.

8 Figure 1. Image processing visual Camera Node: Obtains a video stream from the camera. This is the low level driver to the camera. Visual Perception Node: Extracts a set of pixels defining the object we want to track and publishes the coordinates to the Region of Interest Topic. Head Tracking Node: Computes movement commands that keep the target in the center of the camera s view. These commands are published to the Motor_Commands Topic. Motor Control Node: Subscribes to the Motor_Commands Topic and maps movement commands to be performed by the quadcopter.

9 Charging Station Technical Design In order to begin designing a charging station a design criteria must be established. The design criteria will establish a baseline for determining the optimal method of charging, specifically meeting the goals for this project. The following criteria was determined: Criteria Importance Consistency and Dependability Feasibility An unmanned system will be highly reliant on a dependable docking procedure. Without high consistency and dependability the entire system becomes inoperable. Design should be consistent with expectations. Charging station that is planned using Pseudoscience or unavailable technology can be crippling to our given time frame. Operating Time Design should maximize power transfer to 3 cell LiPo batteries to minimize recharge time. Minimize any additional weight needed on the quadcopter to maximize flight time. Utility System can be operated in different locations and within various scenarios. System should be considered useful and desirable to a consumer. Using our design criteria, a comparison of four possible charging systems was created. Technical details and our approach are also briefly summarized following the chart.

10 Table 2. Comparison of Charging Methods Charging Station Approach Table 2 compared 4 different feasible charging methods. Initially, we considered using Inductive Resonant Charging. Our approach was to design a non-contact charging method that would allow our quadcopter to dependably connect with the station. However, we soon concluded that inductive charging was not practical with our design. Fully charging a 3-cell Lithium Polymer battery would be much greater than 2 hours because of a low efficiency power (~9%) transfer. Additionally power transfer is greatly reduced, cubed related to distance, making any non-contact advantage irrelevant. Battery Swapping System seems like the most effective method but is greatly limited by a few factors. The first factor is the cost of the charging station. LiPo (Lithium Polymer) batteries can are roughly 30 dollars each. If one charging station needs 3 batteries, our design of several charging stations will rapidly increase over our budget limit ($1000). Another important negative aspect of Battery Swapping is the design consists of many moving parts, greatly reducing reliability and requiring Computer Aided Drawing skill sets that our design team does not have. A Capture Latch System is a system that works similar to how a shuttle docks with a space station or a boat docks in a harbor. The main concept behind this method of recharging is stability and connection of our drone. This method would ensure consistent connection between the quadcopter and the charging station but is unnecessary for our predicted application. Capture latch was a debatable choice but for our application we do not expect any situation that requires

11 great stability. The chosen method of charging, conductive, offers the same predicted consistency but simpler in terms of design. Design of the Charging Station Contact plate charging is a universally well known charging method that many of us are familiar with. This method of charging offers a high tolerance for landing error and a predicted high efficiency power transfer. The charging station is predicted to be design as follows: 4 Copper contact plates for the drone to land on 4 Copper contacts attached under each arm of the quadcopter. Small magnets attached with contacts on the quadcopter to to increase stability during landing procedure and to maximize power transfer to increased contact. Wires will be made from this contacts on the quadcopter to the battery. Circuit components to control and regulate the flow of current to the Lithium Polymer batteries will be needed. A Component will need to be attached to the quadcopter. Design of the station framework will be made of plastic and be made to keep quadcopter level while charging.

12 Project Plan Hardware Development Timeline 1. Research Lithium Polymer Battery technology. 2. Develop schematic for a Voltage and Current control circuit on PSPICE. (Early December) 3. Purchase needed circuit components. (December) 4. Breadboard Lab Test. (Mid - Late December) 5. Manufacture Integrated Circuit for system. (January - Early February) 6. Construct Charging Station. (Early February) 7. Field Testing (February) 8. Modifications if Necessary. (Remaining Time) Software Development Timeline (next 2-3 months) 1. Continue going through ROS tutorials 2. Fly drone with simple flight maneuvers in the lab to familiarize us with 3. Control drone in Gazebo simulator with joystick to understand how the drone flys 4. Research blob detection algorithm to implement object tracking 5. Write individual nodes to execute specific tasks 6. Test each node to make sure they are working as they should be Budget For this project, our sponsor is willing to spend 1,000 dollars. The software design requires none of this money because we will be using open source software packages that are free for public use. The AR.Drone is provided by the Department of Electrical and Computer Engineering, thus the only development cost will come from the hardware design of the battery charging station.

13 Item Cost Quantity Total Circuit Components (includes copper wiring) $50 2 $100 Copper conduction plates $20 Cutting a single Plate Into 4 (3 by 3 ) $20 Copper sheet for contacts $10 Single sheet $10 Neodymium magnets $10 Pack of 10 $10 Battery (2200mA) $40 1 $40 PVC for station frame ~ $20 $10 Senors (Acoustic, Infrared, e.g.) ~$40 N/A $50 Replacement parts or tools (miscellaneous) $60 Total Budget ~$300 (Expected) $1000 (Limit) Current budget plans to be well within our given constraints. Our budget was calculated in terms of only completing the project. Further development such as multiple charging stations will lead to an increase in our expected spending. Spending is expected to change as progression is made through the design.

Autonomous Battery Charging of Quadcopter

Autonomous Battery Charging of Quadcopter ECE 4901 Fall 2016 Final Report Autonomous Battery Charging of Quadcopter Team 1722: Thomas Baietto Electrical Engineering Gabriel Bautista Computer Engineering Ryan Oldham Electrical Engineering Yifei

More information

Project Readiness Package Rev 7/22/11

Project Readiness Package Rev 7/22/11 INTRODUCTION: ADMINISTRATIVE INFORMATION: Project Name (tentative): Quadcopter Navigation System Project Number, if known: R14902 Preferred Start/End Semester in Senior Design: Fall/Spring Spring/Fall

More information

Gesture Controlled UAV Proposal

Gesture Controlled UAV Proposal Gesture Controlled UAV Proposal Ben Schreck and Lee Gross 10/29/2014 1 Overview There are currently two types of unmanned aerial vehicles (UAVs): autonomous aircrafts and remotely piloted aircrafts. Remotely

More information

Advanced Tactics Announces the Release of the AT Panther Drone First Aerial Package Delivery Test with a Safe Drive-up-to-your-doorstep Video

Advanced Tactics Announces the Release of the AT Panther Drone First Aerial Package Delivery Test with a Safe Drive-up-to-your-doorstep Video UPDATED 03APRIL2017 MEDIA CONTACT: press@advancedtacticsinc.com (310) 325-0742 Advanced Tactics Announces the Release of the AT Panther Drone First Aerial Package Delivery Test with a Safe Drive-up-to-your-doorstep

More information

Quadcopter See and Avoid Using a Fuzzy Controller

Quadcopter See and Avoid Using a Fuzzy Controller 1 Quadcopter See and Avoid Using a Fuzzy Controller M. A. Olivares-Mendez and Luis Mejias and Pascual Campoy and Ignacio Mellado-Bataller Computer Vision Group, DISAM, Polytechnic University of Madrid

More information

Air Reconnaissance to Ground Intelligent Navigation System

Air Reconnaissance to Ground Intelligent Navigation System Air Reconnaissance to Ground Intelligent Navigation System GROUP MEMBERS Hamza Nawaz, EE Jerrod Rout, EE William Isidort, EE Nate Jackson, EE MOTIVATION With the advent and subsequent popularity growth

More information

Autonomous Aerial Mapping

Autonomous Aerial Mapping Team Name: Game of Drones Autonomous Aerial Mapping Authors: Trenton Cisewski trentoncisewski@gmail.com Sam Goyal - s4mgoyal@gmail.com Chet Koziol - chet.koziol@gmail.com Mario Infante - marioinfantejr@gmail.com

More information

Control of Flight Operation of a Quad rotor AR. Drone Using Depth Map from Microsoft Kinect Sensor K. Boudjit, C. Larbes, M.

Control of Flight Operation of a Quad rotor AR. Drone Using Depth Map from Microsoft Kinect Sensor K. Boudjit, C. Larbes, M. Control of Flight Operation of a Quad rotor AR. Drone Using Depth Map from Microsoft Kinect Sensor K. Boudjit, C. Larbes, M. Alouache Abstract: In recent years, many user-interface devices appear for managing

More information

Components of a Quadcopter SYST 460

Components of a Quadcopter SYST 460 Components of a Quadcopter SYST 460 https://www.dronezon.com/learn-about-drones-quadcopters/drone-components-parts-overview-with-tips/ A. Standard Prop While some drones like the DJI Phantom look more

More information

Co-operating Miniature UAVs for Surveillance and Reconnaissance

Co-operating Miniature UAVs for Surveillance and Reconnaissance Co-operating Miniature UAVs for Surveillance and Reconnaissance Axel Bürkle 1, Sandro Leuchter 1 1 Fraunhofer Institute for Information and Data Processing IITB Fraunhoferstraße 1, 76131 Karlsruhe Abstract.

More information

Technical Layout of Harbin Engineering University UAV for the International Aerial Robotics Competition

Technical Layout of Harbin Engineering University UAV for the International Aerial Robotics Competition Technical Layout of Harbin Engineering University UAV for the International Aerial Robotics Competition Feng Guo No.1 Harbin Engineering University, China Peiji Wang No.2 Yuan Yin No.3 Xiaoyan Zheng No.4

More information

AeroVironment, Inc. Unmanned Aircraft Systems Overview. Background

AeroVironment, Inc. Unmanned Aircraft Systems Overview. Background AeroVironment, Inc. Unmanned Aircraft Systems Overview Background AeroVironment ( AV ) is a technology company with a 40-year history of practical innovation in the fields of unmanned aircraft systems

More information

Quadcopter Video Surveillance UAV

Quadcopter Video Surveillance UAV By Anton Nakazawa Bai Xiang Jin anak@uvic.ca barryjin@uvic.ca URL: http://web.uvic.ca/~barryjin/ Supervisor: Michael Adams Group: 7 Dept. Electrical and Computer Engineering University of Victoria All

More information

Advanced Mechatronics: AR Parrot Drone Control Charging Platform

Advanced Mechatronics: AR Parrot Drone Control Charging Platform Advanced Mechatronics: AR Parrot Drone Control Charging Platform Engineering Team Members: Ashwin Raj Kumar Feng Wu Henry M. Clever Advanced Mechatronics: Project Plan Phase 1: Design testing platform

More information

Introduction to Drones

Introduction to Drones Introduction to Drones Introduction You can go backwards, you can hover, and you can go straight up or straight down. What is it? It s a bird, it s a plane, no it s a drone! If you are familiar with the

More information

Studies of AR Drone on Gesture Control MA Lu, CHENG Lee Lung

Studies of AR Drone on Gesture Control MA Lu, CHENG Lee Lung 3rd International Conference on Materials Engineering, Manufacturing Technology and Control (ICMEMTC 2016) Studies of AR Drone on Gesture Control MA Lu, CHENG Lee Lung Department of Electronic Engineering

More information

Fixed Wing Survey Drone. Students:

Fixed Wing Survey Drone. Students: Fixed Wing Survey Drone Project Proposal Students: Ben Gorgan Danielle Johnson Faculty Advisor: Dr. Joseph A. Driscoll Date: November, 26 2013 1 Project Summary This project will develop an unmanned aerial

More information

GIGA Commercial Drone. Owner s Manual. For Owner s Manual updates, warranty information, and support, visit:

GIGA Commercial Drone. Owner s Manual. For Owner s Manual updates, warranty information, and support, visit: GIGA -6000 Commercial Drone Owner s Manual For Owner s Manual updates, warranty information, and support, visit: www.mota.com/giga-6000 Please read the Owner s Manual before your first flight. It has information

More information

TOUCH IOT WITH SAP LEONARDO PROTOTYPE CHALLENGE

TOUCH IOT WITH SAP LEONARDO PROTOTYPE CHALLENGE TOUCH IOT WITH SAP LEONARDO PROTOTYPE CHALLENGE DRONE SERVICES ON DEMAND Prototype Description An infrastructure to provide services on demand is presented. Stores, parcel enterprises, groceries, pharmacies,

More information

Southwestern University. Quadcopter (DRONE) Rules for Use. Quadcopter/drone rules for use established: March 8, 2016.

Southwestern University. Quadcopter (DRONE) Rules for Use. Quadcopter/drone rules for use established: March 8, 2016. Southwestern University Quadcopter (DRONE) Rules for Use Quadcopter/drone rules for use established: March 8, 2016. All departmental drone operators must register quadcopter/drone with the FAA. Operators

More information

Collaboration Between Unmanned Aerial and Ground Vehicles. Dr. Daisy Tang

Collaboration Between Unmanned Aerial and Ground Vehicles. Dr. Daisy Tang Collaboration Between Unmanned Aerial and Ground Vehicles Dr. Daisy Tang Key Components Autonomous control of individual agent Collaborative system Mission planning Task allocation Communication Data fusion

More information

CONCEPTUAL DESIGN OF AN AUTOMATED REAL-TIME DATA COLLECTION SYSTEM FOR LABOR-INTENSIVE CONSTRUCTION ACTIVITIES

CONCEPTUAL DESIGN OF AN AUTOMATED REAL-TIME DATA COLLECTION SYSTEM FOR LABOR-INTENSIVE CONSTRUCTION ACTIVITIES CONCEPTUAL DESIGN OF AN AUTOMATED REAL-TIME DATA COLLECTION SYSTEM FOR LABOR-INTENSIVE CONSTRUCTION ACTIVITIES H. Randolph Thomas The Pennsylvania State University Research Building B University Park,

More information

14+ FOR AGES 14 AND UP ITEM NO

14+ FOR AGES 14 AND UP ITEM NO 14+ FOR AGES 14 AND UP ITEM NO. 33743 INTRODUCTION Thank you for purchasing this amazing World Tech Toys product. This drone is suitable for indoor and outdoor flight. Please carefully read the entire

More information

Team MacroHard: The Perfect Selfie Shreesha Suresha Mary Anne Noskowski Simranjit Singh Sekhon Bragatheesh Sureshkumar Beau Rampey

Team MacroHard: The Perfect Selfie Shreesha Suresha Mary Anne Noskowski Simranjit Singh Sekhon Bragatheesh Sureshkumar Beau Rampey Team MacroHard: The Perfect Selfie Shreesha Suresha Mary Anne Noskowski Simranjit Singh Sekhon Bragatheesh Sureshkumar Beau Rampey Intro: The project is an integration of a drone, a video recording device,

More information

AutoFlight Documentation

AutoFlight Documentation AutoFlight Documentation Release dev-preview Lukas Lao Beyer August 23, 2015 Contents 1 Overview 3 1.1 Basic Usage............................................... 3 1.2 Important warnings and known issues..................................

More information

AEM 5495 Spring Design, Build, Model, Simulate, Test and Fly Small Uninhabited Aerial Vehicles (UAVs)

AEM 5495 Spring Design, Build, Model, Simulate, Test and Fly Small Uninhabited Aerial Vehicles (UAVs) AEM 5495 Spring 2011 Design, Build, Model, Simulate, Test and Fly Small Uninhabited Aerial Vehicles (UAVs) Gary J. Balas balas@umn.edu Monday-Wednesday 3:35-4:50 PM 211 Akerman Hall UAV Course Syllabus

More information

Sea, Air and Land High School Challenge

Sea, Air and Land High School Challenge Sea, Air and Land High School Challenge Definition of Land Challenge Prepared By: Penn State EOC i Rev. Reason Name Date Int. -- Original J. Searle 09/12/2014 A B. Kiser 11/11/2014 B Updated Drop point

More information

Written By: Brett Hartt

Written By: Brett Hartt Parrot AR.Drone Teardown We took apart the only iphone-controlled, indoor or out, four-propeller rotorcraft on the market -- the Parrot AR.Drone. Written By: Brett Hartt ifixit CC BY-NC-SA www.ifixit.com

More information

DRONES A Brief History and Design Overview. Tomorrow Lab June 2014

DRONES A Brief History and Design Overview. Tomorrow Lab June 2014 DRONES A Brief History and Design Overview Tomorrow Lab June 2014 INTRODUCTION The intent of this document is to give a brief history and overview of drone technology from a design and engineering perspective,

More information

IARC Technical Paper

IARC Technical Paper IARC Technical Paper Texas Aerial Robotics University of Texas at Austin TexasAerialRobotics@gmail.com Samid Ahmed, Nicholas Boeker, Eric Johnson, Aaron Karns, Mark Loveland, Umer Salman May 28, 2017 Abstract

More information

Vision VTOL. The Future of Flight

Vision VTOL. The Future of Flight Vision VTOL The Future of Flight What if batteries had just 10 times their current power density? What would an aircraft look like? What could it do? Wings become obsolete. Motors become as reliable as

More information

U846. headless flying quad PRODUCT PARTS. 1. Quadcopter. Clockwise Blade A. Counter-clockwise Blade B. Counter-clockwise Blade B

U846. headless flying quad PRODUCT PARTS. 1. Quadcopter. Clockwise Blade A. Counter-clockwise Blade B. Counter-clockwise Blade B PRODUCT PARTS U846 headless flying quad 1. Quadcopter Clockwise Blade A Counter-clockwise Blade B Counter-clockwise Blade B Clockwise Blade A Clockwise Blade A Counter-clockwise Blade B USB Power 1 Power

More information

Initial Project and Group Identification Document

Initial Project and Group Identification Document EEL 4914 Group 29 Initial Project and Group Identification Document MAZE ZONE DRONE-CAR PAIR Ehsan Falaki CpE Tanner Foster - CpE Matt Szewczyk EE Justin Yuen EE Customer/Sponsors: N/A Motivation and Function:

More information

Performing UAV Mission Planning, Design, & Optimization

Performing UAV Mission Planning, Design, & Optimization Performing UAV Mission Planning, Design, & Optimization Russ Magazzu UAV Product Manager Pg 1 of 30 Agenda Unmanned aerial systems application areas capabilities STK 8 Aircraft Mission Modeler Pg 2 of

More information

Fire Extinguishing Unmanned Aerial Vehicle (FXUAV)

Fire Extinguishing Unmanned Aerial Vehicle (FXUAV) Fire Extinguishing Unmanned Aerial Vehicle (FXUAV) Adam Kutchak, Luis Brum, Jamie Peck, Greg Kelso Dept. of Electrical Engineering and Computer Science, University of Central Florida, Orlando, Florida,

More information

Fixed-Wing Survey Drone. Students:

Fixed-Wing Survey Drone. Students: Fixed-Wing Survey Drone Functional Description and System Block Diagram Students: Ben Gorgan Danielle Johnson Faculty Advisor: Dr. Joseph A. Driscoll Date: October 1, 2013 Introduction This project will

More information

Center for Innovative Technology (CIT) In conjunction with our partners Smart City Works, LLC and TechNexus (the SCITI Program)

Center for Innovative Technology (CIT) In conjunction with our partners Smart City Works, LLC and TechNexus (the SCITI Program) Center for Innovative Technology (CIT) In conjunction with our partners Smart City Works, LLC and TechNexus (the SCITI Program) Requests Innovators with capabilities in the following area Technical Specification:

More information

Drone Enterprise Solutions

Drone Enterprise Solutions Minneapolis - Chicago - Denver - Calgary - Washington, D.C. DaaS Drone-as-a-Service Drone Enterprise Solutions Flying IoT Devices Dynamic Digital Intelligence Drone Technology Drone Enterprise Solutions

More information

TECHNICAL DESCRIPTION

TECHNICAL DESCRIPTION TECHNICAL DESCRIPTION mobile robotics WorldSkills International TD23 v4.0 WSC2013 WorldSkills International, by a resolution of the Technical Committee and in accordance with the Constitution, the Standing

More information

Unmanned Aerial Vehicle Application to Coast Guard Search and Rescue Missions

Unmanned Aerial Vehicle Application to Coast Guard Search and Rescue Missions Unmanned Aerial Vehicle Application to Coast Guard Search and Rescue Missions Allison Ryan July 22, 2004 The AINS Center for the Collaborative Control of Unmanned Vehicles 1 US Coast Guard Search and Rescue

More information

INSTRUCTION MANUAL. Voice Command Quadcopter with 2MP Camera

INSTRUCTION MANUAL. Voice Command Quadcopter with 2MP Camera Ver. 4 INSTRUCTI MANUAL Voice Command Quadcopter with 2MP Camera SKY2913 CAUTI Please retain these instructions for future reference. Ensure that the drone is correctly assembled to prevent any injuries

More information

Design and Development of South Dakota School of Mines and Technology s Aerial Robotic Reconnaissance System

Design and Development of South Dakota School of Mines and Technology s Aerial Robotic Reconnaissance System Design and Development of South Dakota School of Mines and Technology s Aerial Robotic Reconnaissance System Randall Foudray, Jiayi Liu, Erik Kaitfors, Jordan Ritz South Dakota School of Mines and Technology

More information

Dept. of Electrical Engineering. UAV Sensing and Control. Lang Hong, Ph.D. Wright State University

Dept. of Electrical Engineering. UAV Sensing and Control. Lang Hong, Ph.D. Wright State University Senior Design Projects: UAV Sensing and Control Lang Hong, Ph.D. Dept. of Electrical Engineering Wright State University Topic List Light-Weight/Accurate Altimeter for a Small UAV Gyro-Stabilized Servo-Driven

More information

AR-Drone as a Platform for Robotic Research and Education

AR-Drone as a Platform for Robotic Research and Education AR-Drone as a Platform for Robotic Research and Education Tomáš Krajník, Vojtěch Vonásek, Daniel Fišer, and Jan Faigl The Gerstner Laboratory for Intelligent Decision Making and Control Department of Cybernetics,

More information

monitoring it i volcanic gas sampling and analysis

monitoring it i volcanic gas sampling and analysis Volcan, an autonomous volcanic gas sampling Unmanned Aerial Vehicle outbreak of a crisis: identification of causes and effects,, rescue coordination,, first aid volcanic area surveillance and monitoring

More information

IMPLEMENTATION OF AN UNMANNED AERIAL VEHICLE FOR NEW GENERATION PETERBILT TRUCKS VENKATESH SRINIVASAN K, B.E.E.C.E. Thesis Prepared for the Degree of

IMPLEMENTATION OF AN UNMANNED AERIAL VEHICLE FOR NEW GENERATION PETERBILT TRUCKS VENKATESH SRINIVASAN K, B.E.E.C.E. Thesis Prepared for the Degree of IMPLEMENTATION OF AN UNMANNED AERIAL VEHICLE FOR NEW GENERATION PETERBILT TRUCKS VENKATESH SRINIVASAN K, B.E.E.C.E. Thesis Prepared for the Degree of MASTER OF SCIENCE UNIVERSITY OF NORTH TEXAS May 2016

More information

INSTRUCTION & REFERENCE MANUAL Model no. ODY-2017BF1

INSTRUCTION & REFERENCE MANUAL Model no. ODY-2017BF1 INSTRUCTION & REFERENCE MANUAL Model no. ODY-2017BF1 FOR AGES 14 + Thank you for your purchase of the Oblivion NX Live Streaming HD Video Drone. You re just moments away from creating stunning aerial acrobatics!

More information

Conceptual Design Review

Conceptual Design Review 2015 Conceptual Design Review UAV PACKAGE DELIVERY SYSTEM TEAM AVENGERS Tushar Agrawal (Software Lead and Project Manager) Sean Bryan (Mechanical and Communications Lead) Pratik Chatrath (Sensor Lead and

More information

Content. 5. Appendix Technical Specifications... 13

Content. 5. Appendix Technical Specifications... 13 User Manual v1.0 Content Content... 1 1. Disclaimer and Warning... 2 2. XLink at a glance... 2 System requirements... 2 Parts list... 2 What s included... 3 Terminology... 3 3. 2.4G Bluetooth digital transmitter...

More information

mycopter Enabling Technologies for Personal Aerial Transportation Systems

mycopter Enabling Technologies for Personal Aerial Transportation Systems mycopter Enabling Technologies for Personal Aerial Transportation Systems Prof. Dr. Heinrich H. Bülthoff Max Planck Institute for Biological Cybernetics Tübingen, Germany Project funded by the European

More information

Artificial Intelligence In Commodity Hardware Aerial Drones

Artificial Intelligence In Commodity Hardware Aerial Drones Artificial Intelligence In Commodity Hardware Aerial Drones Dept. of CIS - Senior Design 2012-2013 Nina Charness chanina@seas.upenn.edu Univ. of Pennsylvania Philadelphia, PA Charles L. Kong ckong@seas.upenn.edu

More information

Custom Small UAV Lab. To: Dr. Lewis Ntaimo ISEN

Custom Small UAV Lab. To: Dr. Lewis Ntaimo ISEN Custom Small UAV Lab To: Dr. Lewis Ntaimo ISEN 689-601 From: Gerardo Iglesias, Sugiri Halim, William, Zane Singleton March 20, 2008 I. Statement of Problem Current development and research in the field

More information

VENTO WIFI DRONE WITH LIVE STREAMING CAMERA

VENTO WIFI DRONE WITH LIVE STREAMING CAMERA VENTO WIFI DRONE WITH LIVE STREAMING CAMERA INSTRUCTION MANUAL THANK YOU. Thank you for your purchase of Protocol s Vento Wifi Drone with Live Streaming Camera. You are about to experience the best of

More information

RoboFeast-2018 in Assoc. with Ed Cell IIT-Roorkee 2-Days National Level Quad Copter Development Workshop

RoboFeast-2018 in Assoc. with Ed Cell IIT-Roorkee 2-Days National Level Quad Copter Development Workshop RoboFeast-2018 in Assoc. with Ed Cell IIT-Roorkee 2-Days National Level Quad Copter Development Workshop Page 4 Highlights of the QuadCopter Workshop Introduction to Multi Rotor Vehicles & QuadCopter dynamics

More information

U28. Name of Parts 1. Drone. Blade Guard. Battery Cover. Drone Body Blade Motor. Body Light. Camera. Landing Gear. Blade Guard Installation Diagram

U28. Name of Parts 1. Drone. Blade Guard. Battery Cover. Drone Body Blade Motor. Body Light. Camera. Landing Gear. Blade Guard Installation Diagram Name of Parts 1. Drone Blade Guard Drone Body Blade Motor Body Light Camera Landing Gear Blade Guard Installation Diagram U8 TF Card Installation Diagram . Transmitter Power Switch Throttle/ Up and Down

More information

Multi-view Configuration of Flight Dynamic Playback

Multi-view Configuration of Flight Dynamic Playback Multi-view Configuration of Flight Dynamic Playback Elizabeth Beth Fatusin Electrical and Computer Engineering Ohlone College / Cornell University bisolafatusi@hotmail.com Faculty Mentor: S. Shankar Sastry

More information

Ground Station Framework Design for Multiple UAVs with Embedded Devices

Ground Station Framework Design for Multiple UAVs with Embedded Devices , pp.20-24 http://dx.doi.org/10.14257/astl.2015.107.06 Ground Station Framework Design for Multiple UAVs with Embedded Devices Deokgyu Yang 1, Jeonghoon Kwak 2, Yunsick Sung 1,* 1 Faculty of Computer Engineering,

More information

Development of a Helical and Pigtail-Based Range Extension System for Campus Surveilance Quadcopter

Development of a Helical and Pigtail-Based Range Extension System for Campus Surveilance Quadcopter International Conference on Information and Communication Technology and Its Applications (ICTA 2016) Federal University of Technology, Minna, Nigeria November 28 30, 2016 Development of a Helical and

More information

Masonry construction with drones

Masonry construction with drones 26 30 September, 2016, Tokyo, Japan K. Kawaguchi, M. Ohsaki, T. Takeuchi (eds.) Masonry construction with drones Pierre LATTEUR 1, Sébastien GOESSENS 1, Milan RENIERS 1, Zhao MA 2, Caitlin MUELLER 2 1

More information

Technical Paper. 1. Introduction. 2. Approach by Construction Equipment Manufacturer. Chikashi Shike Akinori Onodera Masamitsu Takahashi

Technical Paper. 1. Introduction. 2. Approach by Construction Equipment Manufacturer. Chikashi Shike Akinori Onodera Masamitsu Takahashi Technical Paper Construction jobsites of the future developed by construction equipment manufacturer in centering intelligent Machine Control equipment (Introduction of SMARTCONSTRUCTION) Chikashi Shike

More information

DEVELOPMENT OF AUTOMATIC CONVEYOR SYSTEM AT CONSTRUCTION SITES

DEVELOPMENT OF AUTOMATIC CONVEYOR SYSTEM AT CONSTRUCTION SITES 355 DEVELOPMENT OF AUTOMATIC CONVEYOR SYSTEM AT CONSTRUCTION SITES Hiroshi Nojima, Yoshimi Nakata, Masakazu Kakuyama, Seiichi Shibayama, Wataru Isomura, Taro Okamoto Technical Research Institute Fujita

More information

DRONE-OLOGY - TO INFINTY AND BEYOND! ADSK Solutions. Chad Studer Owner/President

DRONE-OLOGY - TO INFINTY AND BEYOND! ADSK Solutions. Chad Studer Owner/President ADSK Solutions Chad Studer Owner/President ADSK SOLUTIONS SALES - RENTALS CONSULTING - TRAINING - SUPPORT AUTODESK 3D SCANNERS UAV aka DRONES BLUEBEAM Supported Application POINT CLOUDS LIDAR/UAV MOBILE

More information

Simulation based design & development of autonomous underwater vehicle IMGAM

Simulation based design & development of autonomous underwater vehicle IMGAM Simulation based design & development of autonomous underwater vehicle IMGAM Dr. Ing. Max Abildgaard a sound decision The ATLAS ELEKTRONIK Group/ 1 Introduction IMGAM (Intelligentes Monitoring von Gasaustritten

More information

UAVs 4 STEM. Using recreational drones for learning. March 22, 2016 Presenters: LuAnn Dahlman, NOAA Dan Zalles, SRI

UAVs 4 STEM. Using recreational drones for learning. March 22, 2016 Presenters: LuAnn Dahlman, NOAA Dan Zalles, SRI UAVs 4 STEM Using recreational drones for learning E Federation of Earth Science Information Partners (ESIP) adsf Education Committee March 22, 2016 Presenters: LuAnn Dahlman, NOAA Dan Zalles, SRI Earth

More information

UNMANNED SURFACE VESSEL (USV)

UNMANNED SURFACE VESSEL (USV) UNMANNED SURFACE VESSEL (USV) UNMANNED SURFACE VESSEL (USV) By using Arma-Tech Tactical Autonomous Control Kit (ATTACK), the vessel can operate independently or combined in swarm. Completely autonomously

More information

Amazon Prime Air. sensefly PRECISION HAWK. Carinthia University of Applied Sciences Austria. Unmanned Aerial Systems II. Group I

Amazon Prime Air. sensefly PRECISION HAWK. Carinthia University of Applied Sciences Austria. Unmanned Aerial Systems II. Group I Carinthia University of Applied Sciences Austria Unmanned Aerial Systems II sensefly PRECISION HAWK Amazon Prime Air Group I Dilshod Ikramov Agne Valukonyte Rustam Miyliyev 1. Introduction 2. Companies:

More information

Robots in the Warehouse: A Supply Chain Game-Changer. By Tompkins International Staff

Robots in the Warehouse: A Supply Chain Game-Changer. By Tompkins International Staff Robots in the Warehouse: A Supply Chain Game-Changer By Tompkins International Staff The Fourth Industrial Revolution has started, warehouse robotics is raging in the logistics arena. Amazon s acquisition

More information

Drone Competition Manual

Drone Competition Manual 2017 Drone Competition Manual 1 Table of Contents: Drone Competition Manual 0 Table of Contents: 1 1.0 The Tournament 4 1.1 Tournament Location 4 1.2 Division Descriptions 4 1.3 Tournament Definitions

More information

On Implementing a Low Cost Quadcopter Drone with Smartphone Control

On Implementing a Low Cost Quadcopter Drone with Smartphone Control On Implementing a Low Cost Quadcopter Drone with Smartphone Control Mohammad Masoud, Yousef Jaradat, Mohammad Farhoud, Ammar Almdallaleh Computer and Communication Engineering Department Al-Zaytoonah University

More information

Unmanned Aerial Systems

Unmanned Aerial Systems DHS SCIENCE AND TECHNOLOGY Unmanned Aerial Systems Considerations for First Responder Organizations February 28, 2017 Stephen Hancock Director of Special Projects First Responders Group Science and Technology

More information

Remote inspection and intervention

Remote inspection and intervention Remote inspection and intervention Remote robotics at work in harsh oil and gas environments Charlotte Skourup, John Pretlove The global demand for oil and gas remains high and will do for the foreseeable

More information

Internal logistics will never be the same again with Autonomous mobile robots.

Internal logistics will never be the same again with Autonomous mobile robots. Internal logistics will never be the same again with Autonomous mobile robots. Opteq Robotics vision on micro logistics in industry and professional services Henk Kiela July/Aug 2016 1 Introduction We

More information

Quadcopter for Rescue Missions and Surveillance

Quadcopter for Rescue Missions and Surveillance IOSR Journal of Computer Engineering (IOSR-JCE) e-issn: 2278-0661,p-ISSN: 2278-8727 PP 48-52 www.iosrjournals.org Quadcopter for Rescue Missions and Surveillance Pooja Srivastava 1, Tejaswi Ninawe 2, Chitral

More information

Transforming Projectile System Combining Lethality and Intelligence

Transforming Projectile System Combining Lethality and Intelligence Proceedings of the 2010 IEEE Systems and Information Engineering Design Symposium, University of Virginia, Charlottesville, VA, USA, April 23, 2010 FPM2Dec.1 Transforming Projectile System Combining Lethality

More information

Design of A Quad Copter and Fabrication

Design of A Quad Copter and Fabrication Design of A Quad Copter and Fabrication Anudeep M M.Tech Student, Department of Mechanical Engineering Prasad V Potluri Siddhartha Institute of Technology, Vijayawada G Diwakar Associate Professor, Department

More information

Design and Development of Arduino Uno based Quadcopter

Design and Development of Arduino Uno based Quadcopter Design and Development of Arduino Uno based Quadcopter Vibha Kishor 1, Ms. Swati Singh 2 1 UG Student, Department of Electronics and Communication, Meerut Institute of Technology, Meerut 2 Assistant Professor,

More information

A Review on Vertical Take Off and Landing (VTOL) Vehicles

A Review on Vertical Take Off and Landing (VTOL) Vehicles A Review on Vertical Take Off and Landing (VTOL) Vehicles Aditya Intwala PG Student Department of Mechanical Engineering Symbiosis Institute of Technology, Pune, India Yash Parikh Assistant Professor Department

More information

CHAPTER - 1 INTRODUCTION

CHAPTER - 1 INTRODUCTION CHAPTER - 1 INTRODUCTION Development of Space Launch vehicle is critical for the selfreliant programme of space endeavor of any country. The development of Space launch vehicles is with indigenous effort

More information

Just a T.A.D. (Traffic Analysis Drone)

Just a T.A.D. (Traffic Analysis Drone) Just a T.A.D. (Traffic Analysis Drone) Senior Design Project 2017: Preliminary Design Review 1 Meet the Team Cyril Caparanga (CSE) Alex Dunyak (CSE) Christopher Barbeau (CSE) Matthew Shin (CSE) 2 Problem

More information

CIEEM Autumn Conference Workshop

CIEEM Autumn Conference Workshop CIEEM Autumn Conference Workshop Getting to grips with the use of Small Unmanned Aerial Vehicles (SUAVs) in Ecological Practice Nottingham 2016 Cameron S Crook MCIEEM Cameron S Crook & Associates Introduction

More information

Obstacle Course Overview, Guidelines, Layout

Obstacle Course Overview, Guidelines, Layout Obstacle Course Overview, Guidelines, Layout HIGH SCHOOL A. Overview To complete this challenge, teams must navigate and return through an obstacle course of 5 upright, vertical rings. The first four rings

More information

FACILITATING AGRICULTURE AUTOMATION USING STANDARDS

FACILITATING AGRICULTURE AUTOMATION USING STANDARDS FACILITATING AGRICULTURE AUTOMATION USING STANDARDS Robert K. Benneweis P. Eng Outline Available standards Developing standards Implemented automation Standard based automation implementation Potential

More information

AXIS II RC DRONE WITH CAMERA

AXIS II RC DRONE WITH CAMERA AXIS II RC DRONE WITH CAMERA THANK YOU. Thank you for your purchase of Protocol s Axis II RC Drone With Camera. You are about to experience the best of what remote control flight has to offer. We strongly

More information

DESIGNING A GAS SNIFFER MONITORING SYSTEM FOR A QUADCOPTER

DESIGNING A GAS SNIFFER MONITORING SYSTEM FOR A QUADCOPTER DESIGNING A GAS SNIFFER MONITORING SYSTEM FOR A QUADCOPTER E. Baterman*, O. Dobzhanskyi* and R Gouws* *North West University, School of Electrical, Electronic and Computer Engineering, Potchefstroom Campus,

More information

Reliability Improvement of Electric Power Steering System Based on ISO 26262

Reliability Improvement of Electric Power Steering System Based on ISO 26262 2013 International Conference on Quality, Reliability, Risk, Maintenance, and Safety Engineering (QR2MSE) 2013 International Conference on Materials and Reliability (ICMR) 2013 International Conference

More information

Hero 550 User Manual

Hero 550 User Manual Hero 550 User Manual IDF 1.01 2014.10.28 version Thanks for purchasing Hero-550.Please regularly visit Hero-550 web page at www.idea-fly.com which is updated regularly. product information,technical updates

More information

Tips for Deploying Wireless Networks for AS/RS and AGV Systems. Calvin Chuko Product Manager

Tips for Deploying Wireless Networks for AS/RS and AGV Systems. Calvin Chuko Product Manager Tips for Deploying Wireless Networks for AS/RS and AGV Systems Calvin Chuko Product Manager Abstract Modern factories are increasingly deploying AS/RS and AGV systems in their facilities worldwide to optimize

More information

CENTRE FOR MARITIME RESEARCH AND EXPERIMENTATION

CENTRE FOR MARITIME RESEARCH AND EXPERIMENTATION CENTRE FOR MARITIME RESEARCH AND EXPERIMENTATION Gabriel Grenon, Dr.Alain Maguer presented by Per Arne Sletner Head, Autonomous Unmanned Vehicles Section Slide 1 Mission CMRE organises and conducts scientific

More information

HurleyIR Drone Kits HurleyIR is a DJI Authorized Dealer

HurleyIR Drone Kits HurleyIR is a DJI Authorized Dealer The HurleyIR UAS Aerial System is a fully customizable surveillance platform. Cutting edge fail safe technology and intelligent flight modes make flying easy and comfortable for any operator. The included

More information

Decentralized Control Architecture for UAV-UGV Cooperation

Decentralized Control Architecture for UAV-UGV Cooperation Decentralized Control Architecture for UAV- Cooperation El Houssein Chouaib Harik 1, François Guérin 2, Frédéric Guinand 1, Jean-François Brethé 2, Hervé Pelvillain 3 Abstract We present a decentralized

More information

Optimization of Multi-package Drone Deliveries Considering Battery Capacity. Department of Civil and Environmental Engineering, 1173 Glenn Martin Hall

Optimization of Multi-package Drone Deliveries Considering Battery Capacity. Department of Civil and Environmental Engineering, 1173 Glenn Martin Hall Optimization of Multi-package Drone Deliveries Considering Battery Capacity Youngmin Choi Graduate Student Department of Civil and Environmental Engineering, Glenn Martin Hall University of Maryland, College

More information

SIMULATION ON DEMAND: Using SIMPROCESS in an SOA Environment

SIMULATION ON DEMAND: Using SIMPROCESS in an SOA Environment SIMULATION ON DEMAND: Using SIMPROCESS in an SOA Environment Joseph M DeFee Senior Vice President Advanced Systems Division CACI Services-Oriented Architecture The one constant in business is change. New

More information

Digital Innovation for Pipelines Leveraging emerging technologies to maximize value

Digital Innovation for Pipelines Leveraging emerging technologies to maximize value Digitizing Energy Digital Innovation for Pipelines Leveraging emerging technologies to maximize value By deploying available digital technologies, pipeline operators can realize breakthrough improvements

More information

Smart Distribution Applications and Technologies - Program 124

Smart Distribution Applications and Technologies - Program 124 Smart Distribution Applications and Technologies - Program 124 Program Description Program Overview New technologies will be critical to future smart grid operation. These technologies will include advanced

More information

BHE UAV Family Unmanned Aerial Vehicle System

BHE UAV Family Unmanned Aerial Vehicle System BHE UAV Family Unmanned Aerial Vehicle System UAV Development at BHE Bonn Hungary Electronics Ltd. BHE Bonn Hungary Electronics Ltd. Address: Fóti str. 56. Budapest, H-1047 Hungary Phone: (1) 233-2138,

More information

Concept and prototype of a ground handling vehicle management system. Steffen Loth (German Aerospace Center - DLR) Member of

Concept and prototype of a ground handling vehicle management system. Steffen Loth (German Aerospace Center - DLR) Member of Concept and prototype of a ground handling vehicle management system Steffen Loth (German Aerospace Center - DLR) Outline Background Motivation, Projects, Partner, Airport Research Facility Hamburg, Vehicle

More information

Multi Token Based Location Sharing for Multi UAV Systems

Multi Token Based Location Sharing for Multi UAV Systems Multi Token Based Location Sharing for Multi UAV Systems Eyup Emre Ulku*, Ilker Bekmezci ASTIN, Computer Engineering Department, Istanbul, Turkey. Turkish Air Force Academy, Computer Engineering Department,

More information

Astrobee: Developing a Free-flying Robot for the International Space Station

Astrobee: Developing a Free-flying Robot for the International Space Station Astrobee: Developing a Free-flying Robot for the International Space Station Maria Bualat 1, Jonathan Barlow 2, Terrence Fong 3, Christopher Provencher 4, Trey Smith 5, and Allison Zuniga. 6 NASA Ames

More information

Trajectory Tracking of AR.Drone Quadrotor Using Fuzzy Logic Controller

Trajectory Tracking of AR.Drone Quadrotor Using Fuzzy Logic Controller TELKOMNIKA, Vol.1, No.4, December 014, pp. 819~88 ISSN: 1693-6930, accredited A by DIKTI, Decree No: 58/DIKTI/Kep/013 DOI: 10.198/TELKOMNIKA.v1i4.368 819 Trajectory Tracking of AR.Drone Quadrotor Using

More information