Final Report 26 April 2012

Size: px
Start display at page:

Download "Final Report 26 April 2012"

Transcription

1 EEL 4924 Electrical Engineering Design (Senior Design) Final Report 26 April 2012 Project Title: Keyboard Jockey Team Members: Name: Jeffrey Kaufman Name: Jacob Meacham Project Abstract Our project is a portable version of the musical play-along game genre popularized by "Rock Band", using keyboards. We intend to accomplish this by constructing a center game console and designing a generic keyboard "controller" that allows for each person with their own controller to play the game. Two keyboards will be used to demonstrate the game. The center console will have a monitor controlled by a Serial-to-VGA graphics module that scrolls the notes that are to be played horizontally; in addition, this module will play the song through a speaker while the players follow along on their keyboards. The individual controllers will have an LCD, but it will mostly be used to navigate a menu. The controllers will each have 24 keys that will be pre-programmed to play specific tones, depending on the key of the song. Both the console and the individual controllers will be outfitted with XBee transceivers, allowing for easy wireless communication. All of these peripheral devices will be controlled by ATmega1284P microcontrollers. The console will be powered from a wall outlet, and each controller will be powered by a single 9V battery. Additional educational software will be provided so that the user of a controller can learn the basics of playing the keyboard while not connected to the multiplayer game console. 1

2 Table of Contents Project Features... 3 Concepts and Technology... 4 PCB Layouts... 8 Flowcharts and Diagrams...10 Work Division...13 Gantt Chart Table of Figures 1. XBee Modules µvga II (SGC) top view µvga II (SGC) bottom view Figure 4: multiwatt15 package Active Filter.6 6. Crossover Frequency Response.7 7. Amplifier PCB.8 8. Console PCB.8 9. Controller PCB Keyboard PCB Keyboard Jockey Block Diagram Console Software Flowchart Controller Software Flowchart Work Division Table Keyboard Jockey Gantt Chart

3 Project Features This project will have several features that make it more attractive than what is currently on the market. Keyboard Jockey will have a single gaming console. This console will be responsible for coordinating challenge matches between multiple controllers. Since the controllers communicate wirelessly with the game console, there is also no need to restrict the number of players to 4, as is frequently done on commercial game consoles. The console will have an AC power plug stepped down to a 5V DC for the Serial-to-VGA graphics module. This single module will perform both the.wav decoding from an SD card and the VGA output to a monitor for follow along gaming. Keyboard Jockey will also have the capability to add up to as many controllers as desired. Each console will be battery powered for portability. They will each have actual keys that teach gamers note location and tone memorization. These controllers will be considerably less expensive than comparable competitor products. 3

4 Concepts and Technology ATmega1284P We decided to use the ATmega1284P for both the console and controller microcontrollers, because of the relatively large size of its flash memory and internal timers. The ATmega1284P has 128KB of flash memory, which we believe will be suitable for holding our programs. The size of this memory was the largest we found in a 40-pin DIP package, which ensures that we will be able to solder the part without too much difficulty. The ATmega1284P also contains four timers, which we will need to produce the pulses for the audio circuitry on the keyboard controllers. We intend to use a timer interrupt for each simultaneous tone, requiring three timers to produce chords of three tones, and leaving one timer for general purposes. The ATmega1284P also contains two serial UARTs; the console requires a UART to operate the uvga-ii console, and both the console and controllers each require a UART for the XBee wireless modules. XBee We chose to use the XBee units for wireless communication between our console and controllers in order to avoid the need to construct our own antenna and filtering circuitry. We believe that such a task would cost a lot of time and would take away attention from other important aspects of the project. The Xbee units provide wireless communication in the 2.4 GHz radio band at a maximum rate of 250kbps. Since the communication units are only intended to initially synchronize the controllers before a song and then tally score information at the end of the song, this data rate is quite sufficient. The units can transmit this data at a range of up to 100 feet indoors, which is also suitable for the design of our project. We will be establishing a point to multipoint communications network, where the channel of communication facilitates information exchange between a designated hub (the console) and a large number of outer units (the controllers). Figure 1: XBee Modules Source: 4

5 µvga II (SGC) Originally, it was proposed that the project's console would display the game data (mostly scrolling notes) on an LCD, since programming the LCD would be simple enough so as to not take away time from other aspects of the project. Unfortunately, using an LCD presented a couple of problems. The first issue is that the size of the LCD (a couple of square inches) is simply not large enough if the users intend to play the game from distances of more than a meter. Secondly, we were concerned that writing data to the LCD would take too long, and would not meet the needs of our timing-sensitive game logic. We decided that displaying the game data to a standard VGA monitor was the cleanest and most appealing solution to our problems. We have chosen to use the uvga-ii for the console's graphics rendering and music streaming purposes. The uvga-ii is an embedded module that possesses audio (.WAV) streaming and VGA graphics capabilities, which are controlled by a master microcontroller through an easy serial interface. The module is able to play music and display images from a built in microsd card reader on the module itself; individual files on the SD card are accessed through serial commands. Programs of these commands are also able to be stored on the SD card, so a large enough flash memory would free up the console to perform other tasks (such as communicating with the controllers and handling game logic).the SD card reader is visible in the bottom view of the module, shown in a figure below. The decision to use the uvga-ii module was made on the basis of cost and time reasons. The uvga-ii is listed at $ designing, programming, and constructing the VGA controller alone would take many hours and the cost of a suitable FPGA and board would well exceed the price of the uvga-ii. Once the development time and cost of adding an SD reader and audio decoding circuitry were considered, it became even more apparent that the uvga-ii module is a near perfect solution for the console's objectives. Figure 2: µvga II (SGC) top view Figure 3: µvga II (SGC) bottom view Source: 5

6 STA540 The STA540 is a 4 channel 13W per channel AB amplifier in a multiwatt15 package. This amplifier is appealing because of its ability to bridge the outputs and omit the large capacitors needed at each output in unbridged applications. In our application inside of the module we will use this amplifier to power two peerless 4 1/2 speakers. The amplifier will be powered by one 18V input from the rectified 50V CT transformer regulated by an lm317. Figure 4: multiwatt15 package Source: TDA7294 The TDA7294 is a 100W DMOS audio amplifier in a multiwatt15 package. It is a high power amplifier capable of supply rails up to +- 40V. It is a class AB amplifier with many applications in HiFi audio. In our application we will be using this amplifier to power a 12 sub-woofer. Preamplifier and active crossover Figure 5: Active Filter Source: 6

7 The console audio will have both a preamplifier and an active crossover both implemented before the power amplifier stage. The preamplifier will use a very easy to use design with a single lm358. The lm358 is a low power dual operational amplifier. The active crossover will utilize Texas Instruments tl072, which is a low noise dual amplifier. This will make a 2-way crossover at around 200Hz. Figure 6: crossover frequency response 7

8 PCB Layouts Figure 7: Amplifier PCB Figure 8: Console PCB 8

9 Figure 9: Controller PCB Figure 10: Keyboard PCB 9

10 Flowcharts and Diagrams The following figure is the current block diagram for our project. The block diagram is divided into both a single console and single controller area, but it should be noted that the controller block represents a generic controller which could be replicated numerous times. This diagram also shows most of the hardware flowcharting that has been designed so far. Figure 11: Keyboard Jockey Block Diagram 10

11 The next figure shows the current logic for the program that will be loaded into the console s microcontroller. Since the uvga II (GSC) has the capability to execute extended programs in the SD card s flash memory, most of the graphics rendering commands will be stored outside of the microcontroller, and are not shown here. This will free up both space and time for the console s microcontroller. Figure 12: Console Software Flowchart 11

12 The final figure of this section shows the current logic for the program that will be loaded into the microcontrollers of the keyboard. The subroutine that produces the pulses that will constitute the musical tones and chords is not shown here; we believe that we will implement this by constantly scanning the keys (attached to GPIO pins) and then loading the prescaler registers of the timers according to how long we want the period of the pulse to be. This subroutine would replace the Correct Chord Pressed diamond decision box. It should also be noted that the Tutorial Logic has been omitted for simplicity in this figure. We can make the tutorial as complex or simple as possible near the end of our project, since changes to the tutorial will not affect the constructed hardware. Figure 13: Controller Software Flowchart 12

13 Work Division The Work Division Table produced below is fairly self-explanatory. We intend to split the entire work of the project evenly, with Jeff focusing on Digital interfacing and programming and Jacob focusing on Analog circuitry and project construction. Jeff Jacob Preliminary Research 50% 50% General Design 50% 50% Audio and transformer design 0% 100% Transformer PCB 0% 100% Audio PCB 30% 70% µp PCB 100% 0% Keys PCB 70% 30% Atmel Programming/interface 100% 0% Test/ Debug 70% 30% Soldering Assembly 50% 50% Housing 30% 70% Figure 14: Work Division Table 13

14 Gantt Chart As shown in the Gantt Chart, we intend to finish most of our prototyping before Spring Break, so that we can focus on module integration and project assembly as soon as we return. According to this schedule, we should have at least 2 weeks to test our project (and add more songs!) before the final project demonstration on April 19. 1/10 1/17 1/24 1/31 2/7 2/14 2/21 2/28 3/6 3/13 3/20 3/27 4/3 4/10 Preliminary Research Ordering Parts Prototyping Chords Prototyping Power Prototyping Xbee Testing.wav Streaming Prototyping Display Module Integration Console Construction Controller Construction Game Software Final Product Testing Figure 15: Keyboard Jockey Gantt Chart 14

Preliminary Design Report

Preliminary Design Report EEL 4924 Electrical Engineering Design (Senior Design) Preliminary Design Report 31 Jan 2012 Project Title: Keyboard Jockey Team Members: Name: Jeffrey Kaufman Name: Jacob Meacham Project Abstract Our

More information

Accelerometer-Based Musical Instrument

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

More information

Preliminary Project Design Report. Project Title: LiveDrive Display. Team Name: Team Road Rage

Preliminary Project Design Report. Project Title: LiveDrive Display. Team Name: Team Road Rage EEL 4914 Electrical Engineering Design (Senior Design) Preliminary Project Design Report 28 January 2008 Project Title: LiveDrive Display Team Name: Team Road Rage Team Members: Name: Kenneth Hunter Email:

More information

Wireless Power Panel Meter (WPPM)

Wireless Power Panel Meter (WPPM) Wireless Power Panel Meter (WPPM) Kyle Coan & Phil Perrigo Senior Project Description Western Washington University November 3, 2009 Prof. Todd Morton Page 1 of 13 Introduction With recent development

More information

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

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

More information

Wireless Home Control System

Wireless Home Control System WHCS UCF 1 Wireless Home Control System Project members Jimmy Campbell Computer Engineer Grant Hernandez Computer Engineer Joseph Love Electrical Engineer For Senior Design I at the University of Central

More information

acsequencer Audio Sequencer unit partially controlled via a mobile application. Group 10:

acsequencer Audio Sequencer unit partially controlled via a mobile application. Group 10: acsequencer Audio Sequencer unit partially controlled via a mobile application. Group 10: Brandon Marcoux (CpE) Giani Francis (Cpe) Miguel Chavez (Cpe) Alexis San Javier (Cpe) What is an Audio Sequencer?

More information

GSM MODULE BASED SMART NOTICE BOARD

GSM MODULE BASED SMART NOTICE BOARD GSM MODULE BASED SMART NOTICE BOARD Manpreet Singh Gagandeep Singh Sodhi Azadwinder Singh Abstract-- The ways of addressing public at large viz; bus terminals, railway stations, colleges, universities

More information

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

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

More information

Preliminary Design Report

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

More information

EEL4914 Senior Final Design Report Beatbox Sensei

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

More information

Lost Item Pager. Project Description. Russ Kinley

Lost Item Pager. Project Description. Russ Kinley Lost Item Pager Project Description Russ Kinley Introduction The lost item pager will have a base unit that is stationary, consisting of a few page buttons and a digital display. Each of the buttons will

More information

GROUP 14: ESSENCE OF MUSIC. Joshua Garber EE Baron Dolletski-Lazar CpE Nelson Tan - CpE

GROUP 14: ESSENCE OF MUSIC. Joshua Garber EE Baron Dolletski-Lazar CpE Nelson Tan - CpE GROUP 14: ESSENCE OF MUSIC Joshua Garber EE Baron Dolletski-Lazar CpE Nelson Tan - CpE Motivation Gain experience working with Audio Signals Implementing multiple systems to operate simultaneously (Audio

More information

Home Security System with Remote Home Automation Control

Home Security System with Remote Home Automation Control Home Security System with Remote Home Automation Control Justin Klumpp Senior Project Hardware Description Western Washington University April 24 2005 Professor Todd Morton Introduction: This document

More information

LCD Drawer User Manual

LCD Drawer User Manual LCD Drawer User Manual Part# RM-F117A-SD (16"-short depth) - 1 - This manual, covering various aspects of the equipment such as installation, setup and cascade, will help you make full use of this LCD

More information

Grocery Guard. Paul Santos. Senior Project Description. Western Washington University Electronics Engineering Technology

Grocery Guard. Paul Santos. Senior Project Description. Western Washington University Electronics Engineering Technology Grocery Guard Senior Project Description Western Washington University Electronics Engineering Technology 2012 2013 Paul Santos Table of Contents 1) Introduction Page 2 2) Description & Sketch of Hardware

More information

Introduction to Microcontroller Apps for Amateur Radio Projects Using the HamStack Platform.

Introduction to Microcontroller Apps for Amateur Radio Projects Using the HamStack Platform. Introduction to Microcontroller Apps for Amateur Radio Projects Using the HamStack Platform www.sierraradio.net www.hamstack.com Topics Introduction Hardware options Software development HamStack project

More information

HIGH POWER STREET DANCE BOOMBOX

HIGH POWER STREET DANCE BOOMBOX HIGH POWER STREET DANCE BOOMBOX PBMSPG260L USER MANUAL Location of Controls 1. POWER SWITCH 2. DC IN JACK 3. USB PORT 4. AUX IN JACK 5. BATTERY INDICATOR 6. BLUETOOTH INDICATOR 7. GUITAR INPUT JACK 8.

More information

Homework 4: Packaging Specifications and Design Due: Friday, February 13, at NOON

Homework 4: Packaging Specifications and Design Due: Friday, February 13, at NOON Homework 4: Packaging Specifications and Design Due: Friday, February 13, at NOON Team Code Name: _Magic Wand Group No. 5 Team Member Completing This Homework: Zac Greenawalt E-mail Address of Team Member:

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

PBMSPG200V2. Street Blaster. X Portable BoomBox Speaker Radio with Bluetooth & NFC Wireless Streaming

PBMSPG200V2. Street Blaster. X Portable BoomBox Speaker Radio with Bluetooth & NFC Wireless Streaming PBMSPG200V2 Street Blaster X Portable BoomBox Speaker Radio with Bluetooth & NFC Wireless Streaming Location of Controls 9 10 11 12 13 14 15 16 17 LIGHT 1 2 3 4 5 6 7 8 18 19 1. POWER SWITCH 2. DC IN JACK

More information

Real-Time Parking Information Solution. Team 9. Them Le - EE Danny Russell - CpE Carlos Pereda -

Real-Time Parking Information Solution. Team 9. Them Le - EE Danny Russell - CpE Carlos Pereda - Real-Time Parking Information Solution Team 9 Them Le - EE Danny Russell - CpE Carlos Pereda - Division of Tasks Them Le (EE) Power System, Hardware, Eagle CAD drawings. Carlos Pereda (CpE) Database, Back-end

More information

Headphone Amplifier & Equalizer

Headphone Amplifier & Equalizer May05-01 Headphone Amplifier & Equalizer April 26, 2005 Project Team Information Team Members Jennifer Bruner, Electrical Engineering Mike Dierickx, Electrical Engineering Rachel Hager, Electrical Engineering

More information

Review CTFDINPC-1. Specifications

Review CTFDINPC-1. Specifications Review CTFDINPC-1 Introduction Currently the section of Single-DIN complete systems on the market is marginal. Only a small number of manufacturers specialize in the production of an all around product

More information

Mechanical Assembly Guide

Mechanical Assembly Guide Mechanical Assembly Guide Intel Aero Platform for UAVs October 06 Table of Contents Contents of Compute Board Compute Board Features Contents of Vision Accessory Kit (Optional) Contents of Enclosure Kit

More information

Preliminary Design Report. Project Name: Finger Pointer

Preliminary Design Report. Project Name: Finger Pointer EEL 4924 Electrical Engineering Design (Senior Design) Preliminary Design Report 27 January 2011 Project Name: Finger Pointer Team Members: Name: Nunn, Christopher Name: Hamilton, Travis Project Abstract:

More information

User Manual PBMSPG120CM

User Manual PBMSPG120CM Portable Bluetooth Boombox User Manual PBMSPG120CM Instruction Manual PBMSPG Series Please read this manual carefully before operating and save it for future reference. Location of controls 1 Location

More information

Design Document. May Logging DC Wattmeter. Team Member: Advisor : Ailing Mei. Collin Christy. Andrew Kom. Client: Chongli Cai

Design Document. May Logging DC Wattmeter. Team Member: Advisor : Ailing Mei. Collin Christy. Andrew Kom. Client: Chongli Cai Design Document May13-06 Logging DC Wattmeter Team Member: Ailing Mei Andrew Kom Chongli Cai David Hoffman Advisor : Collin Christy Client: Garmin International Qiaoya Cui 0 Table of Contents EXECUTIVE

More information

INTELLIGENT APPLIANCE CONTROL SYSTEM USING ARM7 AND ZIGBEE

INTELLIGENT APPLIANCE CONTROL SYSTEM USING ARM7 AND ZIGBEE Int. J. Elec&Electr.Eng&Telecoms. 2013 Pushkar Singh et al., 2013 Research Paper ISSN 2319 2518 www.ijeetc.com Vol. 2, No. 3, July 2013 2013 IJEETC. All Rights Reserved INTELLIGENT APPLIANCE CONTROL SYSTEM

More information

Propeller Board of Education (#32900)

Propeller Board of Education (#32900) Web Site: www.parallax.com Forums: forums.parallax.com Sales: sales@parallax.com Technical: support@parallax.com Office: (916) 624-8333 Fax: (916) 624-8003 Sales: (888) 512-1024 Tech Support: (888) 997-8267

More information

PSUFM1280B. Portable PA Speaker System Bundle Kit

PSUFM1280B. Portable PA Speaker System Bundle Kit Portable PA Speaker System Bundle Kit PSUFM1280B with Built-in LED Lights, Rechargeable Battery, Bluetooth Wireless Streaming, Handheld Microphone, MP3/USB/Micro SD/FM Radio (12 -inch, 700 Watt) To be

More information

Wireless Smart Charging System for Mobile Devices

Wireless Smart Charging System for Mobile Devices Wireless Smart Charging System for Mobile Devices Project Description Jacie Unpingco Western Washington University EE Class of 2015-2016 1 Introduction The proposed project is a wireless smart charging

More information

OWNER S MANUAL N15AR ACTIVE BLUETOOTH SPEAKERS RECHARGEABLE ACTIVE BLUETOOTH SPEAKER

OWNER S MANUAL N15AR ACTIVE BLUETOOTH SPEAKERS RECHARGEABLE ACTIVE BLUETOOTH SPEAKER OWNER S MANUAL N12A/N212A ACTIVE BLUETOOTH SPEAKERS N15AR RECHARGEABLE ACTIVE BLUETOOTH SPEAKER INTRODUCTION Thank you for purchasing this NYC Acoustics N-Series Active Bluetooth Speaker. One of the greatest

More information

Exploding Alarm Clock. Group 10 David Baughman Branden Maynes Nathan Johnson

Exploding Alarm Clock. Group 10 David Baughman Branden Maynes Nathan Johnson Exploding Alarm Clock Group 10 David Baughman Branden Maynes Nathan Johnson Motivations Create an alarm clock that would force the user to get out of bed Create a product that would have more functionality

More information

3 PHASE FAULT ANALYSIS WITH AUTO RESET FOR TEMPORARY FAULT AND TRIP FOR PREMANENT

3 PHASE FAULT ANALYSIS WITH AUTO RESET FOR TEMPORARY FAULT AND TRIP FOR PREMANENT e-issn 2455 1392 Volume 3 Issue 4, April 2017 pp. 80 84 Scientific Journal Impact Factor : 3.468 http://www.ijcter.com 3 PHASE FAULT ANALYSIS WITH AUTO RESET FOR TEMPORARY FAULT AND TRIP FOR PREMANENT

More information

ECE 189A Senior Capstone December 16, 2014 Team Leader: Will Miller Charles Crain, Isaac Flores, Brian Phan, Sarah Pilkington

ECE 189A Senior Capstone December 16, 2014 Team Leader: Will Miller Charles Crain, Isaac Flores, Brian Phan, Sarah Pilkington ECE 189A Senior Capstone December 16, 2014 Team Leader: Will Miller Charles Crain, Isaac Flores, Brian Phan, Sarah Pilkington Agenda Project Overview Parts Power Distribution Schematic and Bill of Materials

More information

Research and Design of Universal Proportional Valve Controller

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

More information

PCB-AVR1284-3U. AVR Microcontroller Development PCB for Atmel 40-pin DIP AVRs.

PCB-AVR1284-3U. AVR Microcontroller Development PCB for Atmel 40-pin DIP AVRs. PCB-AVR1284-3U AVR Microcontroller Development PCB for Atmel 40-pin DIP AVRs. Part Number: PCB-AVR1284-3U (unpopulated PCB, no parts) Features A development board for Atmel 40 pin AVR microcontrollers.

More information

HZX N03 Bluetooth 4.0 Low Energy Module Datasheet

HZX N03 Bluetooth 4.0 Low Energy Module Datasheet HZX-51822-16N03 Bluetooth 4.0 Low Energy Module Datasheet SHEN ZHEN HUAZHIXIN TECHNOLOGY LTD 2017.7 NAME : Bluetooth 4.0 Low Energy Module MODEL NO. : HZX-51822-16N03 VERSION : V1.0 1.Revision History

More information

MASTER VISUALLY WINDOWS MOBILE 2003 Getting Started. Entertain On-the-Go. Create a Mobile Office

MASTER VISUALLY WINDOWS MOBILE 2003 Getting Started. Entertain On-the-Go. Create a Mobile Office CHAPTER 1 USING WINDOWS MOBILE 2003 AN INTRODUCTION TO WINDOWS MOBILE 2003 2003 devices have in common, such as an ARM-based processor (Intel StrongARM, XScale, or Texas Instruments OMAP processor). These

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

AUDIO AMPLIFIER PROJECT

AUDIO AMPLIFIER PROJECT Intro to Electronics 110 - Audio Amplifier Project AUDIO AMPLIFIER PROJECT In this project, you will learn how to master a device by studying all the parts and building it with a partner. Our test subject:

More information

Model #28599 Wireless Bluetooth Surround Bar & Subwoofer 285W

Model #28599 Wireless Bluetooth Surround Bar & Subwoofer 285W Model #28599 Wireless Bluetooth Surround Bar & Subwoofer 285W User manual & Safety Guide Thank you for choosing Pure Acoustics. We hope you enjoy each and every use of this product. We suggest that you

More information

MODEL NC400 MULTI-FUNCTION TOUCH-TONE DECODER INSTRUCTION MANUAL

MODEL NC400 MULTI-FUNCTION TOUCH-TONE DECODER INSTRUCTION MANUAL 15385 Carrie Drive Grass Valley, CA 95959 Office: (530) 477-8400 Tech. Support: (530) 477-8402 FAX: (530) 477-8403 Sales: (800) 874-8663 Email: tech@ norcommcorp.com Web: www.norcommcorp.com MODEL NC400

More information

quick start guide portable wireless speaker Welcome PREMIER Instructions en français...9 Instrucciones en español...17

quick start guide portable wireless speaker Welcome PREMIER Instructions en français...9 Instrucciones en español...17 AWSBT10BK PREMIER portable wireless speaker quick start guide Welcome Congratulations on your purchase of this Acoustic Research Premier Series speaker, the ultimate in stereo-capable wireless sound. This

More information

PBMSQG9. Compact & Portable Bluetooth Wireless Speaker. Built-in Rechargeable Battery, MP3/USB/Micro SD Readers, FM Radio

PBMSQG9. Compact & Portable Bluetooth Wireless Speaker. Built-in Rechargeable Battery, MP3/USB/Micro SD Readers, FM Radio PBMSQG9 Compact & Portable Bluetooth Wireless Speaker Built-in Rechargeable Battery, MP3/USB/Micro SD Readers, FM Radio KEY INSTRUNCTIONS: 1 2 3 4 5 6 7 8 9 10 1. Aux-in jack 2. Charging Jack 3. ON/OFF

More information

3. This unit should not be exposed to dripping, splashing or excessive moisture or objects filled with liquid.

3. This unit should not be exposed to dripping, splashing or excessive moisture or objects filled with liquid. Before using your new speaker system please review all information and instruction found in this user manual for the safety of the operator and optimum device performance. Caution: To reduce the risk of

More information

WIRELESS PORTABLE MP3 PLAYER (WPMP3)

WIRELESS PORTABLE MP3 PLAYER (WPMP3) WIRELESS PORTABLE MP3 PLAYER (WPMP3) by Nick Berglund Dustin Stednitz James Weland A SENIOR THESIS PROPOSAL Presented to the Faculty of The Computer and Electronics Engineering Department In Partial Fulfillment

More information

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

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

More information

LCD Drawer User Manual

LCD Drawer User Manual LCD Drawer User Manual Screen Pivot Version - RM-/F21A-R/F24A-R - 1 - This manual, covering various aspects of the equipment such as installation, setup and cascade, will help you make full use of this

More information

CLASSIFYING AND EVALUATING COMPUTERS

CLASSIFYING AND EVALUATING COMPUTERS CLASSIFYING AND EVALUATING COMPUTERS Objectives: Identify types of personal computers Describe desktop computers Compare laptops and tablets Evaluate smartphones Describe embedded computers Describe servers

More information

ECE 511 Project Group 11: MP3 Boombox 12/03/2013. Carlos R Araujo Divya Chinthalapuri Leegia S Jacob Brian D Jarvis Shawn Wilkinson

ECE 511 Project Group 11: MP3 Boombox 12/03/2013. Carlos R Araujo Divya Chinthalapuri Leegia S Jacob Brian D Jarvis Shawn Wilkinson ECE 511 Project Group 11: MP3 Boombox 12/03/2013 Carlos R Araujo Divya Chinthalapuri Leegia S Jacob Brian D Jarvis Shawn Wilkinson Motivation A toy in the entertainment genre: With the use of a single

More information

Group 10 Programmable Sensor Output Simulator Progress Report #2

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

More information

Mohammad Shaffi 1, D Ravi Nayak 2. Dadi Institute of Engineering & Technology,

Mohammad Shaffi 1, D Ravi Nayak 2. Dadi Institute of Engineering & Technology, A Novel Architecture For Measurement of Temperature, Relative Humidity, and Display of Scrolling Message On LED Display By Using Bluetooth Interface With Arduino Nano. Mohammad Shaffi 1, D Ravi Nayak 2

More information

BRS 2001 Portable Audio System

BRS 2001 Portable Audio System Samson Electronics Inc. 3400 E. Slauson Ave. Maywood, CA 90270 Ph: 323.585.6393 Fax: 323.585.6202 Web: http://www.blackmoremobile.com Introduction: BRS 2001 Portable Audio System FCC ID: 2AHR7 BRS 2000

More information

MULTI PURPOSE SECURITY SYSTEM USING GSM

MULTI PURPOSE SECURITY SYSTEM USING GSM International Journal of Scientific & Engineering Research, Volume 3, Issue 10, October-2012 1 MULTI PURPOSE SECURITY SYSTEM USING GSM Manjula B.M Madhu Patil,Prasanna Paga,Naina Karkal Department of Electronics

More information

Low Cost RFID-Based Race Timer for Smaller Events

Low Cost RFID-Based Race Timer for Smaller Events Low Cost RFID-Based Race Timer for Smaller Events Members: Robert Evans, Christie Sitthixay, Edward Tan, Michael Houldsworth ECE Faculty Advisor: Tom Miller Courses Involved: ECE562, ECE633, ECE634, ECE649,

More information

E-Blocks Datalogger Bundle

E-Blocks Datalogger Bundle Page 1 E-Blocks Datalogger Cover Page Page 2 Flowcode Installing Flowcode Instruction for installing Flowcode can be found inside the installation booklet located inside the Flowcode DVD case. Before starting

More information

DSP Research Project

DSP Research Project DSP Research Project The digital signal processing (DSP) research project is a core component of the Physics 351 digital electronics course. The research project component is structured as design, construction,

More information

ZP-PI335GK-BT User s Manual

ZP-PI335GK-BT User s Manual 291-MB387-02ZTF ZP-PI335GK-BT User s Manual No part of this manual, including the products and software described in it, may be reproduced, transmitted, transcribed, stored in a retrieval system, or translated

More information

ACU6. Technical Reference Manual. Specifications Interfacing Dimensions. Document topics. ANSARI Controller Unit Type 6 technical reference manual

ACU6. Technical Reference Manual. Specifications Interfacing Dimensions. Document topics. ANSARI Controller Unit Type 6 technical reference manual ACU6 Technical Reference Manual ANSARI Controller Unit Type 6 technical reference manual Document topics Specifications Interfacing Dimensions Document Version: 1.03 13. January 2013 By ANSARI GmbH Friedrich-Ebert-Damm

More information

ECE 189A Senior Capstone October 29, 2014 Team Leader: Will Miller Charles Crain, Isaac Flores, Brian Phan, Sarah Pilkington

ECE 189A Senior Capstone October 29, 2014 Team Leader: Will Miller Charles Crain, Isaac Flores, Brian Phan, Sarah Pilkington ECE 189A Senior Capstone October 29, 2014 Team Leader: Will Miller Charles Crain, Isaac Flores, Brian Phan, Sarah Pilkington Product Description InfiniTable is a fully interactive, multifunctional table

More information

Stereo applications using the OutCast System

Stereo applications using the OutCast System OUTCAST-S #1 Using the OutCast with the (ipod connected to the dock). ipod OutCast Wireless Speaker The OutCast wireless speaker plays both audio channels (Right and Left). It can control the ipod navigation

More information

Stellaris LM3S3748 Evaluation Kit README FIRST

Stellaris LM3S3748 Evaluation Kit README FIRST Stellaris LM3S3748 Evaluation Kit README FIRST The Stellaris LM3S3748 Evaluation Kit provides a low-cost way to start designing applications with Stellaris microcontrollers on a compact and versatile evaluation

More information

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

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

More information

Embedded Piano Interfaced with LCD

Embedded Piano Interfaced with LCD Embedded Piano Interfaced with LCD Akshita Vinod Nichani U.G. Student, Electronics and Telecommunication Department, DJSCE Shruti Tushar Pistolwala U.G. Student, Electronics and Telecommunication Department,

More information

PXR 1506 / WATT MIXER AMPLIFIER

PXR 1506 / WATT MIXER AMPLIFIER PXR 1506 / 1508 150-WATT MIXER AMPLIFIER Operating Manual www.peavey.com ENGLISH PXR 1506 / 1508 150-Watt, 8-Channel Mixer Amplifier Designed with the latest Peavey technology, the PXR 1506 / 1508 powered

More information

PARTY SPEAKER SRO6163

PARTY SPEAKER SRO6163 PARTY SPEAKER SRO6163 Contents Description of Remote Control...2 The Main Technical Parameter...2 Safety Warning...2 To Customer...3 System Connection...3 Panel Instruction...4-5 Precaution...5 Getting

More information

Homework 6: Printed Circuit Board Layout Design Narrative

Homework 6: Printed Circuit Board Layout Design Narrative Homework 6: Printed Circuit Board Layout Design Narrative Team Code Name: Home Kinection Group No. 1 Team Member Completing This Homework: Stephen Larew E-mail Address of Team Member: sglarew @ purdue.edu

More information

May Taylor Bouvin Anna Grimley Jake Kyro Mike Kinsella Kok Aun Chee [DESIGN DOCUMENT: IPOD BARCODE SCANNER]

May Taylor Bouvin Anna Grimley Jake Kyro Mike Kinsella Kok Aun Chee [DESIGN DOCUMENT: IPOD BARCODE SCANNER] 2012 May-1310 Taylor Bouvin Anna Grimley Jake Kyro Mike Kinsella Kok Aun Chee [DESIGN DOCUMENT: IPOD BARCODE SCANNER] Contents Introduction:... 2 I. Technical Terms Definition... 2 II. Executive Summary...

More information

TEXAS INSTRUMENTS ANALOG UNIVERSITY PROGRAM DESIGN CONTEST MIXED SIGNAL TEST INTERFACE CHRISTOPHER EDMONDS, DANIEL KEESE, RICHARD PRZYBYLA SCHOOL OF

TEXAS INSTRUMENTS ANALOG UNIVERSITY PROGRAM DESIGN CONTEST MIXED SIGNAL TEST INTERFACE CHRISTOPHER EDMONDS, DANIEL KEESE, RICHARD PRZYBYLA SCHOOL OF TEXASINSTRUMENTSANALOGUNIVERSITYPROGRAMDESIGNCONTEST MIXED SIGNALTESTINTERFACE CHRISTOPHEREDMONDS,DANIELKEESE,RICHARDPRZYBYLA SCHOOLOFELECTRICALENGINEERINGANDCOMPUTERSCIENCE OREGONSTATEUNIVERSITY I. PROJECT

More information

Homework 5: Theory of Operation and Hardware Design Narrative Due: Friday, February 15, at NOON

Homework 5: Theory of Operation and Hardware Design Narrative Due: Friday, February 15, at NOON Homework 5: Theory of Operation and Hardware Design Narrative Due: Friday, February 15, at NOON Team Code Name: _Agatha Group No. _4 Team Member Completing This Homework: _Eric Yee e-mail Address of Team

More information

Controller LED ADT MP3-20

Controller LED ADT MP3-20 Manual Controller LED ADT MP3-20 Table of contents 1. Safety instructions... 3 1.1. For safe and efficient operation... 3 2. Introduction... 4 3. Key functions... 4 4. Technical data... 5 5. Dimensions...

More information

AC-Sequencer. Audio Sequencer with Bluetooth. Group 10: Brandon Marcoux (CpE) Giani Francis (Cpe) Miguel Chavez (Cpe) Alexis San Javier (Cpe)

AC-Sequencer. Audio Sequencer with Bluetooth. Group 10: Brandon Marcoux (CpE) Giani Francis (Cpe) Miguel Chavez (Cpe) Alexis San Javier (Cpe) AC-Sequencer Audio Sequencer with Bluetooth Group 10: Brandon Marcoux (CpE) Giani Francis (Cpe) Miguel Chavez (Cpe) Alexis San Javier (Cpe) What is an Audio Sequencer? Project Description Audio Sequencers

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

Mid-year Design Review

Mid-year Design Review Mid-year Design Review Team 5: Helping Hand Team Members: Corey Ruderman, Dan Travis, Jacob Wyner, Joshua Girard Advisor: Professor Duarte ofname in Title and Advisor: Professor Duarte The Team: Corey

More information

Homework 6: Printed Circuit Board Layout Design Narrative Due: Friday, February 27, at NOON

Homework 6: Printed Circuit Board Layout Design Narrative Due: Friday, February 27, at NOON Homework 6: Printed Circuit Board Layout Design Narrative Due: Friday, February 27, at NOON Team Code Name: _Magic Wand Group No. 5 Team Member Completing This Homework: Michelle Zhang E-mail Address of

More information

SECURITY FOR ORGANIZING GSM DIGITAL NOTICE BOARD Dr. Sreeja Mole S S 1, D.Gurunath 2, Yasmeen 3

SECURITY FOR ORGANIZING GSM DIGITAL NOTICE BOARD Dr. Sreeja Mole S S 1, D.Gurunath 2, Yasmeen 3 SECURITY FOR ORGANIZING GSM DIGITAL NOTICE BOARD Dr. Sreeja Mole S S 1, D.Gurunath 2, Yasmeen 3 1 Professor/HOD, Department of ECE, CJITS, Janagon. 2 Assistant Professor, CJITS, Janangon 3 CJITS, Janagon

More information

EMBEDDED SYSTEM DESIGN. George E Hadley, Timothy Rogers, and David G Meyer 2018, Images Property of their Respective Owners

EMBEDDED SYSTEM DESIGN. George E Hadley, Timothy Rogers, and David G Meyer 2018, Images Property of their Respective Owners EMBEDDED SYSTEM DESIGN George E Hadley, Timothy Rogers, and David G Meyer 2018, Images Property of their Respective Owners LEARNING OUTCOMES A student who successfully fulfills the course requirements

More information

Propeller Activity Board (#32910)

Propeller Activity Board (#32910) Web Site: www.parallax.com Forums: forums.parallax.com Sales: sales@parallax.com Technical: support@parallax.com Office: (916) 624-8333 Fax: (916) 624-8003 Sales: (888) 512-1024 Tech Support: (888) 997-8267

More information

Homework 9: Software Design Considerations

Homework 9: Software Design Considerations Homework 9: Software Design Considerations Team Code Name: Mind Readers Group No. 2 Team Member Completing This Homework: Richard Schuman E-mail Address of Team Member: _rschuman_ @ purdue.edu Evaluation:

More information

BLE MODULE SPECIFICATIONS

BLE MODULE SPECIFICATIONS WIRELESS-TAG BLE MODULE SPECIFICATIONS nrf51-01/02/dk Bluetooth Low Energy (BLE) module of nrf51-01/02 is the next generation BLE module released by SEMITRION electronics. The modules use nrf51822 from

More information

Add-on box for old stereo systems. Team #40: Tong Zhao, Chutian Shao, Ziyang Liu ECE 445 Project Proposal - Spring 2017 TA: Jose Sanchez Vicarte

Add-on box for old stereo systems. Team #40: Tong Zhao, Chutian Shao, Ziyang Liu ECE 445 Project Proposal - Spring 2017 TA: Jose Sanchez Vicarte Add-on box for old stereo systems Team #40: Tong Zhao, Chutian Shao, Ziyang Liu ECE 445 Project Proposal - Spring 2017 TA: Jose Sanchez Vicarte 1 Introduction 1.1 Objective While online music stores and

More information

Bluetooth Music Receiver

Bluetooth Music Receiver Bluetooth Music Receiver User Manual Ver. 1.00 All brand names and trademarks are properties of their respective owners. Contents: Chapter 1: Introduction... 3 1.1 Product Introduction... 3 1.2 Features...

More information

Technology in Action. Chapter 8 Mobile Computing: Keeping Your Data on Hand. Copyright 2010 Pearson Education, Inc. Publishing as Prentice Hall

Technology in Action. Chapter 8 Mobile Computing: Keeping Your Data on Hand. Copyright 2010 Pearson Education, Inc. Publishing as Prentice Hall Technology in Action Chapter 8 Mobile Computing: Keeping Your Data on Hand 1 Mobile Computing: Is It Right for You? Advantages Convenience Boost productivity Communicate with others anywhere Access to

More information

Let s first take a look at power consumption and its relationship to voltage and frequency. The equation for power consumption of the MCU as it

Let s first take a look at power consumption and its relationship to voltage and frequency. The equation for power consumption of the MCU as it 1 The C8051F91x/0x product family is designed to dramatically increase battery lifetime which is the number one requirement for most battery powered applications. The C8051F91x has the industry s lowest

More information

e-pg Pathshala Subject : Computer Science Paper: Embedded System Module: Serial Port Communication Module No: CS/ES/11 Quadrant 1 e-text

e-pg Pathshala Subject : Computer Science Paper: Embedded System Module: Serial Port Communication Module No: CS/ES/11 Quadrant 1 e-text e-pg Pathshala Subject : Computer Science Paper: Embedded System Module: Serial Port Communication Module No: CS/ES/11 Quadrant 1 e-text In this lecture, serial port communication will be discussed in

More information

Introduction to the Personal Computer

Introduction to the Personal Computer Introduction to the Personal Computer 2.1 Describe a computer system A computer system consists of hardware and software components. Hardware is the physical equipment such as the case, storage drives,

More information

Getting to know the Arduino IDE

Getting to know the Arduino IDE Getting to know the Arduino IDE I ve heard about Arduino, what the heck is it? Arduino is a development environment Combination of hardware and software Hardware based on Atmel AVR processors Software

More information

H.A.P.P.I. Systems. Group 10 University of Central Florida Senior Design Fall 2016

H.A.P.P.I. Systems. Group 10 University of Central Florida Senior Design Fall 2016 H.A.P.P.I. Systems Group 10 University of Central Florida Senior Design Fall 2016 Team Members Johnnie Greene Taylor Griffith Philip Bent Sidney Jean-Baptiste Physics & Photonic Science Engineer Computer

More information

Figure 1. The SNAP software stack.

Figure 1. The SNAP software stack. SNAP Whitepaper www.synapse-wireless.com SNAP based Wireless Mesh Networks The world is currently seeing an exponential growth in the use of wireless networks for monitoring and control in consumer, commercial,

More information

Group 16: Alexis Timms, EE Sarah Rassel, EE Jeffrey Rodriguez, EE Wendelyn Sanabria, CPE

Group 16: Alexis Timms, EE Sarah Rassel, EE Jeffrey Rodriguez, EE Wendelyn Sanabria, CPE Group 16: Alexis Timms, EE Sarah Rassel, EE Jeffrey Rodriguez, EE Wendelyn Sanabria, CPE Motivation Provide an affordable and reasonably sized device for Alzheimer s patients. There are many tracking devices

More information

Frequently Asked Questions. Nokia E71x

Frequently Asked Questions. Nokia E71x Frequently Asked Questions Nokia E71x general Is the Nokia E71x a quad band device? Yes. What is the battery life of the Nokia E71x? The Nokia E71x offers up to 4.5 hours of 3G talk time*. * Talk and standby

More information

REDCAT ACCESS DETAILED SPECIFICATIONS

REDCAT ACCESS DETAILED SPECIFICATIONS 1.1 OVERALL SYSTEM DESCRIPTION REDCAT ACCESS DETAILED SPECIFICATIONS ALL-IN-ONE CLASSROOM AUDIO SYSTEM A. The system must have specifications and features that are equivalent to the Lightspeed Redcat Access

More information

Wander Watch. robustness and often have to be attached to the wearer s ankle.

Wander Watch. robustness and often have to be attached to the wearer s ankle. Wander Watch Jeffrey Rodriguez, Alexis Timms, Wendelyn Sanabria, and Sarah Rassel Dept. of Electrical Engineering and Computer Science, University of Central Florida, Orlando, Florida, 32816-2450 Abstract

More information

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

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

More information

PXA270 EPIC Computer with Power Over Ethernet & Six Serial Protocols SBC4670

PXA270 EPIC Computer with Power Over Ethernet & Six Serial Protocols SBC4670 PXA270 EPIC Computer with Power Over Ethernet & Six Serial Protocols SBC4670 Features RoHS 520MHz Low-power ARM processor w/ 800 x 600 Color LCD Power Over Ethernet and 10/100BASE-T Ethernet GPS module

More information

PMX6BU. Wireless DJ Sound FX Audio Mixer

PMX6BU. Wireless DJ Sound FX Audio Mixer PMX6BU Wireless DJ Sound FX Audio Mixer Wireless BT Streaming Stage & Studio Mixer System with Karaoke Style Mic-Talkover, MP3/USB/SD Readers, FM Radio PMX6BU Wireless DJ Sound FX Audio Mixer Wireless

More information

)8-,768'HY.LW 2YHUYLHZ. )XMLWVX0LNURHOHNWURQLN*PE+ Am Siebenstein Dreieich-Buchschlag, Germany

)8-,768'HY.LW 2YHUYLHZ. )XMLWVX0LNURHOHNWURQLN*PE+ Am Siebenstein Dreieich-Buchschlag, Germany )8-,768'HY.LW 2YHUYLHZ )XMLWVX0LNURHOHNWURQLN*PE+ Am Siebenstein 6-10 63303 Dreieich-Buchschlag, Germany Revision: V1.0 Date: 05.08.1999 Introduction to FUJITSU Development Kit for 16LX CPU family DevKit16

More information

Hybrid Coax-Wireless Multimedia Home Networks Using Technology. Noam Geri, Strategic Marketing Manager

Hybrid Coax-Wireless Multimedia Home Networks Using Technology. Noam Geri, Strategic Marketing Manager White Paper Hybrid Coax-Wireless Multimedia Home Networks Noam Geri, Strategic Marketing Manager Cable Broadband Communications Group, Texas Instruments Introduction Wireless home networking has emerged

More information