Preliminary Design Report

Size: px
Start display at page:

Download "Preliminary Design Report"

Transcription

1 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 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. This module will have an SD card port to allow the user to easily add new songs to the pool from their PC, provided that they are encoded as a.wav file. The individual controllers will have an LCD, but it will mostly be used to navigate a menu and tutorial. The controllers will each have 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 Flowcharts and Diagrams... 6 Work Division... 9 Gantt Chart Table of Figures 1. XBee Modules µvga II (SGC) top view µvga II (SGC) bottom view 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 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 4: Keyboard Jockey Block Diagram 6

7 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 5: Console Software Flowchart 7

8 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 6: Controller Software Flowchart 8

9 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% Design 50% 50% Board construction 50% 50% Analog circuitry 40% 60% Programming/interface 80% 20% Test/ Debug 60% 40% Physical Assembly 20% 80% Figure 7: Work Division Table 9

10 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 8: Keyboard Jockey Gantt Chart 10

Final Report 26 April 2012

Final Report 26 April 2012 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

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

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

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

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

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

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. 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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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 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

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

Project Final Report Configurable Temperature Logger

Project Final Report Configurable Temperature Logger Project Final Report Configurable Temperature Logger 04/26/2012 Shilin Gan Project Abstract The project I did is called Configurable Temperature Logger. Instead of creating and purchasing new hardware,

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

Unlocking the Potential of Your Microcontroller

Unlocking the Potential of Your Microcontroller Unlocking the Potential of Your Microcontroller Ethan Wu Storming Robots, Branchburg NJ, USA Abstract. Many useful hardware features of advanced microcontrollers are often not utilized to their fullest

More information

Hip Smarthome - Systems User Manual

Hip Smarthome - Systems User Manual Hip Smarthome - Systems User Manual Contents 1. Hip SmartHub Connection / Setup... 3 1.1. Setup Guide... 3 2. Hip SmartTV Connection / Setup... 5 2.1. Setup Guide... 5 3. Hip SmartMusic Connection / Setup...

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

Modular Design of Embedded Software for Distributed Robot Control

Modular Design of Embedded Software for Distributed Robot Control Modular Design of Embedded Software for Distributed Robot Control Nicolas Champagne-Williamson, Computer Science, Cornell University Jason Cortell, Lab Manager, Mechanical and Aerospace Engineering, Cornell

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

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

ipod Tutorial Includes lessons on transferring music to ipod, playing music, and storing files on ipod

ipod Tutorial Includes lessons on transferring music to ipod, playing music, and storing files on ipod ipod Tutorial Includes lessons on transferring music to ipod, playing music, and storing files on ipod apple Apple Computer, Inc. 2004 Apple Computer, Inc. All rights reserved. Apple, the Apple logo, Apple

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

R2 USER MANUAL. Unit overview. Technical Specification. Packaging contents:.the player. Previous,moving up and fast forward playing VOL+ LCD

R2 USER MANUAL. Unit overview. Technical Specification. Packaging contents:.the player. Previous,moving up and fast forward playing VOL+ LCD R2 USER MANUAL Unit overview LCD Previous,moving up and fast forward playing VOL+ Play/Pause/Power On-off/Enter Next,moving down and fast backward playing VOL- Menu button, exit to superior Micro-USB Micro

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

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

EVERSAN. MODEL 9769 BASKETBALL, VOLLEYBALL, WRESTLING SCOREBOARD. Instruction Manual

EVERSAN.   MODEL 9769 BASKETBALL, VOLLEYBALL, WRESTLING SCOREBOARD. Instruction Manual MODEL 9769 BASKETBALL, VOLLEYBALL, WRESTLING SCOREBOARD Instruction Manual Address: 34 Main Street, Whitesboro, NY 13492 Phone: 315-736-3967 Toll Free: 800-383-6060 Fax: 315-736-4058 SCOREBOARDS TIMERS

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

Microchip Technology Enhances Popular 16- and 32-bit Development Platform with Application-Specific Expansion Hardware

Microchip Technology Enhances Popular 16- and 32-bit Development Platform with Application-Specific Expansion Hardware Editorial Contact: Reader/Literature Inquiries: Eric Lawson 1-888-MCU-MCHP 480-792-7182 www.microchip.com/pictailplus eric.lawson@microchip.com Microchip Technology Enhances Popular 16- and 32-bit Development

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

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

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

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

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

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

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

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

Members: Mark Kampfer, Richard Robinson

Members: Mark Kampfer, Richard Robinson DumbleDoor RFID security system Members: Mark Kampfer, Richard Robinson Final Design Report EEL 4924 Electrical Engineering Design 2 Contents List of Figures... 2 Abstract... 2 Introduction... 3 Project

More information

Copyright 2014 Axess Products Corporation. All Rights Reserved

Copyright 2014 Axess Products Corporation. All Rights Reserved SPBT1031 Manual For proper operation, please read this manual carefully before using. Please note that any content revisions will not be declared, and we are not responsible for any consequence caused

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

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

Aud-X 5.1 Help.

Aud-X 5.1 Help. Aud-X 5.1 Help www.aud-x.com Overview Aud-X has been engineered as 5.1 channel surround sound CODEC, and is dedicated for the use with Xvid/Divx based movies. It is of course also possible to compress

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

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

Pong. CSEE 4840 Spring 2012 Project Deisgn. 1 Introduction. Bo Li(bl2438) Jihong Zou (jz2428) Cong Liu (cl2991) Zuyang Cao (zc2220)

Pong. CSEE 4840 Spring 2012 Project Deisgn. 1 Introduction. Bo Li(bl2438) Jihong Zou (jz2428) Cong Liu (cl2991) Zuyang Cao (zc2220) Pong CSEE 4840 Spring 2012 Project Deisgn Bo Li(bl2438) Jihong Zou (jz2428) Cong Liu (cl2991) Zuyang Cao (zc2220) 1 Introduction Our project goal is to design a Pong video game. The rule is easy: Both

More information

USER GUIDE DX100 Digital Audio Player by ibasso

USER GUIDE DX100 Digital Audio Player by ibasso USER GUIDE DX100 Digital Audio Player by ibasso This manual is composed of two parts, the first of which will specifically address the features and operation of the ibasso Music Player while the second

More information

University of Florida EEL 3744 Spring 2018 Dr. Eric M. Schwartz. Good luck!

University of Florida EEL 3744 Spring 2018 Dr. Eric M. Schwartz. Good luck! Page 1/13 Exam 2 Relax! Go Gators! Good luck! First Name Instructions: Turn off all cell phones and other noise making devices and put away all electronics. Show all work on the front of the test papers.

More information

Buses, Video, and Upgrades

Buses, Video, and Upgrades Unit 9 Buses, Video, and Upgrades Copyright 2005 Heathkit Company, Inc. All rights reserved. CPU Parallel Port Memory Keyboard Controller Video Adapter The Data Bus System Controller 2 CPU Memory Keyboard

More information

beamit QUICK START GUIDE

beamit QUICK START GUIDE beamit QUICK START GUIDE CONTENTS WELCOME! Welcome 2 In the Box 3 Keys and Parts 4 Features 5 Getting Started 6 Setup: Connecting in TX Mode Connecting to a TV or Computer 7 Setup: Pairing in TX Mode

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

MODEL SUB Manual

MODEL SUB Manual MODEL SUB Manual 020818 Table of Contents Welcome... 4 Guide to Features... 5. WiFi Mode...6 Setup... 6 Creating a Zone... 9 Selecting Speaker or Speakers for a Zone... 10 All Zones Page... 11 Zone Player

More information

QUICK REFERENCE GUIDE

QUICK REFERENCE GUIDE Overview The Ultimate Hookup Wireless, Whenever! With Broadband2Go, customers can stay connected to their favorite sites, check emails, shop, chat, and play games even when they re away from home. Whether

More information

FPGA Development Board Hardware and I/O Features

FPGA Development Board Hardware and I/O Features CHAPTER 2 FPGA Development Board Hardware and I/O Features Photo: The Altera DE1 board contains a Cyclone II FPGA, external SRAM, SDRAM & Flash memory, and a wide assortment of I/O devices and connectors.

More information

Technology in Action Complete, 13e (Evans et al.) Chapter 8 Digital Devices and Media: Managing a Digital Lifestyle

Technology in Action Complete, 13e (Evans et al.) Chapter 8 Digital Devices and Media: Managing a Digital Lifestyle Technology in Action Complete, 13e (Evans et al.) Chapter 8 Digital Devices and Media: Managing a Digital Lifestyle 1) Some 3d printers work by controlling the exact locations where a liquid will be exposed

More information

Features. Warnings and Precautions READ BEFORE OPERATING EQUIPMENT SAVE THESE INSTRUCTIONS

Features. Warnings and Precautions READ BEFORE OPERATING EQUIPMENT SAVE THESE INSTRUCTIONS SENTA Warnings and Precautions READ BEFORE OPERATING EQUIPMENT SAVE THESE INSTRUCTIONS To prevent damage to your radio or possible injury to you or others, read these safety precautions and instructions

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

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

A Low-Cost Energy Management System That Compares Power Consumption of Electronic Home Appliances

A Low-Cost Energy Management System That Compares Power Consumption of Electronic Home Appliances IOSR Journal of Engineering (IOSRJEN) e-issn: 2250-3021, p-issn: 2278-8719, Volume 2, Issue 9 (September 2012), PP 06-10 A Low-Cost Energy Management System That Compares Power Consumption of Electronic

More information

Project Final Report Bluetooth Camera Sensor. Project Abstract. Status. Specification

Project Final Report Bluetooth Camera Sensor. Project Abstract. Status. Specification Project Final Report Bluetooth Camera Sensor 04/21/2011 Yichao Yu Project Abstract There are many ways to control a robot. I m thinking why we cannot just use a common portable device as a remote controller

More information

Tutorial. Includes lessons on transferring music to ipod, playing music, and storing files on ipod

Tutorial. Includes lessons on transferring music to ipod, playing music, and storing files on ipod Tutorial Includes lessons on transferring music to ipod, playing music, and storing files on ipod The information in this document is subject to change without notice. Hewlett-Packard Company makes no

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

Integrated Wireless Mini Scoreboards for Team Sports 2.4 GHz Wireless

Integrated Wireless Mini Scoreboards for Team Sports 2.4 GHz Wireless Integrated Wireless Mini Scoreboards for Team Sports 2.4 GHz Wireless User Guide F988 Rev. 201805 Customer Service Department www.coloradotime.com Email: customerservice@coloradotime.com Phone: +1 970-667-1000

More information

Project Abstract with Diagram(s)

Project Abstract with Diagram(s) EEL 4924 Electrical Engineering Design (Senior Design) Project Abstract with Diagram(s) 27 January 2009 Project Title: Initech V7.017b Lab Entry System Team Name: Capacitive Inductance or Negative resistance

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

Adafruit Feather nrf52840 Express

Adafruit Feather nrf52840 Express Adafruit Feather nrf52840 Express PRODUCT ID: 4062 The Adafruit Feather nrf52840 Express is the new Feather family member with Bluetooth Low Energy and native USB support featuring the nrf52840! It's our

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

By Ambuj Varshney & Akshat Logar

By Ambuj Varshney & Akshat Logar By Ambuj Varshney & Akshat Logar Wireless operations permits services, such as long range communications, that are impossible or impractical to implement with the use of wires. The term is commonly used

More information

A Wireless Identification System to Assist Sight- Constrained People

A Wireless Identification System to Assist Sight- Constrained People A Wireless Identification System to Assist Sight- Constrained People Dec06-06 5 December 2006 Client: Mr. Curtis Chong Iowa Department for the Blind Faculty Advisor: Dr. Zhengdao Wang Team: Jerad Harmsen

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

SECOND EDITION. Arduino Cookbook. Michael Margolis O'REILLY- Tokyo. Farnham Koln Sebastopol. Cambridge. Beijing

SECOND EDITION. Arduino Cookbook. Michael Margolis O'REILLY- Tokyo. Farnham Koln Sebastopol. Cambridge. Beijing SECOND EDITION Arduino Cookbook Michael Margolis Beijing Cambridge Farnham Koln Sebastopol O'REILLY- Tokyo Table of Contents Preface xi 1. Getting Started 1 1.1 Installing the Integrated Development Environment

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

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

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

Mobile Diagnostics for Personal Electrics Transportation Devices

Mobile Diagnostics for Personal Electrics Transportation Devices Mobile Diagnostics for Personal Electrics Transportation Devices Item Type text; Proceedings Authors Gilchrist, Zachary A. Publisher International Foundation for Telemetering Journal International Telemetering

More information

IMPORTANT SAFETY INSTRUCTIONS. When using this electronic device, basic precautions should always be taken, including the following:

IMPORTANT SAFETY INSTRUCTIONS. When using this electronic device, basic precautions should always be taken, including the following: IMPORTANT SAFETY INSTRUCTIONS When using this electronic device, basic precautions should always be taken, including the following: 1. Read all instructions before using the product. 2. Do not use this

More information

Terminology, Types of Computers & Computer Hardware

Terminology, Types of Computers & Computer Hardware Terminology, Types of Computers & Computer Hardware Basic Terminology 1.Computer A device that accepts input, processes data, stores data, and produces output, all according to a series of stored instructions.

More information

Module Introduction. This training module provides an overview of Freescale s scalable solutions for low data rate 2.4 GHz connectivity.

Module Introduction. This training module provides an overview of Freescale s scalable solutions for low data rate 2.4 GHz connectivity. Module Introduction Purpose This training module provides an overview of Freescale s scalable solutions for low data rate 2.4 GHz connectivity. Objectives Understand Freescale s approach to ZigBee architecture

More information

Mudd Adventure. A 3D Raycasting Game. CSEE 4840 Embedded Systems. Project Design 3/27/2014

Mudd Adventure. A 3D Raycasting Game. CSEE 4840 Embedded Systems. Project Design 3/27/2014 Mudd Adventure A 3D Raycasting Game CSEE 4840 Embedded Systems Project Design 3/27/2014 Mingrui Xu(mx2151) Wei Cao (wc2467) Bowen Dang (bd2384) Shijie Hu (sh3251) Table of Contents Introduction... 3 Hardware...

More information

MANUAL PELITT MINI 1

MANUAL PELITT MINI 1 MANUAL PELITT MINI 1 TABLE OF CONTENTS 1. Warnings 3 2. Getting Started 3 3. Your Phone 4 4. File Manager 4 5. Phone book 4 6. Fun&Games 4 7. Call center 4 8. Messaging 4 9. Multimedia 5 10. Organizer

More information

Computers Are Your Future

Computers Are Your Future Computers Are Your Future 2008 Prentice-Hall, Inc. Computers Are Your Future Chapter 6 Inside the System Unit 2008 Prentice-Hall, Inc. Slide 2 What You Will Learn... Understand how computers represent

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

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