P15230 Quadcopter. Detailed Design

Size: px
Start display at page:

Download "P15230 Quadcopter. Detailed Design"

Transcription

1 P15230 Quadcopter Detailed Design

2 Presentation Plan Project Overview Review Customer Needs Review Engineering Requirements Electrical Design Mechanical Design Software Overview Path Planning Design Lidar Design Wifi Positioning Design Bill of Materials Risk Assessment Project Planning

3 Project Overview Unmanned Aerial Systems (UAS) are gaining popularity and demand in the commercial sector and for personal, hobbyist use. There is an increasing demand for UAS in areas such as delivery, thermal scanning, and mapping in areas which are time consuming, difficult, or unsafe for a traditional approach. For example, Amazon has announced plans for creating a UAS delivery method for their products. RIT looks to be a pioneer in this field, and has designed a competition based around this idea. The competition will require a fully autonomous craft to pilot itself through an obstacle course, using various methods of object detection to navigate as well as record data. These crafts will also be required to carry and drop payloads during the competition, furthering RIT's research into the UAS field.

4 Customer Needs

5 Engineering Requirements

6 Electrical Design Schematics Test Plans Schematic PCB Layout I/O Connections Communication Protocols Serial i2c Processor Tasks

7 Mechanical Design Structure CAD Models New Part Drawings Updated Weight Study PID Tuning Mechanical Test Procedures

8 Structure (CAD Models)

9 Structure (Drawings) - Sonar Mount/Base Part will be 3D printed using a MakerBot in the RIT Construct Lab. PLA plastic will be used as a material as it has the properties of strength, printing accuracy and is more environmentally friendly than ABS. -MakerBot tolerance to 0.2mm

10 Structure (Drawings) - Rotor Shroud Part will be printed x4 to form one shroud if 3D printing is chosen as final method for manufacturing based on final weight of model after weigh in during MSD II.

11 PID Tuning

12 PID Tuning Cont.

13 Weight Study - updated Thrust (in grams) now overcomes total weight of craft. Mechanical testing will determine vertical acceleration and confirm thrust produced from motors at desired power usage.

14 Mechanical Systems Test Plans Thrust/Weight Spring full assembly weigh in Test max thrust capacity of motors with weighted system and scale Must overcome F=m(g+a). Looking for a positive value of a acceleration Measure vertical acceleration through OpenPilot Durability Fully loaded system weight test on base assembly. Make sure base can withstand resting load in addition to landing forces can make part stronger via comb density in 3D print, but will make heavier. Drop test base with dummy weight to represent fully assembled quad Rotor shroud strength can be tested with similar drop test simulate craft bumping into objects side on while still at proper attitude simulate craft crashing on side to ground

15 Software Overview

16 Master Pi Master controller to all slave devices 2 nano I2C slaves 1 Pi UART slave Functions: plans path to transverse executes movement commands holds global map receives and interprets sensor readings as mapped objects Commands profile camera to snap Able to signal status/faults through GPIO Led Mobius Cam control Takes pictures as for customer requirements within normal resolution and filtering Optional Video streaming for testing

17 Navigation Flow

18 Path Planning Design Local copy of 2D gridded graph which A* Search plans a path resolution of grid has to be smaller than object detection range (sonar ~3m), optimally 0.33m Object detection framework updates graph when an object is detected Simulate A* Search on Pi 2 runs on a complete graph

19 Slave Motor Controller Nano Slave to Master Pi Functions: Interprets commands sent from Flight Controller API Generates PPM signals to send to crafts actuators Detects if user has signaled RC override Able to indicate status/faults through GPIO Led

20 Flight Controller API Flight_Controller_API stop_flag: bool Executing_cmd:bool complete_cmd:bool execmds: list(list(enum cmds,param)) issuablecmds:enum orbit90(int radius offset):bool foward(int dist): bool back(int dist): bool left(int dist):bool right(int dist):bool up(int dist): bool down(int dist):bool stop():bool rotateleft(int deg):bool rotateright(int deg):bool get_execmds: list(int x,y,x) Implement a library of execution safe flight commands to provide basic navigation Commands will have to interface with Nano functioning as a driver for controlled flight.

21 Slave (IP) Pi Slave to Master Pi Functions: Runs Lidar Scanning Relays sensed objects to Master Pi Runs Facial Recognition: relays detected face to Master Pi

22 Facial Recognition Subroutine

23 Lidar Design Lidar uses image processing of projected lasers to measure surface geometry. Lidar based systems are mainly used in 3D scanning and long distance range finding applications Single line Gives surface info Along a Line

24 Lidar Algorithm Using a line laser gives us distances to all points along the line. This can give us an estimate of the surface geometry that needs to be avoided. Blob Analysis and block processing will be used to discretize the line into points. The detected object s surface will be mapped in absolute coordinates. The coordinates will become part of an area blacklist the navigation algorithm will use to plot paths around obstacles.

25 Lidar: Line Tracking Demo

26 Lidar Hardware Raspberry Pi B+ Integrated Graphics Processor Camera Software Support Matlab and Simulink Support User Friendly Raspberry Pi NoIR Camera Module Custom for Raspberry Pi Can capture IR Very lightweight and low profile Can fit standard lense sizes for IR pass filtering Relatively low cost (~$30) 980nm IR Line Laser Very high wavelength for easier filtering from environment light sources Projects a line Invisible to humans Can be powered down to eye safe levels and still be detected by camera.

27 Lidar Test Plan Measure accuracy and resolution on test Rig. Map random objects at various orientations Evaluate camera performance in competition area. IR Isolating Adjust such as exposure and contrast Camera parameters Test communication with navigation computer Evaluate processing speed requirements from other system tests. Evaluate measurement resolution requirements from other system tests Full system interaction testing. Current Test Rig

28 Slave Sonar Sensing Nano Slave to Master Pi Relays information back to the Master Pi Functions: Collects sonar distance readings Takes readings of current and voltage sensors Relays sensor readings back to Master Pi Relays compass heading retrieved from compass sensor back to master Pi Able to indicate status/faults through GPIO Led

29 Wifi Positioning Design Main Positioning Equations Re-Orienting Equations Wifi Distance Reading Code Results of Preliminary Wifi Distance Tests

30 Wifi Positioning Hardware Raspberry Pi B+ Algorithms are integrated with Pathing software already on the Pi. 3.3V logic allows for easy communication with other components also using 3.3V logic. Wireless Router Need a basic router just for signal strength calculations. Limited field area reduces the need for more power or higher-end routers. Exact router to use TBD.

31 Power Management Voltage Sensing(Battery level) Current Sensing

32 Benchmarking-Power Management # of Resistor required[ohms]- 2(both) # of capacitors required[farad]-2(both) Requires additional circuitry Cost[Dollar-$]- Less expensive for voltage divider Space constraint- less space for voltage divider

33 Current sensing # of Resistor required[ohms]- two for both but Opamp needs special Rsense resistor Hall effect sensor bandwidth can be adjust with an external capacitor Hall effect is more reliable and less expensive Halle effect uses flip chip technology

34 Constant Current for LIDAR Can deliver up 40mA plus of current depending on Vcc Has control signal pin and Enable Low power

35 Software Test Plans Dynamic environment path planning a. Simulate object detected to randomly force updates to global map ( also proves component interaction on master Pi) b. Integrate with actual sensor readings to map as obstructions on global map i. sonar sensors( also proves slave Nano and master Pi communication) ii. Lidar sensor (also proves slave Pi and master Pi communication) Computer guided flight control (execution of moves) a. Create local (on Nano) test movements: lift, land, rolling,advance,distance, rotate (yaw) b. Create a library of basic navigation commands, should be executable a neutral (static hovering position) c. Test consecutive executions of commands from non-neutral positions

36 Software Test Plans cont Facial recognition a. Import and train Voila-Jones OpenCV classifier to at least 90% accuracy b. Apply program in a simulated (manual) search movement. Trilateration a. Test signal interference of multiple routers: accurate calculation of radial distances for 3 routers b. Implement Trilateration and measure variance of coordinates calculated vs. measured Navigation flight command integration a. Test craft ability to follow a planned path using flight controller API (none obstacle) b. Test integration for large easily recognizable objects (such as walls)

37 Bill of Materials Bill of Materials

38 Risk Assessment

39 Project Planning Path Planning Planning

40 Project Planning

41 Project Planning Mechanical Planning

42 Project Planning

43 Project Planning Lidar Planning

44 Project Planning

45 Project Planning Wifi Positioning Planning

46 Project Planning

47 Project Planning Electrical Planning

48 Project Planning

General Software Documentation for P15230: Quadcopter Project. Alyssa Colyette

General Software Documentation for P15230: Quadcopter Project. Alyssa Colyette General Software Documentation for P15230: Quadcopter Project Alyssa Colyette 1 Table of Contents Overall Navigation System 3 Global Pathing 4 The Idea 4 The Algorithm 6 A* PoC and Conclusions (thus far)

More information

P17231: System-Level Design Review

P17231: System-Level Design Review P7: System-Level Design Review Leah Bartnik Gavin Bailey Ben McFadden Ryan Moore Stephen Depot Arthur Svec Jeremy Sardella Agenda Team Goals for System-Level Design Phase Functional Decomposition Benchmarking

More information

Using Sensors with the RoboRIO

Using Sensors with the RoboRIO Using Sensors with the RoboRIO Jeff Bernardis jeff.bernardis@gmail.com David Zhang david.chao.zhang@gmail.com A copy of this presentation is available at: https://drive.google.com/file/d/1sjlpsrm8wbguehgyblcopmrnw2qsmxkf/view?usp=sharing

More information

Aerial Surveillance Drone: Power Management

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

More information

THE RANGER-UAV FEATURES

THE RANGER-UAV FEATURES THE RANGER-UAV The Ranger Series Ranger-UAV is designed for the most demanding mapping applications, no compromises made. With a 9 meter laser range, this system produces photorealistic 3D point clouds

More information

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

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

More information

On a daily basis, first responders are tasked with entering dangerous, often unknown environments

On a daily basis, first responders are tasked with entering dangerous, often unknown environments Ryan Josh Azim The Motivation On a daily basis, first responders are tasked with entering dangerous, often unknown environments These environments usually have little or no visibility due to smoke or other

More information

GROUP 23 Military Surveillance Robotic Vehicle. Ryan Hromada - EE John Baumgartner - EE Austin King - CpE Kevin Plaza - CpE

GROUP 23 Military Surveillance Robotic Vehicle. Ryan Hromada - EE John Baumgartner - EE Austin King - CpE Kevin Plaza - CpE GROUP 23 Military Surveillance Robotic Vehicle Ryan Hromada - EE John Baumgartner - EE Austin King - CpE Kevin Plaza - CpE INTRODUCTION Autonomous tracking vehicle Commands: Basic Movement Commands Wander

More information

PAT9125EL: Optical Tracking Miniature Chip

PAT9125EL: Optical Tracking Miniature Chip PAT9125EL: General Description The PAT9125EL is PixArt Imaging s low power optical tracking miniature chip using PixArt s LASER-based optical navigation technology enabling digital surface tracking. It

More information

Index. Jeff Cicolani 2018 J. Cicolani, Beginning Robotics with Raspberry Pi and Arduino,

Index. Jeff Cicolani 2018 J. Cicolani, Beginning Robotics with Raspberry Pi and Arduino, A Accessor methods, 92 Adafruit, 9 Adafruit DC & Stepper Motor HAT assembling board adjustment, 199 circuit board, 199 kit, 197 pins, 197 preparation, 197 Raspberry Pi, 198, 204 removal, 201 rotation,

More information

Fun Low-power Observer-interactive Waterfall Sponsored by Orlando Utility Commision

Fun Low-power Observer-interactive Waterfall Sponsored by Orlando Utility Commision Fun Low-power Observer-interactive Waterfall Sponsored by Orlando Utility Commision Group 5 - Blue Team Connor Heckman - CPE Ben King - EE Robert Perkins - EE Jack Gray - EE Motivation Existing solar sculptures

More information

Camera gimbal control system for unmanned platforms

Camera gimbal control system for unmanned platforms 8 th International Symposium Topical Problems in the Field of Electrical and Power Engineering Pärnu, Estonia, January 11-16, 2010 Camera gimbal control system for unmanned platforms Kristjan Tiimus, Mart

More information

EEL 4924: Senior Design. 27 January Project Design Report: Voice Controlled RC Device

EEL 4924: Senior Design. 27 January Project Design Report: Voice Controlled RC Device EEL 4924: Senior Design 27 January 2009 Project Design Report: Voice Controlled RC Device Team VR: Name: Name: Kyle Stevenson Email: chrisdo@ufl.edu Email: relakyle@ufl.edu Phone: 8135271966 Phone: 8132051287

More information

Homework 5: Theory of Operation and Hardware Design Narrative

Homework 5: Theory of Operation and Hardware Design Narrative ECE 477 Digital Systems Senior Design Project Rev 9/12 Homework 5: Theory of Operation and Hardware Design Narrative Team Code Name: Hackers of Catron Group No. 03 Team Member Completing This Homework:

More information

Goal: We want to build an autonomous vehicle (robot)

Goal: We want to build an autonomous vehicle (robot) Goal: We want to build an autonomous vehicle (robot) This means it will have to think for itself, its going to need a brain Our robot s brain will be a tiny computer called a microcontroller Specifically

More information

CprE 288 Introduction to Embedded Systems (Project and Platform Overview)

CprE 288 Introduction to Embedded Systems (Project and Platform Overview) CprE 288 Introduction to Embedded Systems (Project and Platform Overview) Instructor: Dr. Phillip Jones http://class.ece.iastate.edu/cpre288 1 Overview of Today s Lecture Announcements What are Embedded

More information

SF10 SF10. Features: The SF10 laser altimeter is ideal for automated landings and precision hovering.

SF10 SF10. Features: The SF10 laser altimeter is ideal for automated landings and precision hovering. The is a compact, lightweight laser altimeter for above-groundlevel altitude measurement from small fixed wing or multi-rotor craft. The laser altimeter is ideal for automated landings and precision hovering.

More information

Formation Control of Crazyflies

Formation Control of Crazyflies Formation Control of Crazyflies Bryce Mack, Chris Noe, and Trevor Rice Advisors: Dr. Ahn, Dr. Wang November 30, 2017 1 Table of Contents 1. 2. 3. Introduction Problem Statement Research Tasks I. II. III.

More information

Overview of the Trimble TX5 Laser Scanner

Overview of the Trimble TX5 Laser Scanner Overview of the Trimble TX5 Laser Scanner Trimble TX5 Revolutionary and versatile scanning solution Compact / Lightweight Efficient Economical Ease of Use Small and Compact Smallest and most compact 3D

More information

Edge Power International (HK) Ltd. Product Specification

Edge Power International (HK) Ltd. Product Specification Edge Power International (HK) Ltd. EPM-1000 GSM Module Specification Product Specification Revision history Revision Date Description V1.0 28/05/2012 Original Date: 5/29/2012 1 TABLE OF CONTENTS1.... INTRODUCTION

More information

ROBOT TEAMS CH 12. Experiments with Cooperative Aerial-Ground Robots

ROBOT TEAMS CH 12. Experiments with Cooperative Aerial-Ground Robots ROBOT TEAMS CH 12 Experiments with Cooperative Aerial-Ground Robots Gaurav S. Sukhatme, James F. Montgomery, and Richard T. Vaughan Speaker: Jeff Barnett Paper Focus Heterogeneous Teams for Surveillance

More information

INSPIRE 1 Quick Start Guide V1.0

INSPIRE 1 Quick Start Guide V1.0 INSPIRE Quick Start Guide V.0 The Inspire is a professional aerial filmmaking and photography platform that is ready to fly right out of the box. Featuring an onboard camera equipped with a 0mm lens and

More information

EEL 5666C FALL Robot Name: DogBot. Author: Valerie Serluco. Date: December 08, Instructor(s): Dr. Arroyo. Dr. Schwartz. TA(s): Andrew Gray

EEL 5666C FALL Robot Name: DogBot. Author: Valerie Serluco. Date: December 08, Instructor(s): Dr. Arroyo. Dr. Schwartz. TA(s): Andrew Gray EEL 5666C FALL 2015 Robot Name: DogBot Author: Valerie Serluco Date: December 08, 2015 Instructor(s): Dr. Arroyo Dr. Schwartz TA(s): Andrew Gray Jacob Easterling INTRODUCTION ABSTRACT One of the fun things

More information

War Field Spy Robot Using Night Vision Technology

War Field Spy Robot Using Night Vision Technology RESEARCH ARTICLE War Field Spy Robot Using Night Vision Technology S.Sivakumar 1, K.Venkata Pallavi 2,V.Tharun 3,K.Yashoda 4 1.(Assistant professor,department of ECE, Annamacharya institute of technology

More information

MP6500 Stepper Motor Driver, Digital Current Control

MP6500 Stepper Motor Driver, Digital Current Control This breakout board for the MPS MP6500 micro stepping bipolar stepper motor driver is Pololu s latest stepper motor driver. The module has a pinout and interface that are very similar to that of our popular

More information

ENY-C2005 Geoinformation in Environmental Modeling Lecture 4b: Laser scanning

ENY-C2005 Geoinformation in Environmental Modeling Lecture 4b: Laser scanning 1 ENY-C2005 Geoinformation in Environmental Modeling Lecture 4b: Laser scanning Petri Rönnholm Aalto University 2 Learning objectives To recognize applications of laser scanning To understand principles

More information

A0061. Overview. Features. Ordering Information. HSS Touch Signature IC 15 Input - I 2 C. Part Number Format: A X Y Z

A0061. Overview. Features. Ordering Information. HSS Touch Signature IC 15 Input - I 2 C. Part Number Format: A X Y Z Sensor5 ADD2 ADD1 SCL SDA Sensor6 Sensor7 Sensor1 Sensor0 Reset NC NC Sensor14 Sensor13 HSS Touch Signature IC 15 Input - I 2 C A0061 Overview The patented AlSentis A0061 Touch IC is a complete 1 15 input

More information

Autonomous Quadrotor for the 2016 International Aerial Robotics Competition

Autonomous Quadrotor for the 2016 International Aerial Robotics Competition Autonomous Quadrotor for the 2016 International Aerial Robotics Competition Alec Ten Harmsel B.S.E. Computer Engineering, 2016, University of Michigan Sajan Patel B.S.E. Computer Science Engineering, 2016,

More information

Camera Positioning System

Camera Positioning System Camera Positioning System Team 79 Members: Junjiao Tian, Jialu Li, and Weicheng Jiang Spring 2017 TA: John Capozzo Table of Contents 1 Introduction 1.1 Objective 1.2 Background 1.3 High-level requirement

More information

Build and Test Plan: IGV Team

Build and Test Plan: IGV Team Build and Test Plan: IGV Team 2/6/2008 William Burke Donaldson Diego Gonzales David Mustain Ray Laser Range Finder Week 3 Jan 29 The laser range finder will be set-up in the lab and connected to the computer

More information

HL2430/2432/2434/2436

HL2430/2432/2434/2436 Features Digital Unipolar Hall sensor High chopping frequency Supports a wide voltage range - 2.5 to 24V - Operation from unregulated supply Applications Flow meters Valve and solenoid status BLDC motors

More information

9 Degrees of Freedom Inertial Measurement Unit with AHRS [RKI-1430]

9 Degrees of Freedom Inertial Measurement Unit with AHRS [RKI-1430] 9 Degrees of Freedom Inertial Measurement Unit with AHRS [RKI-1430] Users Manual Robokits India info@robokits.co.in http://www.robokitsworld.com Page 1 This 9 Degrees of Freedom (DOF) Inertial Measurement

More information

Leica Geosystems UAS Airborne Sensors. MAPPS Summer Conference July 2014 Alistair Stuart

Leica Geosystems UAS Airborne Sensors. MAPPS Summer Conference July 2014 Alistair Stuart Leica Geosystems UAS Airborne Sensors MAPPS Summer Conference July 2014 Alistair Stuart 1 Sensors for UAS! Promise of UAS is to expand aerial data acquisition capabilities for traditional and non-traditional

More information

NanoPower BPX. Datasheet High-capacity battery pack for nano-satellites

NanoPower BPX. Datasheet High-capacity battery pack for nano-satellites NanoPower BPX Datasheet High-capacity battery pack for nano-satellites 1 Table of Contents 1 TABLE OF CONTENTS... 2 2 OVERVIEW... 3 2.1 HIGHLIGHTED FEATURES... 3 2.2 CUSTOMIZATION OPTIONS... 3 2.3 MEASUREMENTS...

More information

Adafruit VL53L0X Time of Flight Micro-LIDAR Distance Sensor Breakout

Adafruit VL53L0X Time of Flight Micro-LIDAR Distance Sensor Breakout Adafruit VL53L0X Time of Flight Micro-LIDAR Distance Sensor Breakout Created by lady ada Last updated on 2016-12-05 06:40:45 PM UTC Guide Contents Guide Contents Overview Sensing Capablities Pinouts Power

More information

Smart Lighting System Final Report Authors Alex Berian, Dustin McCart Client Aleksander Malinowski

Smart Lighting System Final Report Authors Alex Berian, Dustin McCart Client Aleksander Malinowski Smart Lighting System Final Report Authors Alex Berian, Dustin McCart Client Aleksander Malinowski Bradley University Department of Electrical Engineering Date May 10 th, 2016 Executive Summary Smart lighting

More information

Case Study for Long- Range Beyond Visual Line of Sight Project. March 15, 2018 RMEL Transmission and Planning Conference

Case Study for Long- Range Beyond Visual Line of Sight Project. March 15, 2018 RMEL Transmission and Planning Conference Case Study for Long- Range Beyond Visual Line of Sight Project March 15, 2018 RMEL Transmission and Planning Conference 2014 HDR Architecture, 2016 2014 HDR, Inc., all all rights reserved. Helicopters

More information

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

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

More information

Autonomous Quadrotor for the 2014 International Aerial Robotics Competition

Autonomous Quadrotor for the 2014 International Aerial Robotics Competition Autonomous Quadrotor for the 2014 International Aerial Robotics Competition José Gomez B.S.E. Aerospace Engineering 2015 Alec Ten Harmsel B.S.E. Computer Engineering, 2016 ABSTRACT While flight vehicles

More information

MSD II P14226 RC Camera Car Meeting Minutes

MSD II P14226 RC Camera Car Meeting Minutes MSD II P14226 RC Camera Car Meeting Minutes 1/28/14 Tuesday - MSD project room 4435 Contact Bill Finch for computer availability Register ARM day for Freescale events Motor shield status updates Schedule

More information

Appendix F: Design Documentation for multisensory therapy system

Appendix F: Design Documentation for multisensory therapy system Appendix F: Design Documentation for multisensory therapy system This appendix contains in details all the system design. It summarizes at the structure design, electrical design, and software design.

More information

KGCOE MSD Technical Review Agenda WOCCS System Level Detailed Design Review

KGCOE MSD Technical Review Agenda WOCCS System Level Detailed Design Review KGCOE MSD Technical Review Agenda WOCCS System Level Detailed Design Review Review Agenda Meeting Purpose: 1. Evaluate Design 2. Compare to Engineering Specifications and Risk Assessment Materials to be

More information

Engineering Requirements

Engineering Requirements Agenda System Overview Engineering Requirements Updates Test Plan Functional Decomp and System Architecture Benchmarking Motors/actuators Controllers Engineering Analysis (Feasibility) Various Analysis

More information

A0021. Overview. Features. Ordering Information. HSS Touch Signature IC 6 Input - I 2 C. Part Number Format: A X Y Z

A0021. Overview. Features. Ordering Information. HSS Touch Signature IC 6 Input - I 2 C. Part Number Format: A X Y Z VSS NC NC VDD SDA SENSOR 2 SENSOR 1 ADD1 HSS Touch Signature IC 6 Input - I 2 C A0021 Overview The patented AlSentis A0021 Touch IC is a complete 1 6 input touch sensing solution. It includes all signal

More information

Draganflyer X4 - Base Model SKU: DF-X4-BASE-PKG

Draganflyer X4 - Base Model SKU: DF-X4-BASE-PKG Innovative RC Aircraft & Aerial Video Systems Draganflyer X4 - Base Model SKU: DF-X4-BASE-PKG RTF Basic System With no unnecessary moving parts, the Draganflyer X4 helicopter will operate without maintenance

More information

UNIVERSAL CONTROL METHODOLOGY DESIGN AND IMPLEMENTATION FOR UNMANNED VEHICLES. 8 th April 2010 Phang Swee King

UNIVERSAL CONTROL METHODOLOGY DESIGN AND IMPLEMENTATION FOR UNMANNED VEHICLES. 8 th April 2010 Phang Swee King UNIVERSAL CONTROL METHODOLOGY DESIGN AND IMPLEMENTATION FOR UNMANNED VEHICLES 8 th April 2010 Phang Swee King OUTLINES Introduction Platform Design Helicopter Avionics System Ground Station Sensors Measurement

More information

Lesson 17: Building a Hierarchical Design

Lesson 17: Building a Hierarchical Design Lesson 17: Building a Hierarchical Design Lesson Objectives After you complete this lesson you will be able to: Explore the structure of a hierarchical design Editing the Training Root Schematic Making

More information

BUTTER PASSING ROBOT

BUTTER PASSING ROBOT BUTTER PASSING ROBOT By Yu Jie Hsiao Yuchen He Yuxiang Sun Final Report for ECE 445, Senior Design, Spring 2018 TA: Xinrui Zhu 26 April 2018 Project No. 18 Abstract This document demonstrates the design,

More information

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

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

More information

Viano. Chitula Chipimo CSE. Christopher Cunniff CSE. Anna Wildman EE. Kelly Kennedy EE. Advisor: Professor Anderson

Viano. Chitula Chipimo CSE. Christopher Cunniff CSE. Anna Wildman EE. Kelly Kennedy EE. Advisor: Professor Anderson Viano Chitula Chipimo CSE Christopher Cunniff CSE Kelly Kennedy EE Anna Wildman EE Advisor: Professor Anderson Agenda Review of Project MDR Deliverables Demo CDR Deliverables Project Review:What is the

More information

NanoScale Storage Systems Inc.

NanoScale Storage Systems Inc. NanoScale Storage Systems Inc. NanoTechnology for Hard Disk Drives Joe Straub 7100 Nanjemoy CT Falls Church VA 22046-3851 Phone: +1-703-241-0882 FAX: +1-703-241-0735 E-mail: joseph.straub@verizon.net Presented

More information

UAV Autonomous Navigation in a GPS-limited Urban Environment

UAV Autonomous Navigation in a GPS-limited Urban Environment UAV Autonomous Navigation in a GPS-limited Urban Environment Yoko Watanabe DCSD/CDIN JSO-Aerial Robotics 2014/10/02-03 Introduction 2 Global objective Development of a UAV onboard system to maintain flight

More information

Introduction to MATLABs Data Acquisition Toolbox, the USB DAQ, and accelerometers

Introduction to MATLABs Data Acquisition Toolbox, the USB DAQ, and accelerometers Introduction to MATLABs Data Acquisition Toolbox, the USB DAQ, and accelerometers This week we will start to learn the software that we will use through the course, MATLAB s Data Acquisition Toolbox. This

More information

University of Jordan Faculty of Engineering and Technology Mechatronics Engineering Department

University of Jordan Faculty of Engineering and Technology Mechatronics Engineering Department University of Jordan Faculty of Engineering and Technology Mechatronics Engineering Department 2016 Control and Measurement Laboratory Robotino Robot (Mobile Robot System) Robotino Robot Objectives: The

More information

LibrePilot GCS Tutorial

LibrePilot GCS Tutorial LibrePilot GCS Tutorial BY Wirginia Tomczyk page 1 of 13 Introduction The first dron of Drone Team project use Open Pilot Copter Control (CC). It is the flight controller supported by LibrePilot firmware.

More information

AlphaBot2 robot building kit for Raspberry Pi 3 Model B

AlphaBot2 robot building kit for Raspberry Pi 3 Model B AlphaBot2 robot building kit for Raspberry Pi 3 Model B SKU 110060863 Description This AlphaBot2 robot kit is designed to use with Raspberry Pi 3 Model B. It features rich common robot functions including

More information

Electrically tunable large aperture lens EL TC-VIS-20D

Electrically tunable large aperture lens EL TC-VIS-20D Datasheet: EL-16-4-TC-VIS-2D Electrically tunable large aperture lens EL-16-4-TC-VIS-2D By applying an electric current to this shape changing polymer lens, its optical power is controlled within milliseconds

More information

Autonomous Navigation and Mapping using LiDAR

Autonomous Navigation and Mapping using LiDAR Autonomous Navigation and Mapping using LiDAR Steven Alsalamy: alsalamy.steven@gmail.com Ben Foo: benjamincfoo@gmail.com Garrett Frels: gfrels18@gmail.com Faculty Advisor: Dr. Andrew Danowitz Computer

More information

OBSTACLE DETECTION WITH BLUETOOTH CONTROLLED VEHICLE MOTION

OBSTACLE DETECTION WITH BLUETOOTH CONTROLLED VEHICLE MOTION PROJECT REPORT ON OBSTACLE DETECTION WITH BLUETOOTH CONTROLLED VEHICLE MOTION BY Sasank Das Alladi Naga Aiswarya Vadlamani Priyadarsini Pethanaraj Rohit Chaitanya Kunkumagunta ECE 511: MICROPROCESSORS

More information

AS Channels Capacitive Touch Sensor IC From Santa Clara, United States of America

AS Channels Capacitive Touch Sensor IC From Santa Clara, United States of America ASI Competitor Equivalent A Competitor Equivalent B Volts Leading Performance: ESD HBM >8k Volts (Directly Applied to All IC Pins) Operating Temperature up to >+95 0 C Features Overview Analog and Digital

More information

Mobile Autonomous Robotic Sentry (MARS) with Facial Detection and Recognition

Mobile Autonomous Robotic Sentry (MARS) with Facial Detection and Recognition Mobile Autonomous Robotic Sentry (MARS) with Facial Detection and Recognition Tyler M. Lovelly University of Florida, Dept. of Electrical & Computer Engineering 12315 Clarendon Ct Spring Hill, FL 34609

More information

Physical Computing Self-Quiz

Physical Computing Self-Quiz Physical Computing Self-Quiz The following are questions you should be able to answer by the middle of the semeter in Introduction to Physical Computing. Give yourself 6.5 points for questions where you

More information

BASIC-Tiger Application Note No. 030 Rev A joystick for the Tiger. Gunther Zielosko. 1. Basics

BASIC-Tiger Application Note No. 030 Rev A joystick for the Tiger. Gunther Zielosko. 1. Basics A joystick for the Tiger Gunther Zielosko 1. Basics There are many ways in computer technology to convert analog movement into data that is understandable for the computer, thinking about e.g. computer

More information

KGCOE MSD Technical Review Agenda P11213: Land Vehicle for Education: Modular Student Attachment

KGCOE MSD Technical Review Agenda P11213: Land Vehicle for Education: Modular Student Attachment KGCOE MSD Technical Review Agenda P11213: Land Vehicle for Education: Modular Student Attachment Meeting Purpose: 1. Introduction and review of the project 2. Design project recap 3. Mechanical design

More information

ALL-IN-ONE DRONE SOLUTION FOR 3D MODELING

ALL-IN-ONE DRONE SOLUTION FOR 3D MODELING ALL-IN-ONE DRONE SOLUTION FOR 3D MODELING Powered by PHOTO & VIDEO FULL HD 1080P - 14MPX 3-AXIS STABILIZATION AUGMENTED POWER 30MIN FLIGHT TIME 32GB INTERNAL MEMORY INCLUDES 3D MODELING SOFTWARE SAFE VIEW

More information

6 Channel EMI Filter Array with ESD Protection

6 Channel EMI Filter Array with ESD Protection 6 Channel EMI Filter Array with ESD Protection Features Six channels of EMI filtering for data ports Pi-style EMI filters in a capacitor-resistor-capacitor (C-R-C) network Greater than 32dB attenuation

More information

Open Source Software in Robotics and Real-Time Control Systems. Gary Crum at OpenWest 2017

Open Source Software in Robotics and Real-Time Control Systems. Gary Crum at OpenWest 2017 Open Source Software in Robotics and Real-Time Control Systems Gary Crum at OpenWest 2017 Background and some videos for context ASI history with some open source and USU academic roots: asirobots.com

More information

CS4758: Moving Person Avoider

CS4758: Moving Person Avoider CS4758: Moving Person Avoider Yi Heng Lee, Sze Kiat Sim Abstract We attempt to have a quadrotor autonomously avoid people while moving through an indoor environment. Our algorithm for detecting people

More information

Two Module Development Kit Installation and User Instructions For Model No. ED-GV15/30

Two Module Development Kit Installation and User Instructions For Model No. ED-GV15/30 Two Module Development Kit Installation and User Instructions For Model No. ED-GV15/30 This Kit is designed to be used as a development platform; performance, regulatory or safety testing for commercial

More information

ECE 480- Proposal. Team 8- agbot competition. By: Harsh Desai, Yirui Wu, Yanqi Wang, Chen Hao, Sumanto Pal.

ECE 480- Proposal. Team 8- agbot competition. By: Harsh Desai, Yirui Wu, Yanqi Wang, Chen Hao, Sumanto Pal. ECE 480- Proposal Team 8- agbot competition By: Harsh Desai, Yirui Wu, Yanqi Wang, Chen Hao, Sumanto Pal. 10/9/2015 Table of contents Introduction Background Problem Statement Customer requirements Exploring

More information

Autonomous Indoor Hovering with a Quadrotor

Autonomous Indoor Hovering with a Quadrotor Autonomous Indoor Hovering with a Quadrotor G. Angeletti, J. R. Pereira Valente, L. Iocchi, D. Nardi Sapienza University of Rome, Dept. of Computer and System Science, Via Ariosto 25, 00185 Rome, Italy

More information

arxiv: v1 [cs.cv] 1 Jan 2019

arxiv: v1 [cs.cv] 1 Jan 2019 Mapping Areas using Computer Vision Algorithms and Drones Bashar Alhafni Saulo Fernando Guedes Lays Cavalcante Ribeiro Juhyun Park Jeongkyu Lee University of Bridgeport. Bridgeport, CT, 06606. United States

More information

Chapter 5: ASICs Vs. PLDs

Chapter 5: ASICs Vs. PLDs Chapter 5: ASICs Vs. PLDs 5.1 Introduction A general definition of the term Application Specific Integrated Circuit (ASIC) is virtually every type of chip that is designed to perform a dedicated task.

More information

LV8414CSGEVK V1.0 Evaluation Kit User Guide

LV8414CSGEVK V1.0 Evaluation Kit User Guide LV8414CSGEVK V1.0 Evaluation Kit User Guide 03/25/2016 1 www.onsemi.com NOTICE TO CUSTOMERS The LV8414CS Evaluation Kit is intended to be used for ENGINEERING DEVELOPMENT, DEMONSTRATION OR EVALUATION PURPOSES

More information

LCD and Camera EMI Filter Array with ESD Protection

LCD and Camera EMI Filter Array with ESD Protection LCD and Camera EMI Filter Array with ESD Protection Features Six and eight channels of EMI filtering with integrated ESD protection 0.4mm pitch, 15-bump, 2.360mm x 1.053mm footprint Chip Scale Package

More information

FCI-TTI Fine Pitch Mezzanine Presentation. Conan 1.0mm BergStak 0.8mm MezzoStak 0.5mm

FCI-TTI Fine Pitch Mezzanine Presentation. Conan 1.0mm BergStak 0.8mm MezzoStak 0.5mm FCI-TTI Fine Pitch Mezzanine Presentation Conan 1.0mm BergStak 0.8mm MezzoStak 0.5mm 1 FCI-TTI Fine Pitch Mezzanine Conan 1.0mm 2 Contents Fine Pitch Mezzanine Presentation Conan 1.0mm Pages 2-15 BergStak

More information

Matthew Morris Lalit Tanwar

Matthew Morris Lalit Tanwar Adviser: Dr. Becker-Gomez Tim Southerton Brian Grosso Matthew Morris Lalit Tanwar Kevin Meehan Alex Reid 10/01/13 RC Camera Car SDR 1 Background Information Problem Definition Stakeholders RIT Customer

More information

USB-I2C USB to I2C Communications Module Technical Specification

USB-I2C USB to I2C Communications Module Technical Specification Page 1 of 7 USB-I2C USB to I2C Communications Module Technical Specification The USB-I2C module provides a complete interface between your PC and the I2C bus. The module is self powered from the USB cable

More information

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

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

More information

Homework 11: Reliability and Safety Analysis

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

More information

RoboClaw 2x30A Dual Channel Motor Controller

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

More information

Melon S3 FPGA Development Board Product Datasheet

Melon S3 FPGA Development Board Product Datasheet Melon S3 FPGA Development Board Product Datasheet The Melon S3 FPGA is open-source, expandable development board perfect for the learning digital circuit design and prototyping of your unique ideas. You

More information

Mixed-Signal. From ICs to Systems. Mixed-Signal solutions from Aeroflex Colorado Springs. Standard products. Custom ASICs. Mixed-Signal modules

Mixed-Signal. From ICs to Systems. Mixed-Signal solutions from Aeroflex Colorado Springs. Standard products. Custom ASICs. Mixed-Signal modules A passion for performance. Mixed-Signal solutions from Aeroflex Colorado Springs Standard products Custom ASICs Mixed-Signal modules Circuit card assemblies Mixed-Signal From ICs to Systems RadHard ASICs

More information

Extend Your Security into Multi-dimension

Extend Your Security into Multi-dimension Extend Your Security into Multi-dimension - Dahua Industry Drone DRONE & CONTROLLER X650 Diagonal wheelbase: 666 mm Endurance: 25 mins Operating radius: 3~5 km Max. take-off weight: 6.3 kg X820 Diagonal

More information

Camera Drones Lecture 2 Control and Sensors

Camera Drones Lecture 2 Control and Sensors Camera Drones Lecture 2 Control and Sensors Ass.Prof. Friedrich Fraundorfer WS 2017 1 Outline Quadrotor control principles Sensors 2 Quadrotor control - Hovering Hovering means quadrotor needs to hold

More information

TIM-UP 19k-S3-Spartan6

TIM-UP 19k-S3-Spartan6 TIM-UP 19k-S3-Spartan6 Hardware User Manual Contact Bluetechnix Waidhausenstraße 3/19 A-1140 Vienna AUSTRIA office@bluetechnix.com http://www.bluetechnix.com Date: 2016-02-05 Template No.: 900-306 / A

More information

Setpoint Isolators. Technical Manual. HA Issue Parker SSD Drives, a division of Parker Hannifin Ltd. WARRANTY

Setpoint Isolators. Technical Manual. HA Issue Parker SSD Drives, a division of Parker Hannifin Ltd. WARRANTY Technical Manual HA09 Issue 008 Parker SSD Drives, a division of Parker Hannifin Ltd. All rights strictly reserved. No part of this document may be stored in a retrieval system, or transmitted in any form

More information

cytrynka PDB User Guide for power distribution board for zmr/qav/rcx 250 class copters

cytrynka PDB User Guide for power distribution board for zmr/qav/rcx 250 class copters cytrynka PDB User Guide for power distribution board for zmr/qav/rcx 250 class copters 1 Contents 1. Overview and future list 2. Installation 3. Hardware on board 4. Conversion board pins 5. Jumpers 5

More information

AC Input /AC Output. Module

AC Input /AC Output. Module MA0315-06 20 MAY 2006 PAGE 1 AC Input /AC Output Module HE800 / HE-* 120 VAC In, Positive ogic 3A Relay Out * HE- denotes plastic case. This datasheet also covers products starting with IC300. 1 SPECIFICATIOS

More information

Robot For Assistance. Master Project ME-GY 996. Presented By: Karim Chamaa. Presented To: Dr. Vikram Kapila

Robot For Assistance. Master Project ME-GY 996. Presented By: Karim Chamaa. Presented To: Dr. Vikram Kapila Robot For Assistance Master Project ME-GY 996 Presented By: Karim Chamaa Presented To: Dr. Vikram Kapila Project Description Building a robot with an assistance duty. Goals: Build a cheap and independent

More information

RASPBERRY PI EXAMPLES WITH CLICK BOARDS

RASPBERRY PI EXAMPLES WITH CLICK BOARDS RASPBERRY PI EXAMPLES WITH CLICK BOARDS Pi 3 click shield connects the world largest collection of add-on boards click boards with one of the today s most popular embedded platforms Raspberry Pi. Here

More information

Reversible motor driver

Reversible motor driver Reversible motor driver The BA6289F and BA6417F are reversible-motor drivers, with an output current of 600mA for the former and 1A for the latter. Two logic inputs allow four output modes: forward, reverse,

More information

2. POINT CLOUD DATA PROCESSING

2. POINT CLOUD DATA PROCESSING Point Cloud Generation from suas-mounted iphone Imagery: Performance Analysis A. D. Ladai, J. Miller Towill, Inc., 2300 Clayton Road, Suite 1200, Concord, CA 94520-2176, USA - (andras.ladai, jeffrey.miller)@towill.com

More information

Arduino Dock 2. The Hardware

Arduino Dock 2. The Hardware Arduino Dock 2 The Arduino Dock 2 is our supercharged version of an Arduino Uno R3 board. These two boards share the same microcontroller, the ATmel ATmega328P microcontroller (MCU), and have identical

More information

Leica Absolute Tracker AT401 Absolutely portable

Leica Absolute Tracker AT401 Absolutely portable www.leica-geosystems.com/metrology Leica Absolute Tracker AT401 Absolutely portable Leica Absolute Tracker Absolutely portable» The Leica Absolute Tracker AT401 is a portable coordinate measuring machine

More information

3D Scanner PDR. Team 8 Oct. 23, Vangjel Frasheri Siyan Lin Chenkai Zhou. Advisor: Professor Tessier

3D Scanner PDR. Team 8 Oct. 23, Vangjel Frasheri Siyan Lin Chenkai Zhou. Advisor: Professor Tessier 3D Scanner PDR Team 8 Oct. 23, 2015 Vangjel Frasheri Siyan Lin Chenkai Zhou Advisor: Professor Tessier Team Members Vangjel Frasheri CSE Siyan Lin EE Chenkai Zhou EE Professor Tessier Table of Contents

More information

C.L.A.I.M Computerized Luggage and Information Messenger

C.L.A.I.M Computerized Luggage and Information Messenger C.L.A.I.M Computerized Luggage and Information Messenger (Group 10) Ernest Jackman - Electrical Engineer Adrian McGrath - Computer Engineer Tomasz Pytel - Computer Engineer Intro -Problem: Baggage Claim

More information

Universal Keying Adapter 3+

Universal Keying Adapter 3+ Universal Keying Adapter 3+ The Universal Keying Adapter Version 3+ kit will allow you to key nearly any transmitter or transceiver with a straight key, electronic keyer, computer serial or parallel port

More information

High speed laser. altimeter for. accurate mapping. and obstacle. detection. Features: SF30 Accelerated laser rangefinder Product manual

High speed laser. altimeter for. accurate mapping. and obstacle. detection. Features: SF30 Accelerated laser rangefinder Product manual SF30 Accelerated laser rangefinder High speed laser altimeter for accurate mapping and obstacle detection. Features: Update rate of 20K readings per second Accurate, reliable measurements unaffected by

More information

Integrating multiple representations of spatial knowledge for mapping, navigation, and communication

Integrating multiple representations of spatial knowledge for mapping, navigation, and communication Integrating multiple representations of spatial knowledge for mapping, navigation, and communication Patrick Beeson Matt MacMahon Joseph Modayil Aniket Murarka Benjamin Kuipers Department of Computer Sciences

More information