page 1 of 6

Size: px
Start display at page:

Download "page 1 of 6"

Transcription

1 Lab Project 9: Generating Musical Notes Using the Amplifier Module For more info: Revision: September 2, 2009 Overview The information that follows refers to the implementation of an application using the Digilent PmodAMP1 Speaker/Headphone Amplifier Module. This document describes the module s capabilities, as well as the features used to send a signal to the module. Bold numbers in brackets refer to the bibliography below. PmodAMP1 Speaker/Headphone Amplifier Module The PmodAMP1 amplifies low power audio signals to drive either stereo headphones or a monophonic speaker. The speaker is driven from the left stereo input. The audio inputs to the module are provided through a Digilent 6-pin Pmod connector. A 1/8-inch stereo audio jack is used for the headphone output and a 1/8-inch mono audio jack is used for the speaker output. Unlike most Digilent Pmods, which accept only digital inputs, the PmodAMP1 accepts analog inputs as well as pulse width modulated digital inputs.[2] Features of the PmodAMP1 include: a National Semiconductor LM4838 audio amplifier IC a 1/8-inch stereo headphone jack a 1/8-inch mono speaker jack a 6-pin header for inputs 3V-5V operating voltage [2] Usage The PmodAMP1 accepts either digital or analog inputs. The input voltage range is 0-Vcc. Typically the module uses power supplied by a Digilent system board and is operated at 3.3V. The maximum power supply voltage is 5.0V. The inputs for the amplifier and the power to the module are provided on connector J1. The PmodAMP1 provides a band-pass filter on the input with a high pass cutoff frequency of approximately 150Hz and a low pass cutoff frequency of approximately 8KHz. A digital input is typically a pulse width modulated (PWM) signal generated by a digital output from a Digilent programmable logic system board. The low pass filter on the input acts as a reconstruction filter to convert the pulse width modulated digital signal into an analog voltage on the amplifier input. The PmodAMP1 also accepts analog inputs with an input voltage range of 0-Vcc. These inputs are typically the output of an analog to digital converter module, like the Digilent PmodDA1 or PmodDA2, but could also be a line level signal from some other audio source. The output of a digital to analog converter module typically has a voltage range of 0-3.3V and should have a sample rate of at least 16Khz. The low pass filter on the input again acts as a reconstruction filter and removes the high frequency artifacts introduced by the sampling process. A line level input, page 1 of 6

2 like the output of a portable CD player or MP3 player, is typically a 1V peak-to-peak analog voltage. [2] The input voltage, from whatever signal source is used, is filtered by the input band-pass filter, amplified, and then sent to the output jacks to drive either a speaker or headphones. Connector J2 is the speaker output. Connector J3 is the headphone output (see Figure 1). Both headphones and a speaker can be connected and driven simultaneously. The potentiometer, R2, is a volume control and can be used to adjust the output level. In Figure 2, the order of the pins of input connector J is shown. It can be seen that two of the pins are left unconnected, maybe for future purposes. [2] The PmodAMP1 is typically used with a Digilent programmable logic system board generating pulse width modulated digital outputs or generating analog output via a digital to analog converter module. Most Digilent system boards, like the Basys and Nexys, have 6-pin connectors that allow the PmodAMP1 to plug directly into the system board or to connect via a Digilent 6-pin cable. [2] For more information about the operation and features of the LM4838 audio amplifier IC, refer to [4]. Figure 1 Block Diagram Example Project Figure 2 Input Connector J1 The project presented uses the PmodAMP1 to receive digital signals in order to generate the musical notes of the diatonic scale. Each of these notes has a certain generation frequency, and according to that, the sound having that frequency is the corresponding note. The application generates each note for a second. In order to do that, the Timer 0 and 1 interrupts were used; Timer1 for a second interrupt, with an index that has the maximum value 7, to ensure that all seven notes have been played; Timer0 page 2 of 6

3 changes the value of TCNT register every second, and is loaded with different values corresponding to the frequencies of the musical notes. Main Function Software Diagram Start Timers and ports initialization The Timer0ChangeValues function call Timer0 and 1 interrupts sound generation Figure 3 Main Function Diagram Timer1 Interrupt Function The interrupt occurs every second and increments a variable until it reaches the value of 7, then resets it. At the end, it reloads the TCNT registers. The code is as follows: ISR(TIMER1_OVF_vect) j=j+1; //increments the variable for changing the frequency every second if (j==7) //reset j if all notes have been played j=0; TCNT1H=0xE1; TCNT1L=0x7B; Timer0 Interrupt Function //one second interrupt This timer manages the frequencies for musical notes. According to the variable for selecting the value for TCNT, this function changes the TCNT0 register, thus the time interval at which the interrupt occurs. The code is as follows: ISR(TIMER0_OVF_vect) page 3 of 6

4 PORTD=~PORTD; //toggles port D TCNT0=low[j]; //loads the timer register with the corresponding value for each sound frequency Timers Initialization Function The normal operation mode is selected, for counting, the overflow type of interrupt and the 1024 value for prescaler. The Timer1 TCNT register is also loaded with the corresponding value for one second interrupt. void Timer1Init(void) TCCR1A=0x00; TCCR1B=0x05; TCCR0=0x07; TIMSK=0x05; TCNT1H=0xE1; TCNT1L=0x7B; //normal mode operation //1024 prescaler //1024 prescaler for timer0, normal mode operation //enables interrupts //one second interrupt Timer0 Values Function The values for Timer0 result from the frequencies of each musical note. Using the mode of number calculation presented in Lab Project 2, the interrupt timing is determined as the period of each note. Since there are seven musical notes, for each of them there is a certain frequency and a certain interrupt timing. The code is presented below. void Timer0ChangeValues(void) low[0]=0xe2; // Do note low[1]=0xe5; // Re low[2]=0xe8; // Mi low[3]=0xe9; // Fa low[4]=0xec; // Sol low[5]=0xee; // La low[6]=0xf0; // Si Tasks 1. Create a new project with two headers like in the previous projects and then in the text editor copy the functions presented above and the lines from the first part of the project found at the end of the document. 2. Implement the same type of application but change the values to be loaded in the TCNT0 register; this is equivalent to changing the scale of the musical notes. Compute the values for higher frequencies. 3. In this lab project you learned the PmodAMP1 s capabilities and you now know that beside the digital signals allowed at the PmodAMP1 s output, there are analog ones, too. Try to implement an application in which you use the information from Lab Project 8 to generate different waveforms, and see what the corresponding sound is like. page 4 of 6

5 Tip: You have to connect the PmodAMP1 to the output of PmodDA1 in order to be able to receive an analog signal. page 5 of 6

6 Bibliography [1] [2] [3] [4] [5] [6] Application Source Code /* Include File Definitions */ #include <stdio.h> #include <avr/io.h> #include <util/delay.h> #include <avr/interrupt.h> #include "CerebotII.h" #include "StdTypes.h" /* Global Variables */ int i,j=0; char low[7]; /* Forward Declarations */ void DeviceInit(); void Timer1Init(); void Timer0ChangeValues(); page 6 of 6

AVR Timer/Counter. Prof Prabhat Ranjan DA-IICT, Gandhinagar

AVR Timer/Counter. Prof Prabhat Ranjan DA-IICT, Gandhinagar AVR Timer/Counter Prof Prabhat Ranjan DA-IICT, Gandhinagar 8-bit Timer/Counter0 with PWM Single Compare Unit Counter Clear Timer on Compare Match (Auto Reload) Glitch-free, Phase Correct Pulse Width Modulator

More information

Welcome to the tutorial for the MPLAB Starter Kit for dspic DSCs

Welcome to the tutorial for the MPLAB Starter Kit for dspic DSCs Welcome to the tutorial for the MPLAB Starter Kit for dspic DSCs Welcome to this tutorial on Microchip s MPLAB Starter Kit for dspic Digital Signal Controllers, or DSCs. The starter kit is an all-in-one

More information

1. Learn about the 555 timer integrated circuit and applications 2. Apply the 555 timer to build an infrared (IR) transmitter and receiver

1. Learn about the 555 timer integrated circuit and applications 2. Apply the 555 timer to build an infrared (IR) transmitter and receiver Electronics Exercise 2: The 555 Timer and its Applications Mechatronics Instructional Laboratory Woodruff School of Mechanical Engineering Georgia Institute of Technology Lab Director: I. Charles Ume,

More information

Pmod peripheral modules are powered by the host via the interface s power and ground pins.

Pmod peripheral modules are powered by the host via the interface s power and ground pins. Digilent Pmod Interface Specification Revision: November 20, 2011 1300 NE Henley Court, Suite 3 Pullman, WA 99163 (509) 334 6306 Voice (509) 334 6300 Fax Introduction The Digilent Pmod interface is used

More information

ETEC 421 - Digital Controls PIC Lab 10 Pulse Width Modulation

ETEC 421 - Digital Controls PIC Lab 10 Pulse Width Modulation ETEC 421 - Digital Controls PIC Lab 10 Pulse Width Modulation Program Definition: Write a program to control the speed of a dc motor using pulse width modulation. Discussion: The speed of a dc motor is

More information

Display Board Pulse Width Modulation (PWM) Power/Speed Controller Module

Display Board Pulse Width Modulation (PWM) Power/Speed Controller Module Display Board Pulse Width Modulation (PWM) Power/Speed Controller Module RS0 Microcontroller LEDs Motor Control Pushbuttons Purpose: To demonstrate an easy way of using a Freescale RS0K2 microcontroller

More information

Apple iphone/ipod Touch - ieffect Mobile Guitar Effect Accessory & Application

Apple iphone/ipod Touch - ieffect Mobile Guitar Effect Accessory & Application Apple iphone/ipod Touch - ieffect Mobile Guitar Effect Accessory & Application Preliminary Design Report with Diagrams EEL4924 - Electrical Engineering Design 2 3 June 2009 Members: Ryan Nuzzaci & Shuji

More information

AVR131: Using the AVR s High-speed PWM. Introduction. Features. AVR 8-bit Microcontrollers APPLICATION NOTE

AVR131: Using the AVR s High-speed PWM. Introduction. Features. AVR 8-bit Microcontrollers APPLICATION NOTE AVR 8-bit Microcontrollers AVR131: Using the AVR s High-speed PWM APPLICATION NOTE Introduction This application note is an introduction to the use of the high-speed Pulse Width Modulator (PWM) available

More information

Owner s Manual AWM910 JENSEN AWM910 COMPACT DISC PLAYER RADIO CD COMPACT MUSIC SYSTEM MUTE AUX BAND AUX IN PUSH PUSH PWR VOL ALARM T/F AUD SPK A SPK B

Owner s Manual AWM910 JENSEN AWM910 COMPACT DISC PLAYER RADIO CD COMPACT MUSIC SYSTEM MUTE AUX BAND AUX IN PUSH PUSH PWR VOL ALARM T/F AUD SPK A SPK B AWM910 Owner s Manual COMPACT DISC PLAYER PUSH 1 2 3 4 5 6 RPT SCAN RDM H M PUSH PWR VOL ALARM SET ON/OFF EQ T/F AUD RADIO CD COMPACT MUSIC SYSTEM MUTE AUX BAND CD AUX IN A B A+B JENSEN AWM910 Thank You!

More information

THE ELEMENT SUPPORT OPERATING INSTRUCTIONS AMP+DACS ONLINE BY PHONE BY MAIL CONTACT@JDSLABS.COM 314-252-0936

THE ELEMENT SUPPORT OPERATING INSTRUCTIONS AMP+DACS ONLINE BY PHONE BY MAIL CONTACT@JDSLABS.COM 314-252-0936 OPERATING INSTRUCTIONS AMP+S THE ELEMENT SUPPORT ONLINE BY PHONE BY MAIL CONTACT@JDSLABS.COM JDSLABS.COM/SUPPORT 314-252-0936 9:30AM-6PM CST, MONDAY THROUGH FRIDAY 909 N BLUFF RD COLLINSVILLE, IL 62234

More information

AVR Butterfly Training. Atmel Norway, AVR Applications Group

AVR Butterfly Training. Atmel Norway, AVR Applications Group AVR Butterfly Training Atmel Norway, AVR Applications Group 1 Table of Contents INTRODUCTION...3 GETTING STARTED...4 REQUIRED SOFTWARE AND HARDWARE...4 SETTING UP THE HARDWARE...4 SETTING UP THE SOFTWARE...5

More information

Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science. 6.002 Electronic Circuits Spring 2007

Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science. 6.002 Electronic Circuits Spring 2007 Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science 6.002 Electronic Circuits Spring 2007 Lab 4: Audio Playback System Introduction In this lab, you will construct,

More information

TerraTec Electronic GmbH, Herrenpfad 38, D-41334 Nettetal, Germany

TerraTec Electronic GmbH, Herrenpfad 38, D-41334 Nettetal, Germany TERRATEC PRODUCER/SINE MB 33 II English Manual Version 1.0, last revised: November 2003 CE Declaration We: TerraTec Electronic GmbH, Herrenpfad 38, D-41334 Nettetal, Germany hereby declare that the product:

More information

Pulse Width Modulation

Pulse Width Modulation Pulse Width Modulation Pulse width modulation (PWM) is a powerful technique for controlling analog circuits with a microprocessor's digital outputs. PWM is employed in a wide variety of applications, ranging

More information

Direct Digital Amplification (DDX ) The Evolution of Digital Amplification

Direct Digital Amplification (DDX ) The Evolution of Digital Amplification Direct Digital Amplification (DDX ) The Evolution of Digital Amplification Tempo Semiconductor 2013 Table of Contents Table of Contents... 2 Table of Figures... 2 1. DDX Technology Overview... 3 2. Comparison

More information

The modular concept of the MPA-3 system is designed to enable easy accommodation to a huge variety of experimental requirements.

The modular concept of the MPA-3 system is designed to enable easy accommodation to a huge variety of experimental requirements. HARDWARE DESCRIPTION The modular concept of the MPA-3 system is designed to enable easy accommodation to a huge variety of experimental requirements. BASE MODULE GO LINE Digital I/O 8 Analog Out AUX 1

More information

The audio input connection on your computer

The audio input connection on your computer This page helps you to connect your audio equipment to your PC so you can start using the xxxxxxx Sound Recorder and Editor and get your recordings to CD or MP3. You can use our software to digitize music

More information

Build A Video Switcher. Reprinted with permission from Electronics Now Magazine September 1997 issue

Build A Video Switcher. Reprinted with permission from Electronics Now Magazine September 1997 issue Build A Video Switcher Reprinted with permission from Electronics Now Magazine September 1997 issue Copyright Gernsback Publications, Inc.,1997 BUILD A VIDEO SWITCHER FRANK MONTEGARI Watch several cameras

More information

PRODUCT SHEET OUT1 SPECIFICATIONS

PRODUCT SHEET OUT1 SPECIFICATIONS OUT SERIES Headphones OUT2 BNC Output Adapter OUT1 High Fidelity Headphones OUT1A Ultra-Wide Frequency Response Headphones OUT3 see Stimulators OUT100 Monaural Headphone 40HP Monaural Headphones OUT101

More information

DR-1 Portable Digital Recorder OWNER'S MANUAL

DR-1 Portable Digital Recorder OWNER'S MANUAL » D01019610A DR-1 Portable Digital Recorder OWNER'S MANUAL Contents 1 Introduction... 3 Main functions... 3 Supplied accessories... 3 Recycling the rechargeable battery... 3 Notes about this manual...

More information

Roxio Easy LP to MP3 Getting Started Guide

Roxio Easy LP to MP3 Getting Started Guide Roxio Easy LP to MP3 Getting Started Guide Corel Corporation or its subsidiaries. All rights reserved. 2 Getting started with Roxio Easy LP to MP3 In this guide Welcome to Roxio Easy LP to MP3 3 System

More information

BlueGate. Your easy to use reference for getting the most out of your product USER GUIDE. Enjoy FREE REGISTRATION

BlueGate. Your easy to use reference for getting the most out of your product USER GUIDE. Enjoy FREE REGISTRATION TM BlueGate Your easy to use reference for getting the most out of your product USER GUIDE Enjoy FREE REGISTRATION Thank you for purchasing the Accessory Power GOgroove BlueGate Bluetooth audio receiver.

More information

User Manual CABLE TESTER CT100. Professional 6-in-1 Cable Tester

User Manual CABLE TESTER CT100. Professional 6-in-1 Cable Tester User Manual CABLE TESTER CT100 Professional 6-in-1 Cable Tester 2 CABLE TESTER CT100 User Manual 1. Introduction Congratulations! With the CT100, you have purchased an indispensable tool that enables you

More information

Smarthome SELECT Bluetooth Wireless Stereo Audio Receiver and Amplifier INTRODUCTION

Smarthome SELECT Bluetooth Wireless Stereo Audio Receiver and Amplifier INTRODUCTION Smarthome SELECT Bluetooth Wireless Stereo Audio Receiver and Amplifier INTRODUCTION The Smarthome SELECT Bluetooth Wireless Stereo Audio Receiver and Amplifier is a multi-functional compact device. It

More information

Wireless In-Ear Audio Monitor

Wireless In-Ear Audio Monitor University of Nebraska - Lincoln Computer Engineering Senior Design Project Wireless In-Ear Audio Monitor Team Stonehenge: Erin Bartholomew Paul Bauer Nate Lowry Sabina Manandhar May 4, 2010 Contents 1

More information

Digitizing Sound Files

Digitizing Sound Files Digitizing Sound Files Introduction Sound is one of the major elements of multimedia. Adding appropriate sound can make multimedia or web page powerful. For example, linking text or image with sound in

More information

miditech Audiolink II

miditech Audiolink II miditech Audiolink II "Class Compliant" USB Audio Interface (WinXP/Vista/Win7/Mac OSX no drivers necessary) 16 Bit/ 48 khz resolution line stereo interface XLR Mic preamp with 48 V Phantom Power and gain

More information

CHAPTER 11: Flip Flops

CHAPTER 11: Flip Flops CHAPTER 11: Flip Flops In this chapter, you will be building the part of the circuit that controls the command sequencing. The required circuit must operate the counter and the memory chip. When the teach

More information

QLINK User Manual Stereo Audio Transmitter

QLINK User Manual Stereo Audio Transmitter QLINK User Manual Stereo Audio Transmitter ClearSounds QLINK Bluetooth Stereo Transmitter Contents Before use.1 1. About the QLINK... 1 2. Overview..2 Getting started. 1 1. Parts Checklist. 1 2. Charging

More information

11: AUDIO AMPLIFIER I. INTRODUCTION

11: AUDIO AMPLIFIER I. INTRODUCTION 11: AUDIO AMPLIFIER I. INTRODUCTION The properties of an amplifying circuit using an op-amp depend primarily on the characteristics of the feedback network rather than on those of the op-amp itself. A

More information

Flexible Active Shutter Control Interface using the MC1323x

Flexible Active Shutter Control Interface using the MC1323x Freescale Semiconductor Document Number: AN4353 Application Note Rev. 0, 9/2011 Flexible Active Shutter Control Interface using the MC1323x by: Dennis Lui Freescale Hong Kong 1 Introduction This application

More information

Timer A (0 and 1) and PWM EE3376

Timer A (0 and 1) and PWM EE3376 Timer A (0 and 1) and PWM EE3376 General Peripheral Programming Model Each peripheral has a range of addresses in the memory map peripheral has base address (i.e. 0x00A0) each register used in the peripheral

More information

Real-Time Clock. * Real-Time Computing, edited by Duncan A. Mellichamp, Van Nostrand Reinhold

Real-Time Clock. * Real-Time Computing, edited by Duncan A. Mellichamp, Van Nostrand Reinhold REAL-TIME CLOCK Real-Time Clock The device is not a clock! It does not tell time! It has nothing to do with actual or real-time! The Real-Time Clock is no more than an interval timer connected to the computer

More information

Phase II Design for a Multiband LMR Antenna System

Phase II Design for a Multiband LMR Antenna System Phase II Design for a Multiband LMR Antenna System S. Ellingson and R. Tillman Aug 30, 2011 Contents 1 Introduction 2 2 System Design 2 3 Antenna Tuner 3 Bradley Dept. of Electrical & Computer Engineering,

More information

USER MANUAL. 914 Power Amplifier MODEL: P/N: 2900-300280 Rev 1

USER MANUAL. 914 Power Amplifier MODEL: P/N: 2900-300280 Rev 1 KRAMER ELECTRONICS LTD. USER MANUAL MODEL: 914 Power Amplifier P/N: 2900-300280 Rev 1 Contents 1 Introduction 1 2 Getting Started 2 2.1 Achieving the Best Performance 2 3 Overview 3 3.1 Energy Star 3

More information

Designing an Induction Cooker Using the S08PT Family

Designing an Induction Cooker Using the S08PT Family Freescale Semiconductor, Inc. Document Number: AN5030 Application Note Rev. 0 11/2014 Designing an Induction Cooker Using the S08PT Family by: Leo Pan, Dennis Lui, T.C. Lun 1 Introduction This application

More information

KEYBOARD EXTENDED RANGE. Sixty Owner, s Manual P/N 049254

KEYBOARD EXTENDED RANGE. Sixty Owner, s Manual P/N 049254 THE SOUND THAT CREATES LEGENDS KEYBOARD EXTENDED RANGE Sixty Owner, s Manual P/N 049254 INTRODUCTION Your new Fender KXR 60 Keyboard Amplifier is the result of Fender s ongoing dialog with many of today

More information

Pulse Width Modulation Applications

Pulse Width Modulation Applications Pulse Width Modulation Applications Lecture 21 EE 383 Microcomputers Learning Objectives What is DTMF? How to use PWM to generate DTMF? How to use PWM to control a servo motor? How to use PWM to control

More information

Mbox Basics Guide. Version 6.7 for LE Systems on Windows XP or Mac OS X. Digidesign

Mbox Basics Guide. Version 6.7 for LE Systems on Windows XP or Mac OS X. Digidesign Mbox Basics Guide Version 6.7 for LE Systems on Windows XP or Mac OS X Digidesign 2001 Junipero Serra Boulevard Daly City, CA 94014-3886 USA tel: 650 731 6300 fax: 650 731 6399 Technical Support (USA)

More information

Basics. Mbox 2. Version 7.0

Basics. Mbox 2. Version 7.0 Basics Mbox 2 Version 7.0 Copyright 2005 Digidesign, a division of Avid Technology, Inc. All rights reserved. This guide may not be duplicated in whole or in part without the express written consent of

More information

HomePlug adapters for transferring music and speech over your household power circuit

HomePlug adapters for transferring music and speech over your household power circuit HomePlug adapters for transferring music and speech over your household power circuit Build up your own audio network. Simply use your household power circuit no need to drill or lay new cables. Connect

More information

Pulse width modulation

Pulse width modulation Pulse width modulation DRAFT VERSION - This is part of a course slide set, currently under development at: http://mbed.org/cookbook/course-notes We welcome your feedback in the comments section of the

More information

QUALITY AV PRODUCTS INMATE/INMATE USB PROFESSIONAL 19" MIXER. User Guide and Reference Manual

QUALITY AV PRODUCTS INMATE/INMATE USB PROFESSIONAL 19 MIXER. User Guide and Reference Manual INMATE/INMATE USB PROFESSIONAL " MIXER User Guide and Reference Manual INTRODUCTION Welcome to the NEWHANK INMATE and INMATE USB professional " mixers series user manual. INMATE and INMATE USB both offer

More information

Traktor Audio Configuration

Traktor Audio Configuration Traktor Audio Configuration 1. Select the S4 CoreAudio (for Mac) or S4 ASIO (for Windows) driver. 2. Select Internal mixing mode and set the Output Monitor and Output Master using the available outputs

More information

Lab Experiment 1: The LPC 2148 Education Board

Lab Experiment 1: The LPC 2148 Education Board Lab Experiment 1: The LPC 2148 Education Board 1 Introduction The aim of this course ECE 425L is to help you understand and utilize the functionalities of ARM7TDMI LPC2148 microcontroller. To do that,

More information

EMC6D103S. Fan Control Device with High Frequency PWM Support and Hardware Monitoring Features PRODUCT FEATURES ORDER NUMBERS: Data Brief

EMC6D103S. Fan Control Device with High Frequency PWM Support and Hardware Monitoring Features PRODUCT FEATURES ORDER NUMBERS: Data Brief EMC6D103S Fan Control Device with High Frequency PWM Support and Hardware Monitoring Features PRODUCT FEATURES Data Brief 3.3 Volt Operation (5 Volt Tolerant Input Buffers) SMBus 2.0 Compliant Interface

More information

Automatic Miniblinds System. San Jose State University. Department of Mechanical and Aerospace Engineering. Brian Silva Jonathan Thein

Automatic Miniblinds System. San Jose State University. Department of Mechanical and Aerospace Engineering. Brian Silva Jonathan Thein Automatic Miniblinds System San Jose State University Department of Mechanical and Aerospace Engineering Brian Silva Jonathan Thein May 16, 2006 Summary: The Mechatronics final term project is intended

More information

The basic set up for your K2 to run PSK31 By Glenn Maclean WA7SPY

The basic set up for your K2 to run PSK31 By Glenn Maclean WA7SPY The basic set up for your K2 to run PSK31 By Glenn Maclean WA7SPY I am by no means an expert on PSK31. This article is intended to help someone get on PSK31 with a K2. These are the things I did to get

More information

User Manual. For additional help please send a detailed e-mail to Support@phnxaudio.com. - 1 Phoenix Audio Technologies www.phnxaudio.

User Manual. For additional help please send a detailed e-mail to Support@phnxaudio.com. - 1 Phoenix Audio Technologies www.phnxaudio. User Manual Please read the instructions in this manual before using the Duet Please refer to our website www.phnxaudio.com for more information, specifically to our Q&A section in our Support page. For

More information

EDIC-mini Tiny model A39

EDIC-mini Tiny model A39 EDIC-mini Tiny model A39 The Edic-mini Tiny A39 is intended for professional speech recording with the possibility of uploading recordings onto a computer. Tiny series characteristics are: - Miniature

More information

Kit 106. 50 Watt Audio Amplifier

Kit 106. 50 Watt Audio Amplifier Kit 106 50 Watt Audio Amplifier T his kit is based on an amazing IC amplifier module from ST Electronics, the TDA7294 It is intended for use as a high quality audio class AB amplifier in hi-fi applications

More information

Decimal Number (base 10) Binary Number (base 2)

Decimal Number (base 10) Binary Number (base 2) LECTURE 5. BINARY COUNTER Before starting with counters there is some vital information that needs to be understood. The most important is the fact that since the outputs of a digital chip can only be

More information

Active Speaker System LX523 AUDAC PROFESSIONAL AUDIO EQUIPMENT. Active Speaker System with remote input LX523. User Manual & Installation Guide

Active Speaker System LX523 AUDAC PROFESSIONAL AUDIO EQUIPMENT. Active Speaker System with remote input LX523. User Manual & Installation Guide Active Speaker System LX523 AUDAC PROFESSIONAL AUDIO EQUIPMENT Active Speaker System with remote input LX523 User Manual & Installation Guide AUDAC PROFESSIONAL AUDIO EQUIPMENT User Manual & Installation

More information

PCX9 for PCI Professional Digital Audio Card

PCX9 for PCI Professional Digital Audio Card PCX9 for PCI Professional Digital Audio Card User s manual www.digigram.com DU 140100101 IS=A CONTENTS Information for the user 1 Features 2-3 Hardware Installation 4 Software Installation 5 Cable diagrams

More information

User Manual. Please read this manual carefully before using the Phoenix Octopus

User Manual. Please read this manual carefully before using the Phoenix Octopus User Manual Please read this manual carefully before using the Phoenix Octopus For additional help and updates, refer to our website To contact Phoenix Audio for support, please send a detailed e-mail

More information

MODEL 2202IQ (1991-MSRP $549.00)

MODEL 2202IQ (1991-MSRP $549.00) F O R T H E L O V E O F M U S I C F O R T H E L O V E O F M U S I C MODEL 2202IQ (1991-MSRP $549.00) OWNER'S MANUAL AND INSTALLATION GUIDE INTRODUCTION Congratulations on your decision to purchase a LINEAR

More information

PCAN-MicroMod Universal I/O Module with CAN Interface. User Manual. Document version 2.1.0 (2014-01-16)

PCAN-MicroMod Universal I/O Module with CAN Interface. User Manual. Document version 2.1.0 (2014-01-16) PCAN-MicroMod Universal I/O Module with CAN Interface User Manual Document version 2.1.0 (2014-01-16) Products taken into account Product Name Part number Model PCAN-MicroMod IPEH-002080 with firmware

More information

Experiment # 9. Clock generator circuits & Counters. Eng. Waleed Y. Mousa

Experiment # 9. Clock generator circuits & Counters. Eng. Waleed Y. Mousa Experiment # 9 Clock generator circuits & Counters Eng. Waleed Y. Mousa 1. Objectives: 1. Understanding the principles and construction of Clock generator. 2. To be familiar with clock pulse generation

More information

Develop a Dallas 1-Wire Master Using the Z8F1680 Series of MCUs

Develop a Dallas 1-Wire Master Using the Z8F1680 Series of MCUs Develop a Dallas 1-Wire Master Using the Z8F1680 Series of MCUs AN033101-0412 Abstract This describes how to interface the Dallas 1-Wire bus with Zilog s Z8F1680 Series of MCUs as master devices. The Z8F0880,

More information

Accurate Measurement of the Mains Electricity Frequency

Accurate Measurement of the Mains Electricity Frequency Accurate Measurement of the Mains Electricity Frequency Dogan Ibrahim Near East University, Faculty of Engineering, Lefkosa, TRNC dogan@neu.edu.tr Abstract The frequency of the mains electricity supply

More information

25. AM radio receiver

25. AM radio receiver 1 25. AM radio receiver The chapter describes the programming of a microcontroller to demodulate a signal from a local radio station. To keep the circuit simple the signal from the local amplitude modulated

More information

Pulse Width Modulation (PWM) LED Dimmer Circuit. Using a 555 Timer Chip

Pulse Width Modulation (PWM) LED Dimmer Circuit. Using a 555 Timer Chip Pulse Width Modulation (PWM) LED Dimmer Circuit Using a 555 Timer Chip Goals of Experiment Demonstrate the operation of a simple PWM circuit that can be used to adjust the intensity of a green LED by varying

More information

MP3 Player CSEE 4840 SPRING 2010 PROJECT DESIGN. zl2211@columbia.edu. ml3088@columbia.edu

MP3 Player CSEE 4840 SPRING 2010 PROJECT DESIGN. zl2211@columbia.edu. ml3088@columbia.edu MP3 Player CSEE 4840 SPRING 2010 PROJECT DESIGN Zheng Lai Zhao Liu Meng Li Quan Yuan zl2215@columbia.edu zl2211@columbia.edu ml3088@columbia.edu qy2123@columbia.edu I. Overview Architecture The purpose

More information

POCKET SCOPE 2. The idea 2. Design criteria 3

POCKET SCOPE 2. The idea 2. Design criteria 3 POCKET SCOPE 2 The idea 2 Design criteria 3 Microcontroller requirements 3 The microcontroller must have speed. 3 The microcontroller must have RAM. 3 The microcontroller must have secure Flash. 3 The

More information

Web Site: www.parallax.com Forums: forums.parallax.com Sales: sales@parallax.com Technical: support@parallax.com

Web Site: www.parallax.com Forums: forums.parallax.com Sales: sales@parallax.com Technical: support@parallax.com Web Site: www.parallax.com Forums: forums.parallax.com Sales: sales@parallax.com Technical: support@parallax.com Office: (916) 624-8333 Fax: (916) 624-83 Sales: (888) 512-124 Tech Support: (888) 997-8267

More information

Features, Benefits, and Operation

Features, Benefits, and Operation Features, Benefits, and Operation 2014 Decibel Eleven Contents Introduction... 2 Features... 2 Rear Panel... 3 Connections... 3 Power... 3 MIDI... 3 Pedal Loops... 4 Example Connection Diagrams... 5,6

More information

Ping Pong Game with Touch-screen. March 2012

Ping Pong Game with Touch-screen. March 2012 Ping Pong Game with Touch-screen March 2012 xz2266 Xiang Zhou hz2256 Hao Zheng rz2228 Ran Zheng yc2704 Younggyun Cho Abstract: This project is conducted using the Altera DE2 development board. We are aiming

More information

Final Project Example

Final Project Example Final Project Example YM2149 Programmable Sound Generator Emulator PSoC Final Project Example Stephen Hammack Overview The YM2149 (a variant of the AY-3-8910) is a Programmable Sound Generator (PSG) that

More information

MANUAL PC1000R INFO@APART-AUDIO.COM

MANUAL PC1000R INFO@APART-AUDIO.COM MANUAL PC1000R INFO@APART-AUDIO.COM Features The APart PC1000R is a professional multisource CD/USB/SD card music player, equipped with balanced and unbalanced analog outputs, coaxial and optical digital

More information

Lab 1: Introduction to Xilinx ISE Tutorial

Lab 1: Introduction to Xilinx ISE Tutorial Lab 1: Introduction to Xilinx ISE Tutorial This tutorial will introduce the reader to the Xilinx ISE software. Stepby-step instructions will be given to guide the reader through generating a project, creating

More information

UM10155. Discrete Class D High Power Audio Amplifier. Document information

UM10155. Discrete Class D High Power Audio Amplifier. Document information Rev. 02 5 September 2006 User manual Document information Info Keywords Abstract Content Class D Audio Amplifier, Universal Class D, UcD, PWM Audio Amplifier, High Power Audio. This user manual describes

More information

User guide. Stereo Bluetooth Headset SBH50

User guide. Stereo Bluetooth Headset SBH50 User guide Stereo Bluetooth Headset SBH50 Contents Stereo Bluetooth Headset User guide...3 Introduction...4 Function overview...4 Hardware overview...4 Status icon overview...5 Basics...6 Charging the

More information

D01167420A. TASCAM PCM Recorder. iphone/ipad/ipod touch Application USER'S GUIDE

D01167420A. TASCAM PCM Recorder. iphone/ipad/ipod touch Application USER'S GUIDE D01167420A TASCAM PCM Recorder iphone/ipad/ipod touch Application USER'S GUIDE Contents Introduction...3 Trademarks... 3 What's in the Main Window...4 What's in the Settings Window...6 The Sharing Window...7

More information

PSP3. Stereo M/S preamplifier. User manual

PSP3. Stereo M/S preamplifier. User manual PSP3 Stereo M/S preamplifier User manual AETA AUDIO 361, avenue du Général de Gaulle 92140 Clamart FRANCE Tél. +33 (0)1 41361212 Fax +33 (0)1 41361213 Telex 631178 Web : http://www.aetausa.com 55 000 020

More information

Analog Representations of Sound

Analog Representations of Sound Analog Representations of Sound Magnified phonograph grooves, viewed from above: The shape of the grooves encodes the continuously varying audio signal. Analog to Digital Recording Chain ADC Microphone

More information

Analog to Digital Conversion of Sound with the MSP430F2013

Analog to Digital Conversion of Sound with the MSP430F2013 Analog to Digital Conversion of Sound with the MSP430F2013 Christopher Johnson 4/2/2010 Abstract Several modern-day applications require that analog signals be converted to digital signals in order to

More information

BXR. Owner, s Manual. One hundred BASS EXTENDED RANGE P/N 040695

BXR. Owner, s Manual. One hundred BASS EXTENDED RANGE P/N 040695 THE SOUND THAT CREATES LEGENDS BASS EXTENDED RANGE BXR One hundred Owner, s Manual P/N 040695 BXR 100 Owner s Manual Congratulations on your purchase of the Fender BXR 100 Bass amplifier. The Fender BXR

More information

Ultimate USB & XLR Microphone for Professional Recording

Ultimate USB & XLR Microphone for Professional Recording eti pro Ultimate USB & XLR Microphone for Professional Recording 3 desktop or studio, the possibilities are endless. Congratulations on your purchase of Yeti Pro, the first microphone to combine the exceptional

More information

VMR6512 Hi-Fi Audio FM Transmitter Module

VMR6512 Hi-Fi Audio FM Transmitter Module General Description VMR6512 is a highly integrated FM audio signal transmitter module. It integrates advanced digital signal processor (DSP), frequency synthesizer RF power amplifier and matching network.

More information

VIEW. SLX300 SpeakerLinX IP Zone. Amplifier Installation and Setup Guide. AVoIP

VIEW. SLX300 SpeakerLinX IP Zone. Amplifier Installation and Setup Guide. AVoIP VIEW SLX300 SpeakerLinX IP Zone Amplifier Installation and Setup Guide TM AVoIP ClearOne 5225 Wiley Post Way Suite 500 Salt Lake City, UT 84116 Telephone 1.800.283.5936 1.801.974.3760 Tech Sales 1.800.705.2103

More information

1/22/16. You Tube Video. https://www.youtube.com/watch?v=ympzipfabyw. Definitions. Duty Cycle: on-time per period (specified in per cent)

1/22/16. You Tube Video. https://www.youtube.com/watch?v=ympzipfabyw. Definitions. Duty Cycle: on-time per period (specified in per cent) Definition Pulse Width Modulation (PWM) is simply a way of getting the micro-controller to manage pulsing a pin on and off at a set period and duty cycle. The LPC11U24 has four timers with four match registers

More information

EVOline Multimedia Modules

EVOline Multimedia Modules 243 EVOline VGA cable EVOline DVI-A cable EVOline DVI-D cable EVOline HDMI cable Cable properties Flame retardant self extinguishing VW-1 Halogen free yes yes yes Colour Black Black Outer diameter 7,2

More information

Music On Hold and Paging

Music On Hold and Paging Music On Hold and Paging 24 Objectives When you finish this module, you will be able to: Describe Music On Hold (MOH). Program analog and digital MOH. Download a.wav file for Embedded MOH. Describe Loudspeaker

More information

CONTENTS. Zulu User Guide 3

CONTENTS. Zulu User Guide 3 Copyright Lightspeed Aviation, Inc., 2008. All rights reserved. Lightspeed Aviation is a trademark and Zulu and FRC are registered trademarks of Lightspeed Aviation, Inc. Bluetooth is a registered trademark

More information

INTRODUCTION. Please read this manual carefully for a through explanation of the Decimator ProRackG and its functions.

INTRODUCTION. Please read this manual carefully for a through explanation of the Decimator ProRackG and its functions. INTRODUCTION The Decimator ProRackG guitar noise reduction system defines a new standard for excellence in real time noise reduction performance. The Decimator ProRackG was designed to provide the maximum

More information

mdm-mp3 minidirector with MP3 Player

mdm-mp3 minidirector with MP3 Player minidirector with MP3 Player User Manual December 15, 2014 V1.02 Copyright Light O Rama, Inc. 2007, 2008 Table of Contents Introduction... 4 What s in the Box... 4 Hardware Utility Version... 5 Important

More information

ARRL Morse Code Oscillator, How It Works By: Mark Spencer, WA8SME

ARRL Morse Code Oscillator, How It Works By: Mark Spencer, WA8SME The national association for AMATEUR RADIO ARRL Morse Code Oscillator, How It Works By: Mark Spencer, WA8SME This supplement is intended for use with the ARRL Morse Code Oscillator kit, sold separately.

More information

UPS PIco. to be used with. Raspberry Pi B+, A+, B, and A. HAT Compliant. Raspberry Pi is a trademark of the Raspberry Pi Foundation

UPS PIco. to be used with. Raspberry Pi B+, A+, B, and A. HAT Compliant. Raspberry Pi is a trademark of the Raspberry Pi Foundation UPS PIco Uninterruptible Power Supply with Peripherals and I 2 C control Interface to be used with Raspberry Pi B+, A+, B, and A HAT Compliant Raspberry Pi is a trademark of the Raspberry Pi Foundation

More information

Suddenly everyone wants to sit in the back.

Suddenly everyone wants to sit in the back. Suddenly everyone wants to sit in the back. Audi Entertainment mobile. Audi Genuine Accessories 2 Audi Entertainment mobile The Audi Entertainment mobile system makes driving an Audi even more exciting

More information

CINEMA SB100 powered soundbar speaker

CINEMA SB100 powered soundbar speaker CINEMA SB100 powered soundbar speaker quick-start guide Thank You For Choosing This JBL Product The JBL Cinema SB100 powered soundbar speaker is a complete, integrated sound system that will dramatically

More information

PG-01instruction manual

PG-01instruction manual PG-01instruction manual DIGITAL RADIO fairbank house ashley road altrincham WA14 2DP united kingdom t: +44 (0)161 924 0300 f: +44 (0)161 924 0319 e: sales@intempodigital.com www.intempodigital.com PG-01

More information

Unattended Answering Device Instruction Manual

Unattended Answering Device Instruction Manual Model 3137B Unattended Answering Device Instruction Manual Monroe Electronics 100 Housel Ave Lyndonville NY 14098 800-821-6001 585-765-2254 fax: 585-765-9330 monroe-electronics.com Printed in USA Copyright

More information

2 X 250Watt Class D Audio Amplifier Board IRS2092 User s Guide

2 X 250Watt Class D Audio Amplifier Board IRS2092 User s Guide 2 X 250Watt Class D Audio Amplifier Board IRS2092 User s Guide 2004-2013 Sure Electronics Inc. AA-AB32291_Ver1.0 2 X 250Watt Class D Audio Amplifier Board IR2092 Note: Please read this manual carefully

More information

Voice Dialer Speech Recognition Dialing IC

Voice Dialer Speech Recognition Dialing IC Speech Recognition Dialing IC Speaker Dependent IC for Voice Dialing Applications GENERAL DESCRIPTION The IC, from the Interactive Speech family of products, is an application specific standard product

More information

What you will do. Build a 3-band equalizer. Connect to a music source (mp3 player) Low pass filter High pass filter Band pass filter

What you will do. Build a 3-band equalizer. Connect to a music source (mp3 player) Low pass filter High pass filter Band pass filter Audio Filters What you will do Build a 3-band equalizer Low pass filter High pass filter Band pass filter Connect to a music source (mp3 player) Adjust the strength of low, high, and middle frequencies

More information

Safety Warnings and Guidelines

Safety Warnings and Guidelines Safety Warnings and Guidelines Thank you for purchasing this Wireless Speaker Amplifier! For best results, please thoroughly read this manual and carefully follow the instructions. Please pay extra attention

More information

1 All safety instructions, warnings and operating instructions must be read first.

1 All safety instructions, warnings and operating instructions must be read first. ONYX USER MANUAL 2 Dateq ONYX Manual Safety instructions EN Safety instructions 1 All safety instructions, warnings and operating instructions must be read first. 2 All warnings on the equipment must be

More information

Jitter in (Digital) Audio

Jitter in (Digital) Audio Jitter in (Digital) Audio 1. Summary Jitter is not different from phase noise. Jitter is defined in the time domain and phase noise in the frequency domain. They can't be related to each other directly

More information