D-Rex. Final Report. An Ho. April 21, 14

Size: px
Start display at page:

Download "D-Rex. Final Report. An Ho. April 21, 14"

Transcription

1 D-Rex Final Report An Ho April 21, 14 University of Florida Department of Electrical and Computer Engineering EEL 4665 IMDL Instructors: A. Antonio Arroyo, Eric M. Schwartz TA: Andrew Gray

2 Table of Contents Abstract... 3 Integrated System... 3 Mobile Platform... 4 Sensors... 6 Special Speech Recognition System... 6 Vision... 8 Behaviors... 9 Conclusion P age

3 Abstract A typical robot is quite cold and mechanical that usually just minds its own business, doing its assigned tasks. A pet like a dog or a cat, however, is much more active and engaging. A pet responses to its owner action with enthusiasm. The purpose of D-Rex is to try and imitate that by giving it a pair of eyes and voice that follow the owner commands. Integrated System The robot use a Raspberry Pi for the high level decision and an expansion board called Gertduino (equivalent to an Arduino Uno) for the low level decision. Typical IR sensors, bump switches, motor controller, and servos are connected to the Gertduino. A camera and a Bluetooth headset are going to be connected to the Raspberry Pi. The block diagram below shows the preliminary components connection of the system. Headset Raspberry Pi Camera Motor Controller Gertduino Servos Figure 1: Integrated system block diagram 3 P age

4 Mobile Platform Figure 2: Preliminary platform The robot is a two wheel drive system with a compact base size that will divide into two levels. The reason is that the second level allows the camera to have a wider range of vision. The platform will be made primarily out of woods to keep cost down and since it is not doing mechanically intensive task, stronger material is unnecessary. In the final design, the power circuit and the lipo battery are mounted on the bottom platform. The power circuit is made with perfboard and mounted with plastic spacer to leave some room underneath for wiring. Figure 3: Bottom Platform (side view) 4 P age

5 Figure 4: Bottom platform (power board view) On the top platform, the Raspberry Pi is mounted with plastic spacers along side a USB powered mini speaker. At the front of the top platform is the camera mounted on two servo, allowing it to have 2-axes of movement. Figure 5: Top platform 5 P age

6 Sensors The robot will have the IR sensors for proximity detection, mechanical switches for bump sensor, a camera as vision, and a headset for voice control. The IR sensor is the typical Sharp sensor that provides an analog voltage level based on the distance of the object in front of it. It is typically very finicky so multiple of them will be used to get a more accurate detection. For the bump sensor, a switch similar to the one in the Bird Buggy by Andrew Gray IMDL robot will be use in the back for when backing up. The main sensor is the camera that will be attached to the Raspberry Pi. It will be used along with OpenCV library to detect different object and act upon it. The headset is an extra sensor that will be used to give command to the robot and demonstrate that it understood the owner. Special Speech Recognition System What s special about D-Rex is its ability to listen to the owner and response to the command given with its speech recognition system. Running inside D-Rex is the Pocketsphinx library. Pocketsphinx is an open source library for speech recognition. Pocketsphinx works by making use of hidden Markov acoustic models (HMMs) and an n-gram statistical language model. Pocketsphinx is a version of Sphinx that can be used on an embedded system, like the Raspberry Pi inside D-Rex. The way the system works is shown below in figure 3. Send command to micro- controller Record What word is it? Write to.wav Processing Read.wav Figure 6: Speech recognition processing steps 6 P age

7 The first step is to record a sound file with the microphone for a certain amount of time. As of this time, it is set to record for 2 seconds. Then, the program would output the data into a.wav file that is then read by the Pocketsphinx decode message function. The decoding would output a array of words that was spoken. By looking at which of the words was spoken, the program would then send a preselected command to the microcontroller to run a variety of action. The process of getting a good audio signal into the program was quite a challenge. The summary of the selection of the microphone suitable for D-REX is as follow: Figure 7: Microphone selection process The first one to be used was a wired microphone, connected to a USB soundcard. This work extremely well, but D-REX needed a wireless microphone to be practical. Thus, the next attempt was with a Bluetooth headset. This proved challenging. The Bluetooth headset connected to the receiver with the Raspberry Pi just fine. Getting the microphone audio was not successful however. Next attempt is with a Pyle Pro wireless microphone system, a set similar to the one used by instructor at university. It works but is very noisy and give false recognition with the poor audio quality. The last attempt is with a Logitech H600 wireless microphone. This device work perfectly, it was a plug-and-play procedure. In its current build, D-REX can understand the following instructions: GO STRAIGHT GO BACK GO LEFT GO RIGHT GO RANDOM FIND GREEN/BLUE/RED (color) FOLLOW GREEN/BLUE/RED (color) 7 P age

8 It is a small list of instruction and definitely not indicative of D-REX full capabilities. Due to the nature of the university wireless network being inaccessible through the Raspberry Pi, D-REX can only accomplish those small tasks. If D-REX is able to connect to the Internet, it can potentially pull in various data, such as weather, time and date, even content. Vision The speech recognition system is great to make D-Rex understand what the owner want but it would still be limited by mundane actions with just a set of motors and servos. To help aid D- Rex with more ability to do complex actions, a camera is also connected to the Raspberry Pi. By using the camera along with the powerful open source OpenCV library, D-Rex can accomplished much greater feat with its ability to see. The vision program would first take in the data from the camera, which is in RGB color space format and convert it to the HSV format. Then it would do a blur filter on the image to reduce random noise. Afterward, depending on which color is being called, it would do a threshold on the image based on a preset value to capture only the color being seek. At this point, based on what the camera is seeing, if the color being seek fill the screen by an amount of pixels greater than a threshold value, it would determine the x-y coordinate of the color and send that information to the microcontroller. Figure 8: Finding a color with OpenCV Figure 9: X-Y coordinate of the color 8 P age

9 The Raspberry Pi is a small, embedded computer with an ARM processor so it does not have as much power as a normal laptop or desktop PC. This means the performance for OpenCV will generally be worse off. However, it is still capable of running at adequate frame rate that D-Rex can still see and track an object with a decent speed. Behaviors At start up, D-Rex will stand still waiting for instruction from the owner. The speaker will indicate when it is ready to accept a new command. A couple LED is being added to indicate this also, in case of the environment being to noisy to know when D-Rex is actually recording. Based on the instruction received, a certain keyword will be sent to the microcontroller to indicate which program is being run. On the Raspberry Pi, a function will be called to complete the instruction. In this case, there are two possible functions to be called on the Raspberry Pi, a Find Color and a Follow Color function. Depend on which function, there are data being sent to the microcontroller based on the vision information, using UART. Conclusion D-Rex, with its special eyes and ears, can accomplish the task of acting like a real life pet. In its current form, D-Rex can understand a few commands. Using the camera with OpenCV library, it can do basic vision processing like looking for a specific color and track it. Given the Raspberry Pi limited power, a more complicated vision program might be too taxing to run at a good speed. However, there are many other ways to improve D-Rex capability. In an environment where D-Rex can be connected to the Internet, its functionality can be vastly improved. Recently, there is a new program called Jasper that utilizes Raspberry Pi and Pocketsphinx to accomplish impressive task with voice command. Google Now and Siri from Google and Apple had also shown great success with what voice command can do. While Google Now, Siri, or Jasper understood voice command, they are immovable, unlike D-Rex. D- Rex is a full fledge robot that can accomplished even greater tasks than what available right now. 9 P age

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

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

More information

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

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

More information

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

acknowledgments...xiii foreword...xiv

acknowledgments...xiii foreword...xiv Contents in Detail acknowledgments...xiii foreword...xiv Introduction... xv Why Build and Learn About Robots?...xvi Why the Raspberry Pi?... xvii What Is in This Book?... xvii Who is This Book For?...xix

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

Brilliant. comfort. sound. exceptional. Mobile Business Series MB Pro 1 & MB Pro 2 Bluetooth Headsets

Brilliant. comfort. sound. exceptional. Mobile Business Series MB Pro 1 & MB Pro 2 Bluetooth Headsets Brilliant sound exceptional comfort Mobile Business Series MB Pro 1 & MB Pro 2 Bluetooth Headsets A genuine ear-opener for the all day user The new MB Pro Series premium Bluetooth headsets deliver outstanding

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

Final Report. EEL 5666 Intelligent Machines Design Laboratory

Final Report. EEL 5666 Intelligent Machines Design Laboratory Final Report EEL 5666 Intelligent Machines Design Laboratory TAs: Mike Pridgen & Thomas Vermeer Instructors: Dr. A. Antonio Arroyo & Dr. Eric M. Schwartz Hao (Hardy) He Dec 08 th, 2009 Table of Contents

More information

Wireless headset user guide

Wireless headset user guide Dragon speech recognition Professional solution Guide Wireless headset user guide For Nuance Dragon product family Contents Wireless headset user guide 1 Contents 2 Overview 3 Charging your headset 4 Wearing

More information

Ancillary Equipment Operation

Ancillary Equipment Operation Ancillary Equipment Operation This document describes how to use the ancillary in the Center for Cognitive and Behavioral Brain Imaging at the Ohio State University. We will briefly describe some design

More information

VidyoDesktop Audio Setup Guide : For version3

VidyoDesktop Audio Setup Guide : For version3 VidyoDesktop Audio Setup Guide : For version3 Audio Best Practice Before Meeting Use recommended speaker and microphone devices to prevent echo and other audio issues. (Please see recommended peripherals

More information

Digital Planet: Tomorrow s Technology and You. George Beekman Ben Beekman. Tenth Edition

Digital Planet: Tomorrow s Technology and You. George Beekman Ben Beekman. Tenth Edition Digital Planet: Tomorrow s Technology and You George Beekman Ben Beekman Tenth Edition Digital Planet: Tomorrow s Technology and You Chapter 3 Hardware Basics Peripherals Chapter 3 Objectives List several

More information

INSTRUCTION MANUAL ODY-555 AGES

INSTRUCTION MANUAL ODY-555 AGES INSTRUCTION MANUAL ODY-555 Ages FOR 8+ AGES 8+ By 1 TABLE OF CONTENTS Get to Know Gizmo!...3 Gizmo s Basic Operations...4 Speech Interactions - Command Gizmo Like a Real Puppy...6 APP Mode - Control with

More information

Computer Devices Part 1 25 Question(s) Test ID:

Computer Devices Part 1 25 Question(s) Test ID: Computer Part 1 25 Question(s) Test ID: 148114 Name: Date: 1) Match the term with the definition Output s Storage How to tell it what to do Allows the user to enter information into a system, such as a

More information

BirdBuggy Autonomous Mobile Parrot Perch

BirdBuggy Autonomous Mobile Parrot Perch BirdBuggy Autonomous Mobile Parrot Perch Andrew C Gray University of Florida Machine Intelligence Lab (MIL) Gainesville, FL 32611 +1 319 541-1182 viron11111@ufl.edu Dr. A. Antonio Arroyo University of

More information

Micro:bit - an Educational & Creative Tool for Kids

Micro:bit - an Educational & Creative Tool for Kids Micro:bit - an Educational & Creative Tool for Kids SKU:DFR0497 INTRODUCTION micro:bit is a pocket-sized microcontroller designed for kids and beginners learning how to program, letting them easily bring

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

GUIDE TO SP STARTER SHIELD (V3.0)

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

More information

WIRELESS VEHICLE WITH ANIMATRONIC ROBOTIC ARM

WIRELESS VEHICLE WITH ANIMATRONIC ROBOTIC ARM WIRELESS VEHICLE WITH ANIMATRONIC ROBOTIC ARM PROJECT REFERENCE NO. : 37S0918 COLLEGE : P A COLLEGE OF ENGINEERING, MANGALORE BRANCH : ELECTRONICS & COMMUNICATION GUIDE : MOHAMMAD RAFEEQ STUDENTS : CHARANENDRA

More information

GARAGE DOOR OPENER BASED ON IMAGE PROCESSING. By \ Mohammed Bashmmakh

GARAGE DOOR OPENER BASED ON IMAGE PROCESSING. By \ Mohammed Bashmmakh GARAGE DOOR OPENER BASED ON IMAGE PROCESSING By \ Mohammed Bashmmakh Outline Introduction Problem Statment Project Requirement Project Specification System Design Progress Introduction Problem Statement

More information

1.0. Presents. techathon 3.0

1.0. Presents. techathon 3.0 1.0 Presents techathon 3.0 Course Content - techathon techathon 3.0 is a Robotics and Embedded systems Workshop designed by team Robo-Minions. It is a 2 days workshop with each day divided into two sessions

More information

Arduino Based Speech Controlled Robot for Human Interactions

Arduino Based Speech Controlled Robot for Human Interactions Arduino Based Speech Controlled Robot for Human Interactions B. Sathish kumar 1, Dr. Radhika Baskar 2 1BE Scholar, Electronics and Communication Engineering, Saveetha School of Engineering, Kuthamakkam,

More information

Interaction with the Physical World

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

More information

AlphaBot2 robot building kit for Arduino

AlphaBot2 robot building kit for Arduino AlphaBot2 robot building kit for Arduino SKU 110060864 Description This AlphaBot2 robot kit is designed to use with an Arduino compatible board UNO PLUS. It features rich common robot functions including

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

ECE791/792 Project Proposal

ECE791/792 Project Proposal ECE791/792 Project Proposal Project Title: Touch Screen, Gaming, and Audio Visual LED Table Team Members: Michael Perez, Michael McManus, Nicholas Nazarenko, Andreas Wigger Advisor: Dr. Richard Messner

More information

SMART VIDEO KITS. Konftel Collaboration solutions

SMART VIDEO KITS. Konftel Collaboration solutions SMART VIDEO KITS Konftel Collaboration solutions 1 Video conferencing. So easy. For 30 years Konftel s mission has been to help people in businesses around the world hold millions of meetings despite distance.

More information

Smart Mirror Group K Hector Zacarias EE Justin Gentry CpE Michael Trivelli CpE

Smart Mirror Group K Hector Zacarias EE Justin Gentry CpE Michael Trivelli CpE Smart Mirror Group K Hector Zacarias EE Justin Gentry CpE Michael Trivelli CpE Motivation Seamless integration of technology into people s daily lives Smart Home technology is a blooming new field Google

More information

Professional Audio Conferencing Products - CONVERGE Pro 2 Series

Professional Audio Conferencing Products - CONVERGE Pro 2 Series Retail Pricing Pricing subject to change without notice. Professional Audio Conferencing Products - CONVERGE Pro 2 Series 910-3200-005 CONVERGE Pro 2 48T DSP Mixer with 4 mic/line inputs (AEC), 8 mic/line

More information

Blackmagic Micro Studio Camera 4K

Blackmagic Micro Studio Camera 4K Blackmagic Micro Studio Camera 4K The world s smallest Ultra HD live studio camera! The Blackmagic Micro Studio Camera 4K is an incredibly tiny Ultra talkback, tally indicator, PTZ control output, built

More information

VL6180 Hookup Guide. Introduction. Board Overview - VL6180 Breakout. Covered in this Tutorial. Suggested Reading

VL6180 Hookup Guide. Introduction. Board Overview - VL6180 Breakout. Covered in this Tutorial. Suggested Reading Page 1 of 5 VL6180 Hookup Guide CONTRIBUTORS: CASEYTHEROBOT Introduction The VL6180 is a Time of Flight (TOF) distance sensor with an I2C ( Wire ) interface. This Hookup Guide will cover two boards. The

More information

ROBOTIC SURVEILLANCE

ROBOTIC SURVEILLANCE ROBOTIC SURVEILLANCE PROJECT REFERENCE NO. : 37S1070 COLLEGE : PES INSTITUTE OF TECHNOLOGY, BANGALORE BRANCH : TELECOMMUNICATION ENGINEERING GUIDE : SUSHMA RAWAL STUDENTS : SHASHANK C VAISHAKH SHIRUR DHANUSH

More information

TOP DAWG PRODUCT CATALOG CAMS BODY CAMS DASH CAMS BACKUP PRODUCTS BLUETOOTH

TOP DAWG PRODUCT CATALOG CAMS BODY CAMS DASH CAMS BACKUP PRODUCTS BLUETOOTH TOP DAWG PRODUCT CATALOG PROVIDING PREMIUM CONSUMER ELECTRONICS THAT HELP YOU SAVE MONEY AND IMPROVE YOUR QUALITY OF LIFE. DASH CAMS BLUETOOTH PRODUCTS BODY CAMS BACKUP CAMS About Us Top Dawg Electronics

More information

LEGO BB-8 Release: LEGO BB-8. Learn how to automate a LEGO BB-8for motion, light, and sound using Crazy Circuits. Written By: Joshua

LEGO BB-8 Release: LEGO BB-8. Learn how to automate a LEGO BB-8for motion, light, and sound using Crazy Circuits. Written By: Joshua LEGO BB-8 Learn how to automate a LEGO BB-8for motion, light, and sound using Crazy Circuits. Written By: Joshua 2018 browndoggadgets.dozuki.com/ Page 1 of 18 INTRODUCTION We absolutely LOVE the new LEGO

More information

HSIP2 User Manual. ios Application Android Application PC Setup

HSIP2 User Manual. ios Application Android Application PC Setup HSIP2 User Manual ios Application Android Application PC Setup Please read all instructions carefully before use to get the most out of your HSIP2 Wireless Surveillance Camera. The design and features

More information

ARDUINO UNO R3 BASED 20A ROBOT CONTROL BOARD [RKI-1580] Page 1

ARDUINO UNO R3 BASED 20A ROBOT CONTROL BOARD [RKI-1580]   Page 1 ARDUINO UNO R3 BASED 20A ROBOT CONTROL BOARD [RKI-1580] http://www.robokitsworld.com Page 1 1. Introduction: The Arduino UNO R3 based 20A robot control board is a versatile motor controller for driving

More information

System Requirements for Online Testing

System Requirements for Online Testing Washington Comprehensive Assessment Program System Requirements for Online Testing 2018 2019 Published August 6, 2018 Prepared by the American Institutes for Research Table of Contents Section I. Introduction...

More information

Jabra motion. User Manual. jabra.com/motion

Jabra motion. User Manual. jabra.com/motion Jabra motion User Manual jabra.com/motion 1. welcome...4 2. headset OVERVIEW...5 3. how to wear... 6 3.1 Height adjustment 6 3.2 Left or right ear wearing style 7 3.3 EARGEL POSITIONING 7 4. how to charge...

More information

Esercitazione con un robot umanoide programmabile per edutainment

Esercitazione con un robot umanoide programmabile per edutainment Corso di Percezione Robotica (PRO) Modulo D: Applicazioni ed Esercitazioni Esercitazione con un robot umanoide programmabile per edutainment Giancarlo Teti RoboTech srl www.robotechsrl.com g.teti@robotechsrl.com

More information

Target User Mobile professional looking for a premium communication headset solution in a discreet and portable form factor.

Target User Mobile professional looking for a premium communication headset solution in a discreet and portable form factor. Voyager 3200 UC Target User Mobile professional looking for a premium communication headset solution in a discreet and portable form factor. Connects to PC, tablet, smartphone Product Descriptor Plantronics

More information

Voluntary Product Accessibility Template (VPAT)

Voluntary Product Accessibility Template (VPAT) Voluntary Product Accessibility Template (VPAT) Date 2017-02-06 Name of Product Top Hat Lecture - Student - Android App Version Contact Steve Pascoe steve.pascoe+vpat@tophat.com Summary Table Criteria

More information

Model: K0073. Smart Robot Car Kit Quick Start Guide

Model: K0073. Smart Robot Car Kit Quick Start Guide Model: K0073 Smart Robot Car Kit Quick Start Guide Smart Robot Car Kit Smart Robot Car Kit M2 nuts 4 pieces M24 micro servo screws 2 bars PTZ self-tapping screws 4 bars M210 round head screws 4 bars 15

More information

An Interactive Technique for Robot Control by Using Image Processing Method

An Interactive Technique for Robot Control by Using Image Processing Method An Interactive Technique for Robot Control by Using Image Processing Method Mr. Raskar D. S 1., Prof. Mrs. Belagali P. P 2 1, E&TC Dept. Dr. JJMCOE., Jaysingpur. Maharashtra., India. 2 Associate Prof.

More information

Master-Blaster Robot Proposal

Master-Blaster Robot Proposal Computer Science 148: Final Project Proposal Master-Blaster Robot Proposal Adam Kenney and Peter Woo (Group 8), April 11, 2004 1. Overview This document describes a system of two robots that will be constructed

More information

Cisco IP Phone Accessories

Cisco IP Phone Accessories Accessories Overview for Cisco IP Phone 8800 Series with Multiplatform Firmware, on page 1 Connect the Footstand, on page 2 Secure the Phone with a Cable Lock, on page 3 External Speakers and Microphone,

More information

MegaPi Born to Motion Control

MegaPi Born to Motion Control MegaPi Born to Motion Control SKU: 10050 Weight: 130.00 Gram 1. Overview MegaPi is a main control board specially designed for makers and also an ideal option for being applied to education field and all

More information

Robotic Systems ECE 401RB Fall 2006

Robotic Systems ECE 401RB Fall 2006 The following notes are from: Robotic Systems ECE 401RB Fall 2006 Lecture 15: Processors Part 3 Chapter 14, G. McComb, and M. Predko, Robot Builder's Bonanza, Third Edition, Mc- Graw Hill, 2006. I. Peripherals

More information

IoE Workshop. Marc Khayat, CCIE #41288, Leonard Janer Technical Managers. June 16

IoE Workshop. Marc Khayat, CCIE #41288, Leonard Janer Technical Managers. June 16 IoE Workshop Marc Khayat, CCIE #41288, makhayat@cisco.com Leonard Janer ljaner@inlea.com Technical Managers June 16 2015 Cisco and/or its affiliates. All rights reserved. Cisco Public 2 2016 Cisco and/or

More information

CONNECT + COLLABORATE

CONNECT + COLLABORATE CONNECT + COLLABORATE WHO SAYS YOU NEED A BIG ROOM TO HAVE A BIG MEETING? As companies change their office space to open floor plans, private offices and traditional conference rooms are becoming a rare

More information

LME Software Block Quick Reference 1. Common Palette

LME Software Block Quick Reference 1. Common Palette LME Software Block Quick Reference Common Palette Move Block Use this block to set your robot to go forwards or backwards in a straight line or to turn by following a curve. Define how far your robot will

More information

Phonak Audéo Marvel. Love at first sound

Phonak Audéo Marvel. Love at first sound Phonak Audéo Marvel Love at first sound The all new Marvel hearing aids express our commitment to improving hearing without limitations For over 70 years, Phonak has continuously strived to create hearing

More information

Using Adobe Connect Pro to Participate in a Seattle Pacific University Course

Using Adobe Connect Pro to Participate in a Seattle Pacific University Course Using Adobe Connect Pro to Participate in a Seattle Pacific University Course Ryan C. LaBrie, Ph.D. Fall 2008 1) Make sure that your webcam and/or microphone are working properly. This can be tested in

More information

LOGITECH MEETUP FAQ WHAT IS MEETUP? Why would I need Logitech MeetUp?

LOGITECH MEETUP FAQ WHAT IS MEETUP? Why would I need Logitech MeetUp? LOGITECH MEETUP FAQ WHAT IS MEETUP? Why would I need Logitech MeetUp? If you re looking to enhance communication between teams working in disparate locations, and these teams work in huddle rooms, then

More information

Rover 5. Explorer kit

Rover 5. Explorer kit Rover 5 Explorer kit The explorer kit provides the perfect interface between your Rover 5 chassis and your micro-controller with all the hardware you need so you can start programming right away. PCB Features:

More information

Follow this and additional works at: Part of the Engineering Commons

Follow this and additional works at:   Part of the Engineering Commons Trinity University Digital Commons @ Trinity Mechatronics Final Projects Engineering Science Department 5-2016 Smart Fan Sang Choi Trinity University, schoi1@trinity.edu Shawn Sunday Trinity University,

More information

Unified Communications

Unified Communications Unified Communications The Right Products For Your Space Executive Office Huddle Room Boardroom Conference Room Auditorium Classroom / Training Room Boardroom Executive Elite Wireless Microphone System

More information

Skype for Business compatibility. Sennheiser Communications solution overview

Skype for Business compatibility. Sennheiser Communications solution overview Skype for Business compatibility Sennheiser Communications solution overview Sennheiser Electronic KG at a Glance Founded in 1945 by Dr. Fritz Sennheiser Market leading audio brand Products range from

More information

vitero Hardware Recommendations

vitero Hardware Recommendations vitero Hardware Recommendations 1 General Information With the vitero tested and recommended hardware components you get maximum comfort in video and sound quality. This avoids audio problems such as inadequate

More information

HSIP2 User Manual. ios Application Android Application PC Setup

HSIP2 User Manual. ios Application Android Application PC Setup HSIP2 User Manual ios Application Android Application PC Setup Please read all instructions carefully before use to get the most out of your HSIP2 Wireless Surveillance Camera. The design and features

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

VOICE CONTROLLED WIRELESS HOME AUTOMATION SYSTEM

VOICE CONTROLLED WIRELESS HOME AUTOMATION SYSTEM VOICE CONTROLLED WIRELESS HOME AUTOMATION SYSTEM Authors: Ezhil Venthan S & Gokulapriyan A, Computer Science and Engineering, Kingston Engineering College, Vellore. Guide: Dr.U.V.Arivazhagu M.E.,M.B.A.,Ph.d.,

More information

Sennheiser BW900 Wireless Microphone with Zoom Switch Analog. Set-Up and Instructions for Use

Sennheiser BW900 Wireless Microphone with Zoom Switch Analog. Set-Up and Instructions for Use Sennheiser BW900 Wireless Microphone with Zoom Switch Analog Set-Up and Instructions for Use This unique microphone is designed for use with a telephone, but can also be connected to a PC via several mechanisms.

More information

LumenX. Mobile Projected Computer

LumenX. Mobile Projected Computer LumenX 3 Mobile Projected Computer TEAM Herman Carmen Gary Mike Davin CMO COO CEO CTO CFO 2 Outline Overview Motivation and Market System Overview Scheduling Finances Project Summary Future Goals Challenges

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

Alcatel-Lucent compatibility. Sennheiser Communications solution overview

Alcatel-Lucent compatibility. Sennheiser Communications solution overview Alcatel-Lucent compatibility Sennheiser Communications solution overview Sennheiser Electronic KG at a Glance Founded in 1945 by Dr. Fritz Sennheiser Market leading audio brand Product range from headphones,

More information

Micro-controllers. Applications in Experimental Aircraft. RAA Meeting Nov 14, Terry Fisher

Micro-controllers. Applications in Experimental Aircraft. RAA Meeting Nov 14, Terry Fisher Micro-controllers Applications in Experimental Aircraft RAA Meeting Nov 14, 2016 Terry Fisher About Me Retired software/hardware designer Pilot Cessna 182T C-GYKF, G1000 Building a Rotorway Exec 162F Mentor

More information

AMPLIFY YOUR DESKTOP

AMPLIFY YOUR DESKTOP AMPLIFY YOUR DESKTOP WHO SAYS YOU NEED A BIG ROOM TO HAVE A BIG MEETING? As companies change their office space to open floor plans, private offices and traditional conference rooms are becoming a rare

More information

SCREAM. Speech Controlled Responsive Electronics and Mechanics. Funded by The Boeing Company

SCREAM. Speech Controlled Responsive Electronics and Mechanics. Funded by The Boeing Company SCREAM Speech Controlled Responsive Electronics and Mechanics Funded by The Boeing Company Group 21 Brett Silver, CpE Heather Lawrence, CpE Angelo Farfan, EE Motivation Provide low cost home automation

More information

Fire Bird V Insect - Nex Robotics

Fire Bird V Insect - Nex Robotics Fire Bird V Insect is a small six legged robot. It has three pair of legs driven by one servo each. Robot can navigate itself using Sharp IR range sensors. It can be controlled wirelessly using ZigBee

More information

HUB-ee BMD-S Arduino Proto Shield V1.0

HUB-ee BMD-S Arduino Proto Shield V1.0 HUB-ee BMD-S Arduino Proto Shield V1.0 User guide and assembly instructions Document Version 1.0 Introduction 2 Schematic 3 Quick user guide 4 Assembly 5 1) DIP Switches 5 2) Micro-MaTch Connector Headers

More information

AMPLIFY YOUR DESKTOP

AMPLIFY YOUR DESKTOP AMPLIFY YOUR DESKTOP WHO SAYS YOU NEED A BIG ROOM TO HAVE A BIG MEETING As companies change their office space to open floor plans, private offices and traditional conference rooms are becoming a rare

More information

The Buyer s Guide to wireless headsets. Engineered for professionals who talk and listen for a living

The Buyer s Guide to wireless headsets. Engineered for professionals who talk and listen for a living The Buyer s Guide to wireless headsets Engineered for professionals who talk and listen for a living The customer call is evolving Business drivers Calls are getting longer and more complex Customer calls

More information

VPAT for Apple ipad mini 3

VPAT for Apple ipad mini 3 VPAT for Apple ipad mini 3 The following Voluntary Product Accessibility information refers to the Apple ipad mini 3 running ios 8 or later. For more information on the accessibility features of the ipad

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

Press Release Sony Announces Wireless Noise Cancelling Headphones with Industry-Leading Noise Cancellation Performance

Press Release Sony Announces Wireless Noise Cancelling Headphones with Industry-Leading Noise Cancellation Performance Press Release Sony Announces Wireless Noise Cancelling Headphones with Industry-Leading Noise Cancellation Performance Your travel companion: the MDR-1000X offers personalized noise cancelling features

More information

Computer Speech. by Dick Evans,

Computer Speech. by Dick Evans, Computer Speech by Dick Evans, www.rwevans.com One of the class attendees wanted to know more about talking to the computer and having it talk back to us. Actually, I think the request was for the speech

More information

Aastra Telecom compatibility. Sennheiser Communications solution overview

Aastra Telecom compatibility. Sennheiser Communications solution overview Aastra Telecom compatibility Sennheiser Communications solution overview Sennheiser s Wireless Headset Portfolio DW & SD Series (DECT) PRESENCE and MB Series (Bluetooth) Sennheiser s Wired Headset Portfolio

More information

VPAT for ipad Pro (12.9-inch) (2nd generation)

VPAT for ipad Pro (12.9-inch) (2nd generation) VPAT for ipad Pro (12.9-inch) (2nd generation) The following Voluntary Product Accessibility information refers to the ipad Pro (12.9-inch) (2nd generation) running ios 10 or later. For more information

More information

09/05/2014. Engaging electronics for the new D&T curriculum. Geoff Hampson Managing Director of Kitronik. Presentation overview

09/05/2014. Engaging electronics for the new D&T curriculum. Geoff Hampson Managing Director of Kitronik. Presentation overview Presentation overview Engaging electronics for the new D&T curriculum Geoff Hampson Managing Director of Kitronik What to include Free web resources Electronic project ideas Using programmable components

More information

Reclaim. Your Office MOBILE BUSINESS SERIES MB 660 UC / MB 660 UC MS. with MB 660 adaptive ANC headset

Reclaim. Your Office MOBILE BUSINESS SERIES MB 660 UC / MB 660 UC MS. with MB 660 adaptive ANC headset Reclaim Your Office with MB 660 adaptive ANC headset MOBILE BUSINESS SERIES MB 660 UC / MB 660 UC MS Minds Wander in Open Workspaces By reducing distracting background noise, you can revitalize your open

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

1 1 Grove: LED Bar [3.3V, Digital] -- Claims not compat with BBG; timing?

1 1   Grove: LED Bar [3.3V, Digital] -- Claims not compat with BBG; timing? 2 3 4 5 6 7 8 9 0 2 3 4 5 6 7 8 9 20 2 22 23 24 25 26 27 28 29 30 3 32 33 34 35 36 37 A B C D E F CMPT 433 Hardware to Lend Last update: Oct 23, 207 Description Quant # Out URL Grove Devices (for BBG)

More information

Intel Do-It-Yourself Challenge Intel Galileo and Edison Paul Guermonprez

Intel Do-It-Yourself Challenge Intel Galileo and Edison Paul Guermonprez Intel Do-It-Yourself Challenge Intel Galileo and Edison Paul Guermonprez www.intel-software-academic-program.com paul.guermonprez@intel.com Intel Software 2014-02-01 Intel Galileo? Arduino? You may know

More information

Bluetooth hands-free solutions and satellite navigation for all requirements.

Bluetooth hands-free solutions and satellite navigation for all requirements. The full range Bluetooth hands-free solutions and satellite navigation for all requirements. A corporation of Funkwerk AG Taking hands-free systems to the next level. EGO, from Funkwerk. EGO. Talk freely

More information

Smart Home Intruder Detection System

Smart Home Intruder Detection System Smart Home Intruder Detection System Sagar R N 1, Sharmila S P 2, Suma B V 3 U.G Scholar, Dept. of Information Science, Siddaganga Institute of Technology, Tumakuru, India Assistant Professor, Dept. of

More information

Ward s Single Probes. When All You Need is One

Ward s Single Probes. When All You Need is One Ward s Single Probes When All You Need is One INTRODUCTION The Ward s Single Probes platform was designed for the classroom with ever-changing needs in mind. Users can select from three different operational

More information

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

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

More information

Wireless DECT Headsets Sennheiser DW and D 10 Series

Wireless DECT Headsets Sennheiser DW and D 10 Series Wireless DECT Headsets Sennheiser DW and D 10 Series Simply the best tools for the job New solutions for changing needs The way we communicate is changing: wireless connections to desk phones or softphones/

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

NAVIGATION/TELECOMMUNICATION - SERVICE INFORMATION

NAVIGATION/TELECOMMUNICATION - SERVICE INFORMATION 8T - 56 NAVIGATION/TELECOMMUNICATION - SERVICE INFORMATION LX NAVIGATION/TELECOMMUNICATION - SERVICE INFORMATION DESCRIPTION TELECOMMUNICATIONS The hands-free cellular system uses Bluetooth technology

More information

BLUETOOTH HEADPHONES

BLUETOOTH HEADPHONES BLUETOOTH HEADPHONES TABLE OF CONTENTS Care and maintenance 3 Specs 3 Battery care 3 Product overview 4 Powering on/off 5 Lights 6 Charging the battery 7 Enter pairing mode 8 IOS 8 Fly anywhere display

More information

University of Florida. Department of Electrical and Computer Engineering. EEL 5666 Intelligent Machines Design Laboratory (IMDL)

University of Florida. Department of Electrical and Computer Engineering. EEL 5666 Intelligent Machines Design Laboratory (IMDL) University of Florida Department of Electrical and Computer Engineering EEL 5666 Intelligent Machines Design Laboratory (IMDL) Final report: Balancing Robot By Wiwat Arunruangsisriloet Instructor: Dr.

More information

ANATOMY. Right ear button Left ear button Charge port/3.5 mm. LED light Microphone

ANATOMY. Right ear button Left ear button Charge port/3.5 mm. LED light Microphone Hi. Good call on picking up the Outdoor Tech CHIPS, universal wireless helmet audio. Your experience of the universe will soon be enhanced wirelessly. This manual exists to help make sure that you use

More information

Modern Robotics Inc. Sensor Documentation

Modern Robotics Inc. Sensor Documentation Sensor Documentation Version 1.0.1 September 9, 2016 Contents 1. Document Control... 3 2. Introduction... 4 3. Three-Wire Analog & Digital Sensors... 5 3.1. Program Control Button (45-2002)... 6 3.2. Optical

More information

On the basis of degree of freedom of the arm and the type of joints used, a robotic arm can have any of the following designs:

On the basis of degree of freedom of the arm and the type of joints used, a robotic arm can have any of the following designs: Available online at www.sciencedirect.com ScienceDirect Procedia Manufacturing 20 (2018) 400 405 www.elsevier.com/locate/procedia 2nd International Conference on Materials Manufacturing and Design Engineering

More information

Android Spybot. ECE Capstone Project

Android Spybot. ECE Capstone Project Android Spybot ECE Capstone Project Erik Bruckner - bajisci@eden.rutgers.edu Jason Kelch - jkelch@eden.rutgers.edu Sam Chang - schang2@eden.rutgers.edu 5/6/2014 1 Table of Contents Introduction...3 Objective...3

More information

Activate. your. Potential. Activate. your. Potential. Activate. your. Potential CULTURE PLUS SERIES

Activate. your. Potential. Activate. your. Potential. Activate. your. Potential CULTURE PLUS SERIES Activate your Potential Activate your Potential Activate your Potential CULTURE PLUS SERIES Activate your potential Headsets are an important consideration in a major UC deployment, so it pays to get

More information

Voluntary Product Accessibility Template

Voluntary Product Accessibility Template Voluntary Product Accessibility Template The purpose of the Voluntary Product Accessibility Template, or VPAT, is to assist Federal contracting officials and other buyers in making preliminary assessments

More information

mbot v1.1 - Blue (Bluetooth Version)

mbot v1.1 - Blue (Bluetooth Version) mbot v1.1 - Blue (Bluetooth Version) SKU 110090103 What is mbot? mbot is an all-in-one solution to enjoy the hands-on experience of programming, electronics, and robotics. What is mbot? mbot is an all-in-one

More information

Software is a computer that tells the computer how to perform particular.

Software is a computer that tells the computer how to perform particular. Name: A is a device that accepts, processes, stores, and produces, all according to a series of stored instructions. _ includes the physical electronic and mechanical devices that process the data. Peripheral

More information