DANGER DETECTING HEADPHONES

Size: px
Start display at page:

Download "DANGER DETECTING HEADPHONES"

Transcription

1 DANGER DETECTING HEADPHONES By Tae Hun Ahn Daniel Bang Yoon Mo Yang Final Report for ECE 445, Senior Design, Fall 2016 TA: Zipeng Wang 07 December 2016 Project No. 47

2 Abstract This report describes the details of the design in the Danger Detecting Headphones, which detects the car horn sound from the outside environment and mutes the speaker for three seconds. The end product was also able to filter out noises from the car horn signal. Hardware and software design implementation will be discussed along with the verification of the modules, followed by the cost analysis and future works. ii

3 Contents 1. Introduction Statement of Purpose Objectives Benefits and Features Goals and Functions Design Block Diagrams and Flowchart Hardware Block Diagram Software Flowchart Block Description Power Module Microphone Module Volume Control Module Microcontroller Module Design Verification Power Module Microphone Module Microcontroller Module (ATMega328p-pu) Volume Control Module Costs Parts Labor Grand Total Conclusion Accomplishments Uncertainties Ethical considerations Future work References iii

4 1. Introduction 1.1 Statement of Purpose Nowadays, there are many consumer electronics companies focusing mainly on the audio equipment. Many of these companies produce noise canceling audio systems which enhance general sound quality of music in all kinds of situation. Such products become main production lines of several renowned audio companies, and this reflects a high demand of consumers in the audio market. We, however, found a very hazardous feature of this noise canceling system. And this precarious feature appears in not only the noise canceling headphones but also most of regular headphones in use throughout the daily life. The problem is that the noise canceling headphones and regular headphones with high volume lead users to isolate themselves from surroundings by blocking all sounds but music. For the pedestrians who use headphones regularly on the street, this blocked sound could lead them directly to death. To prevent hazardous situations for the pedestrians, we decided to develop headphones that detect car horns and automatically mute music. This mute system will help pedestrians to perceive surround situation immediately. We successfully developed headphones that work properly as we expected. Even though overall functionality was satisfactory, there were some uncertainties like reliability in maximum detectable distance. 1.2 Objectives Benefits and Features Portable Detect car horns Mute the music player once the car horn is detected Filter out noises other than the car horns Goals and Functions Collect sound data from microphone Convert the analog signal to the digital waveform Fast Fourier transform the digital wave Provide safety for the users via the mute logic 1

5 2 Design 2.1 Block Diagrams and Flowchart Hardware Block Diagram Figure 2.1 depicts the hardware block diagram of the entire circuit. First, the power module regulates voltage from the battery and supplies 5V to all the other modules. The microphone module receives sound signal from the outside environment and amplifies it through an op-amp circuit. The amplified signal is still an analog signal and needs to be converted to a digital waveform in order for us to run the detection algorithm in software. The microcontroller module does the job through an A/D converter inside the chip. It also applies Fast Fourier Transform combined with the Digital band-pass filter, so that it filters out the unnecessary noises other than car horn signal. If the filtered signal s frequency matches with that of the car horn, microcontroller will send a mute logic signal to the analog MUX inside the volume control module. The volume control module, which controls the volume in normal state, will mute the speaker for three seconds once it receives the mute logic signal. Figure 2.1 Hardware Block Diagram Software Flowchart Figure 2.2 shows a software flowchart. The input of this flow chart is an analog signal generated by the microphone. This analog signal will be converted into the digital signal through ADC by the ATMega328P chip. After the conversion, we will run the fast Fourier transform test. Since the converted digital signal 2

6 contains a lot of noises, we pass the FFT results to the band pass filter to get rid of some noises that are below the threshold. Figure 2.2 Software Flowchart With the results from the filter, we perform sampling to get the frequency. If the frequency matches the expected car horn frequency, then the music will be muted. If not, the entire process that we described above will be performed infinite times until it detects the proper frequency. 2.2 Block Description Power Module The power module of Danger Detecting Headphones has a simple structure but its role is significantly important. To obtain an accurate detection feature, it was required to make the power voltage signal as clean as possible. If the power signal has some noise, it will affect the output of the microphone module and it will disturb the entire circuit to detect the car horn sound precisely. Therefore, it was fatal when we did not filter out the noise from the power signal. Figure 2.3 shows the PCB that contains the power 3

7 module and the microphone module. And the part inside the orange square represents the power module. For the power source, we used a 9 V alkaline battery and for the voltage regulator, we used a LM7805. The role of the LM7805 is basically to convert 9 V from the battery to 5 V. The reason for this choice is that every IC chip being used in the entire circuit needs 5 V as its supply voltage. As you can see from Figure 2.4, two capacitors were used in the module: The first capacitor whose capacitance is 100 μf, is hooked up after the battery and before the input of the LM7805 regulator. This capacitor is there to filter out any noise coming from the voltage source by shorting the AC signal of the battery to ground and let only DC portion go into the regulator.[1] The second capacitor, hooked up after the regulator also filters out any noise or ac signals by the same mechanism. We hooked up the resistor and the LED at the end of the circuit to make it easier to check if the power module works fine. Figure 2.3 PCB (Power Module) Figure 2.4 Schematic of the Power Module Microphone Module The microphone module simply receives any audio signals from the outside of Danger Detecting Headphones. Please refer to Figure 2.5 for the PCB design of the microphone module which is inside the orange square. Since the voltage output of the microphone is relatively small, it s not possible to use it for the detection feature without amplifying the output of the microphone. Therefore, it s required to use an audio amplifier. We found a low voltage audio power amplifier, LM386. We designed the module as shown in Figure 2.6. We came up with this design by referring to the datasheet of the LM386. This module basically receives the input audio signal from outside with the microphone and amplifies the signal with the LM386. As you can see from Figure 2.6, lots of capacitors were used in this module. Each of them has its own role. For example, C3, and C7 in Figure 2.6, block the DC voltage so only the AC signal can be passed. We need to block the DC signal since audio signals are basically AC signals. Capacitors block the DC voltage because the reactance of a capacitor is 4

8 X c = 1 wc (2.1) where w is angular frequency and C is capacitance. Since DC voltage has no frequency, the reactance will be infinity for DC cases so the capacitor blocks DC voltage. C2 whose capacitance is 10μF sets the voltage gain to 200 V. C1 has a similar role as the capacitors in the power module since it acts as a V bypass filter. Lastly, C4 acts as a current bank for the output. When sudden surges of current occur, it will drain. Moreover, when there is the low demand for current, it refills with electrons. Figure 2.5 PCB (Microphone Module) Figure 2.6 Schematic of the Microphone Module [2] Volume Control Module The volume control module lets the user control the volume of his or her music player. The special feature of this module is that its analog multiplexer receives the logic bit from the microcontroller as its select bit. And according to the select bit, the analog multiplexer chooses its output between two inputs. Figure 2.7 shows the design of the module on the breadboard. As you can see from Figure 2.8, there are three major components in this module. The first component is a stereo audio jack (STX-3120), it takes a 3.5 mm stereo audio cable as an input. We chose this audio jack since every music player uses the 3.5 mm stereo audio cable. STX-3120 also controls the volume by receiving the electric signal from the music player of the user. The volume control module also uses the LM386 amplifiers since the output from the audio jack is too small so, without the amplifiers, the analog multiplexer will not output the signal. We set the voltage gain to 20 V of the amplifiers. V 5

9 The last component is the analog multiplexer, SN74F257. It receives the logic bit from the microcontroller. Based on the logic bit, it chooses one of the inputs and sends the output signal to the speaker. Please refer to Figure 2.9 and 2.10 to understand the operation of the analog multiplexer. Figure 2.7 Volume Control Module Figure 2.8 Schematic of Volume Control Module [3] Figure 2.9 Logic Symbol of SN74F257 [4] Figure 2.10 Function Table of SN74F257 6

10 2.2.4 Microcontroller Module The main component of the microcontroller module is ATMega328P-PU, which is also called an Arduino UNO. Through the software design inside the chip, it performs the key functions to detect the car horn frequency. Since we did not need to use all the I/O pins of the ATMega chip, we have built our own circuitry for the ATMega328P-PU instead of a complete Arduino Uno board. This way, we were able to not only save a lot of money, but also reduce the physical size of the entire PCB board as below. We chose our clock to be 16 MHz instead of 8 MHz, because faster clock signal speeds up the execution time of the microcontroller, letting the Arduino sample the analog signal more times in a same amount of time. We expected this to result in more sampling rate, increasing the accuracy of the detection. Since our design did not require the continuous communication with PC, we did not utilize WiFi communication. Instead, we decided to use FT232 USB component to communicate with PC. Thus, we connected the USB port just to upload the new sketch. The connection was simple enough because it only required Rx and Tx pin of the ATMega chip to be connected to the Tx and Rx pin of the FT232, respectively. However, we met a huge challenge during the communication. Initially, our circuit did not have a capacitor C1 in the Figure 2.11, when the reset pin of the ATMega chip was connected to the DTR pin of FT232 USB. This resulted in AC voltage, which is a noise, going into the DTR pin, arbitrarily resetting the microcontroller while uploading. Thus, we had to cut out the AC voltage through the capacitor C1. Figure 2.11 Microcontroller PCB Figure 2.12 Microcontroller Schematics 7

11 3. Design Verification 3.1 Power Module In the power module, we have used 9 V alkaline battery. The battery should supply 9 ± 1.35 V to the voltage regulator. This can be easily verified by connecting voltmeter to the battery. This voltage passes the voltage regulator LM7805, and output should be 5.0 ± 0.25 V. As you can see in the Figure 3.1, max voltage value is 4.98 V and min voltage value is 4.80 V. These both values are within the range of 5.0 ± 0.25 V. Figure V Voltage Regulator Verification 3.2 Microphone Module In order to verify the microphone module, we focused on outputting the result through the oscilloscope. This way, we were able to easily check if the output voltage matches with our expected voltage stated in the requirements. The first important requirement was if the voltage output from the microphone itself was from -2.5 V to 2.5 V. Using the oscilloscope, we were able to verify the output voltage was within the expected range. The second important requirement was the output voltage of the op-amp circuit. Since the signal was amplified and given offset through the op-amp, the output should have been from 0 V to 5 V. We successfully verified that the output voltage matches with the expected range. 3.3 Microcontroller Module (ATMega328p-pu) To verify the performance of ATMega328p-pu, we first supplied the ATMega328p-pu with the 5 V. When we connected the voltmeter with the pin 7, the result value was which is in the range of 5.0 ± V. ATMega328p-pu can also receive the analog signal between 0 V and 5 V. As you can see in the Figure 3.2 the voltage is within 0 V and 5 V. 8

12 Figure 3.2 Analog Input from Microphone [5] ATMega328p-pu performs FFT and digital filter, and these also needed to be verified. FFT was verified by comparing the results of the different coding (MATLAB and Arduino). As you can see Figure 3.3 shows the MATLAB code and Figure 3.4 is the result of FFT. Figure 3.5 is the result after running band pass filter. Figure 3.3 MATLAB Simulation Code Figure 3.4 Before Band Pass Filter Figure 3.5 After Band Pass Filter [6] 9

13 3.4 Volume Control Module The operation of volume control module was verified by connecting the voltmeter to the digital power supply pin and GND. The measured voltage is in the range of 5 V (±0.5%). The volume control module also need to mute the music when the Arduino detects the car horns. This was verified by checking whether the voltage of pin 8 output 0 V. 10

14 4. Costs Price is always one of the most important factors in the market since it might be the first or last thing that consumers consider before they buy the product. Table 4.1 outlines the cost of each component while Table 4.2 outlines the cost of labor. As you can see from the last row of Actual Cost column of Table 4.1, the total price is not that expensive compared to any normal headphones in the current market. 4.1 Parts Table 4.1 Parts Costs Parts Manufacturer Retail Cost ($) Bulk Purchase ($) Quantity Actual Cost ($) 9 V alkaline battery Digikey Voltage Regulator (LM 7805CT) Microphone (CMA-4544PF-W) Audio amplifier (LM386N-1/NOPB) USB Interface Module (DEV ) Microcontroller (ATMega328p-pu) Analog Multiplexer (SN74F257N) Digikey Digikey Digikey Digikey N/A Adafruit Digikey Speaker Digikey (CLS0261MAE-L152) Audio Cable Digikey (AK203/MM) Audio Jack Mouser (STX B) 16MHz Crystal Digikey (ECS XDN) PCB PCBWay Resistors, Capacitors Digikey Total *Note: The bulk-purchase costs are based on 1000 quantities for each component and the retail cost is based on 1 quantity for each component. 11

15 4.2 Labor Table 4.2 Labor Costs Name Hourly Rate Hours Invested (12 weeks * 13hrs/week) Labor Total (2.5 * Hourly Rate * Total Hours) Tae Hun Ahn $40/hr 156 $15,600 Daniel Bang $40/hr 156 $15,600 Yoon Mo Yang $40/hr 156 $15,600 Total 468 $46,800 As shown in Table 4.2, the total labor cost is $46,800. The overall cost of this project, therefore, is $ $46,800 = $46, It s important to compare the actual cost with the bulk-purchase cost in Table 4.1. The bulk purchase will reduce the cost by 72%. Therefore, if we mass-produce our headphones, the amount of money that costs to manufacture the PCB will significantly decrease. 4.3 Grand Total Table 4.3 Grand Total Type Total ($) Parts Costs Labor Costs 46,800 Grand Total 46,

16 5. Conclusion 5.1 Accomplishments At the end, we successfully built an entire circuit that could verify all the functionalities except for the changed subcomponent, volume control module, from the design review. The end product showed a feasible precision on the Fast Fourier Transform algorithm, compared to the MATLAB simulation. It also filtered out the noises other than 300 ~ 400 Hz so that the accuracy of the detection was reliable. 5.2 Uncertainties We are uncertain of the detail in range of the detection. Since the car horn sound in a real life emits much more decibel than the car horn sound recorded in a smartphone, it was rather difficult to test the range of functionality without an accurate decibel meter. Since we were able to confirm that the microphone module receives a signal of a normal conversation in two meters, we assumed our headphones to be able to detect car horn sound, which is much louder, in five meters. In order to prove the reliability of our headphones, we have to verify this requirement in a real life before bringing the product to the market. 5.3 Ethical considerations During the entire project, we followed the IEEE Code of Ethics. The following is from the IEEE Policies, Section 7 - Professional Activities (Part A - IEEE Policies). We also followed the detailed descriptions as below. 1. To accept responsibility in making decisions consistent with the safety, health, and welfare of the public, and to disclose promptly factors that might endanger the public or the environment. Since our project was all about detecting danger around us, we always kept in mind about safety issue while building the final product. We paid extreme care while we were soldering, and cleaned up the lab after we were done. While we took care of the power module, we always checked if any power supply was shorted, which might have burnt our entire circuit. Overall, we had made great decisions regarding the safety issues. 3. To be honest and realistic in stating claims or estimates based on available data. Most of the requirements on our project were verified through the multimeter, oscilloscope, Arduino software (IDE), and MATLAB. Since these programs and machines were only used to show the measurement of our result, there was no opportunity for us to change our data to seem more plausible. By the end, we had been truly honest and realistic in stating claims. 9. To avoid injuring others, their property, reputation, or employment by false or malicious actions. Throughout the semester, our major concern was the safety. When we made a mistake burning one of our laptops by sourcing the current in an opposite direction, we quickly pulled out the battery wire in case of injuring other people. After this incident, we always paid close attention on our every action. Also, we saw some number of people in other groups got their components stolen while they were out. 13

17 Since we knew how painstaking it is to order new components via online, we vowed not to cause any harmful action to hurt others in their project. Eventually, this ethical consideration was well kept in our case. 5.4 Future work There are four possible future works. First, we can improve our FFT running time by trying different types of FFT libraries. There are several FFT open libraries for the Arduino, but we could not test every single FFT libraries and check the runtime. Therefore, in the future, we would like to pick the best library and algorithm to optimize overall performance Second, we can improve our sound quality of headphones by using different MUX. We have researched a lot about the mux and found out that MUX requiring negative voltage can generate much better sound quality. We, however, could not generate negative voltage in our system so we decided to use an analog mux, SN74F257, which only required positive voltage. Third, we can apply our system to more broad industry. For example, we can apply our danger detecting mechanism on the car audio system. If the car detects car horns, the car can automatically mute the car audio system so that the driver can see what is actually going on around his or her car. 14

18 References [1] How to Connect a Voltage Regulator in a Circuit [Online]. Available: [2] How to Build a Microphone Amplifier Circuit [Online]. Available: [3] LM386 Low Voltage Audio Power Amplifier, National Semiconductor Corporation., Dallas, TX, [Online]. Available: [4] SN54F257, SN74F257, Texas Instruments Incorporated., Dallas, TX, [Online]. Available: [5] Arduino. ReadAnalogVoltage. Arduino. 21 Sept [Online]. Available: [6] Aasvik, Mads. Arduino Tutorial: Simple high-pass, band-pass and band-stop filtering. Norwegian Creations. 10 Mar [Online]. Available: 15

MUSIC RESPONSIVE LIGHT SYSTEM

MUSIC RESPONSIVE LIGHT SYSTEM MUSIC RESPONSIVE LIGHT SYSTEM By Andrew John Groesch Final Report for ECE 445, Senior Design, Spring 2013 TA: Lydia Majure 1 May 2013 Project 49 Abstract The system takes in a musical signal as an acoustic

More information

Threshold Noise-Cancelling Headphones

Threshold Noise-Cancelling Headphones 1 Threshold Noise-Cancelling Headphones By: Nicholas Dennis CD Holder David Toft Final Report for ECE 445, Senior Design, Fall 2016 TA: Cara Yang May 4th, 2016 Project No. 57 2 Abstract Our project is

More information

SELF-SUSTAINABLE SOLAR STREET LIGHT CHARGING

SELF-SUSTAINABLE SOLAR STREET LIGHT CHARGING SELF-SUSTAINABLE SOLAR STREET LIGHT CHARGING By Anirban Banerjee Priya Mehta Surya Teja Tadigadapa Final Report for ECE 445, Senior Design, Fall 2017 TA: Zipeng Wang December 2017 Project No. 4 Abstract

More information

AUTOMATIC CLOTH FOLDING MACHINE

AUTOMATIC CLOTH FOLDING MACHINE AUTOMATIC CLOTH FOLDING MACHINE. By Xudong Li Anran Su Suicheng Zhan Final Report for ECE 445, Senior Design, Spring 2017 TA: Yuchen He 3 May 2017 Project No. 43 Abstract The purpose of this project is

More information

Lab 2: Blinkie Lab. Objectives. Materials. Theory

Lab 2: Blinkie Lab. Objectives. Materials. Theory Lab 2: Blinkie Lab Objectives This lab introduces the Arduino Uno as students will need to use the Arduino to control their final robot. Students will build a basic circuit on their prototyping board and

More information

VOICE CONTROLLED HOME AUTOMATION SYSTEM

VOICE CONTROLLED HOME AUTOMATION SYSTEM VOICE CONTROLLED HOME AUTOMATION SYSTEM By Zhe Gong Hongchaun Li Final Report for ECE 445, Senior Design, Fall 2014 TA: Haoyu Wang 10 December 2014 Project No. 13 Abstract This project builds a system

More information

TEXTBOOK DETECTION SYSTEM WITH RADIO-FREQUENCY IDENTIFICATION

TEXTBOOK DETECTION SYSTEM WITH RADIO-FREQUENCY IDENTIFICATION TEXTBOOK DETECTION SYSTEM WITH RADIO-FREQUENCY IDENTIFICATION By Xiaohao Wang Xiaosheng Wu Zhao Weng Final Report for ECE 445, Senior Design, Spring 2017 TA: Jose Sanchez Vicarte May 2017 Project No. 7

More information

Arduino STEAM Academy Arduino STEM Academy Art without Engineering is dreaming. Engineering without Art is calculating. - Steven K.

Arduino STEAM Academy Arduino STEM Academy Art without Engineering is dreaming. Engineering without Art is calculating. - Steven K. Arduino STEAM Academy Arduino STEM Academy Art without Engineering is dreaming. Engineering without Art is calculating. - Steven K. Roberts Page 1 See Appendix A, for Licensing Attribution information

More information

ESE 150 Lab 04: The Discrete Fourier Transform (DFT)

ESE 150 Lab 04: The Discrete Fourier Transform (DFT) LAB 04 In this lab we will do the following: 1. Use Matlab to perform the Fourier Transform on sampled data in the time domain, converting it to the frequency domain 2. Add two sinewaves together of differing

More information

High Voltage Waveform Sensor

High Voltage Waveform Sensor High Voltage Waveform Sensor Computer Engineering Senior Project Nathan Stump Spring 2013 Statement of Purpose The purpose of this project was to build a system to measure the voltage waveform of a discharging

More information

Pulse Sensor Individual Progress Report

Pulse Sensor Individual Progress Report Pulse Sensor Individual Progress Report TA: Kevin Chen ECE 445 March 31, 2015 Name: Ying Wang NETID: ywang360 I. Overview 1. Objective This project intends to realize a device that can read the human pulse

More information

Wireless Music Dock - WMD Portable Music System with Audio Effect Applications

Wireless Music Dock - WMD Portable Music System with Audio Effect Applications Wireless Music Dock - WMD Portable Music System with Audio Effect Applications Preliminary Design Report EEL 4924 Electrical Engineering Design (Senior Design) 26 January 2011 Members: Jeffrey Post and

More information

RF System: Baseband Application Note

RF System: Baseband Application Note Jimmy Hua 997227433 EEC 134A/B RF System: Baseband Application Note Baseband Design and Implementation: The purpose of this app note is to detail the design of the baseband circuit and its PCB implementation

More information

USER MANUAL FOR THE LM2901 QUAD VOLTAGE COMPARATOR FUNCTIONAL MODULE

USER MANUAL FOR THE LM2901 QUAD VOLTAGE COMPARATOR FUNCTIONAL MODULE USER MANUAL FOR THE LM2901 QUAD VOLTAGE COMPARATOR FUNCTIONAL MODULE LM2901 Quad Voltage Comparator 1 5/18/04 TABLE OF CONTENTS 1. Index of Figures....3 2. Index of Tables. 3 3. Introduction.. 4-5 4. Theory

More information

The Candle Extinguisher ECE 445 Spring 2017 Group #46 TA: Dan Frei

The Candle Extinguisher ECE 445 Spring 2017 Group #46 TA: Dan Frei The Candle Extinguisher ECE 445 Spring 2017 Group #46 TA: Dan Frei Casey Labuda Aaron VanDeCasteele Matthew Nee Introduction Safely extinguish any candle Helps prevent fires Allows lifetime of candle to

More information

University of North Carolina-Charlotte Department of Electrical and Computer Engineering ECGR 3157 Electrical Engineering Design II Fall 2013

University of North Carolina-Charlotte Department of Electrical and Computer Engineering ECGR 3157 Electrical Engineering Design II Fall 2013 Exercise 1: PWM Modulator University of North Carolina-Charlotte Department of Electrical and Computer Engineering ECGR 3157 Electrical Engineering Design II Fall 2013 Lab 3: Power-System Components and

More information

Rowan University Freshman Clinic I Lab Project 2 The Operational Amplifier (Op Amp)

Rowan University Freshman Clinic I Lab Project 2 The Operational Amplifier (Op Amp) Rowan University Freshman Clinic I Lab Project 2 The Operational Amplifier (Op Amp) Objectives Become familiar with an Operational Amplifier (Op Amp) electronic device and it operation Learn several basic

More information

Auto Harmonizer. EEL 4924 Electrical Engineering Design (Senior Design) Final Design Report 26 April 2012

Auto Harmonizer. EEL 4924 Electrical Engineering Design (Senior Design) Final Design Report 26 April 2012 Auto Harmonizer EEL 4924 Electrical Engineering Design (Senior Design) Final Design Report 26 April 2012 Team Name: Slubberdegullions Team Members: Josh Elliott and Henry Hatton, Jr. Project Abstract:

More information

QUEEN BEE FINDER. James Dillenburg. Abhijeet Srivastava. Krishna Yarramasu. Final Report for ECE 445, Senior Design, Spring 2015.

QUEEN BEE FINDER. James Dillenburg. Abhijeet Srivastava. Krishna Yarramasu. Final Report for ECE 445, Senior Design, Spring 2015. QUEEN BEE FINDER By James Dillenburg Abhijeet Srivastava Krishna Yarramasu Final Report for ECE 445, Senior Design, Spring 2015 TA: Ben Cahill 06 May 2015 Project No. 19 Abstract For our project we decided

More information

Portable Bluetooth Amp for Home Speakers Design Document

Portable Bluetooth Amp for Home Speakers Design Document Portable Bluetooth Amp for Home Speakers Design Document Team 53 Anthony Pham, Nicholas Jew, Austin Palanca ECE 445 Senior Design Laboratory Spring 2018 TA: Zhen Qin February 26 th, 2018 Table of Contents

More information

ESE 150 Lab 04: The Discrete Fourier Transform (DFT)

ESE 150 Lab 04: The Discrete Fourier Transform (DFT) LAB 04 In this lab we will do the following: 1. Use Matlab to perform the Fourier Transform on sampled data in the time domain, converting it to the frequency domain 2. Add two sinewaves together of differing

More information

Lesson 3: Arduino. Goals

Lesson 3: Arduino. Goals Introduction: This project introduces you to the wonderful world of Arduino and how to program physical devices. In this lesson you will learn how to write code and make an LED flash. Goals 1 - Get to

More information

FABO ACADEMY X ELECTRONIC DESIGN

FABO ACADEMY X ELECTRONIC DESIGN ELECTRONIC DESIGN MAKE A DEVICE WITH INPUT & OUTPUT The Shanghaino can be programmed to use many input and output devices (a motor, a light sensor, etc) uploading an instruction code (a program) to it

More information

ECE 445: Modular Add-On for Noise Cancelling Headphones

ECE 445: Modular Add-On for Noise Cancelling Headphones ECE 445: Modular Add-On for Noise Cancelling Headphones Wednesday, December 13th, 2017 Team 18 Tanishq Dubey (tdubey3), Harrison Qu (hqu5), Yu Wang (yuwang15) ECE 445 Abstract Noise Cancelling Headphones

More information

11. Audio Amp. LM386 Low Power Amplifier:

11. Audio Amp. LM386 Low Power Amplifier: EECE208 INTRO TO EE LAB Dr. Charles Kim 11. Audio Amp Objectives: The main purpose of this laboratory exercise is to design an audio amplifier based on the LM386 Low Voltage Audio Power Amplifier chip

More information

Wireless Laptop Charging System ECE 445 Mock Design Review

Wireless Laptop Charging System ECE 445 Mock Design Review Wireless Laptop Charging System ECE 445 Mock Design Review Onur Cam, Jason Kao, Enrique Ramirez Group 37 TA: Zhen Qin 2/20/18 1.1 Diagrams The block diagram below shows how the modules will connect to

More information

Design Document. Team 63: Anthony Shvets and Zhe Tang TA: Zipeng Wang ECE 445 Spring 2018

Design Document. Team 63: Anthony Shvets and Zhe Tang TA: Zipeng Wang ECE 445 Spring 2018 Design Document Team 63: Anthony Shvets and Zhe Tang TA: Zipeng Wang ECE 445 Spring 2018 1. Introduction 1.1 Objective Code is everywhere in the world and coding has become an essential skill for not only

More information

Hearing Aid Redesign: Test Plans ELECTRICAL TESTING

Hearing Aid Redesign: Test Plans ELECTRICAL TESTING ELECTRICAL TESTING Table of Contents: Number Test Page EE 1 Switch 2 EE 2 Speaker 7 EE 3 Sound Processing 11 EE 4 Microphone 14 EE 5 Battery Charger 18 EE 6 Bandpass and Pre-Amplification 20 EE 7 System

More information

ECE 203 ELECTRIC CIRCUITS AND SYSTEMS LABORATORY SPRING No labs meet this week. Course introduction & lab safety

ECE 203 ELECTRIC CIRCUITS AND SYSTEMS LABORATORY SPRING No labs meet this week. Course introduction & lab safety ECE 203 ELECTRIC CIRCUITS AND SYSTEMS LABORATORY SPRING 2019 Week of Jan. 7 Jan. 14 Jan. 21 Jan. 28 Feb. 4 Feb. 11 Feb. 18 Feb. 25 Mar. 4 Mar. 11 Mar. 18 Mar. 25 Apr. 1 Apr. 8 Apr. 15 Topic No labs meet

More information

Air Guitar Gloves. By Akshay Ivatury Brian Tsai Bobby Zhang. ECE 445 Final Report, Senior Design, Spring TA: Jose Sanchez Vicarte.

Air Guitar Gloves. By Akshay Ivatury Brian Tsai Bobby Zhang. ECE 445 Final Report, Senior Design, Spring TA: Jose Sanchez Vicarte. Air Guitar Gloves By Akshay Ivatury Brian Tsai Bobby Zhang ECE 445 Final Report, Senior Design, Spring 2017 TA: Jose Sanchez Vicarte December 2017 Project No. 70 Abstract The Air Guitar Gloves are a pair

More information

Wireless Laptop Charging System ECE 445 Design Document

Wireless Laptop Charging System ECE 445 Design Document Wireless Laptop Charging System ECE 445 Design Document Onur Cam, Jason Kao, Enrique Ramirez Group 37 TA: Zhen Qin 2/22/18 1 1. Introduction 1.1 Objective Laptops are everywhere in classrooms. Many laptops

More information

Lab 4: Analysis of the Stereo Amplifier

Lab 4: Analysis of the Stereo Amplifier ECE 212 Spring 2010 Circuit Analysis II Names: Lab 4: Analysis of the Stereo Amplifier Objectives In this lab exercise you will use the power supply to power the stereo amplifier built in the previous

More information

ECE 445 Fall RFI Detector Design Document

ECE 445 Fall RFI Detector Design Document ECE 445 Fall 2017 RFI Detector Design Document October 5, 2017 Team 13: TA: Jamie Brunskill Tyler Shaw Kyle Stevens Zipeng Wang 1 Introduction 1.1 Objective The Arecibo Observatory in Puerto Rico asks

More information

Digital Bat Ears. ECE 445 Design Review. Paul Logsdon Ian Bonthron. Group #32 TA: Kevin Chen

Digital Bat Ears. ECE 445 Design Review. Paul Logsdon Ian Bonthron. Group #32 TA: Kevin Chen Digital Bat Ears ECE 445 Design Review Paul Logsdon Ian Bonthron Group #32 TA: Kevin Chen 1 Table of Contents 1.0 Introduction 3 1.1 Statement of Purpose 3 1.2 Objectives 3 1.2.1 Goals 3 1.2.2 Functions

More information

ASCOM EF Lens Controller

ASCOM EF Lens Controller ASCOM EF Lens Controller ASCOM EF Lens Controller control unit for Canon EF/EF-S lenses. It allows you to control lens using the ASCOM platform tools. Features (supported by driver): focus control; aperture

More information

Breadboard Arduino Compatible Assembly Guide

Breadboard Arduino Compatible Assembly Guide (BBAC) breadboard arduino compatible Breadboard Arduino Compatible Assembly Guide (BBAC) A Few Words ABOUT THIS KIT The overall goal of this kit is fun. Beyond this, the aim is to get you comfortable using

More information

Experiment EB2: IC Multivibrator Circuits

Experiment EB2: IC Multivibrator Circuits EEE1026 Electronics II: Experiment Instruction Learning Outcomes Experiment EB2: IC Multivibrator Circuits LO1: Explain the principles and operation of amplifiers and switching circuits LO2: Analyze high

More information

Single-phase Variable Frequency Switch Gear

Single-phase Variable Frequency Switch Gear Single-phase Variable Frequency Switch Gear Eric Motyl, Leslie Zeman Advisor: Professor Steven Gutschlag Department of Electrical and Computer Engineering Bradley University, Peoria, IL May 13, 2016 ABSTRACT

More information

PreLab 6 PWM Design for H-bridge Driver (due Oct 23)

PreLab 6 PWM Design for H-bridge Driver (due Oct 23) GOAL PreLab 6 PWM Design for H-bridge Driver (due Oct 23) The overall goal of Lab6 is to demonstrate a DC motor controller that can adjust speed and direction. You will design the PWM waveform and digital

More information

Screening Audiometer

Screening Audiometer EE89 Electronic Design Lab (EDL) Report, EE Dept, IIT Bombay, December, 00 Screening Audiometer Group No. D0 Mahim Agrawal (0D000) < mahim@ee.iitb.ac.in > Ashok Kumar Bhardwaj (0D00) < ashokkb@ee.iitb.ac.in

More information

EE 233 Circuit Theory Lab 3: First-Order Filters

EE 233 Circuit Theory Lab 3: First-Order Filters EE 233 Circuit Theory Lab 3: First-Order Filters Table of Contents 1 Introduction... 1 2 Precautions... 1 3 Prelab Exercises... 2 3.1 Inverting Amplifier... 3 3.2 Non-Inverting Amplifier... 4 3.3 Integrating

More information

Stereo Tone Controller

Stereo Tone Controller Stereo Tone Controller 1. Objective In this project, you get to design a stereo tone-controller. In other words, the circuit will amplify the base and/or treble for a two-channel stereo system. 2. Prelab

More information

Simple Heartbeat Monitor for Analog Enthusiasts

Simple Heartbeat Monitor for Analog Enthusiasts Abigail C Rice, Jelimo B Maswan 6.101: Project Proposal Date: 18/4/2014 Introduction Simple Heartbeat Monitor for Analog Enthusiasts An electrocardiogram (ECG or EKG) is a simple, non-invasive way of measuring

More information

HAW-Arduino. Sensors and Arduino F. Schubert HAW - Arduino 1

HAW-Arduino. Sensors and Arduino F. Schubert HAW - Arduino 1 HAW-Arduino Sensors and Arduino 14.10.2010 F. Schubert HAW - Arduino 1 Content of the USB-Stick PDF-File of this script Arduino-software Source-codes Helpful links 14.10.2010 HAW - Arduino 2 Report for

More information

6. HARDWARE PROTOTYPE AND EXPERIMENTAL RESULTS

6. HARDWARE PROTOTYPE AND EXPERIMENTAL RESULTS 6. HARDWARE PROTOTYPE AND EXPERIMENTAL RESULTS Laboratory based hardware prototype is developed for the z-source inverter based conversion set up in line with control system designed, simulated and discussed

More information

Intro To Engineering II for ECE: Lab 7 The Op Amp Erin Webster and Dr. Jay Weitzen, c 2014 All rights reserved.

Intro To Engineering II for ECE: Lab 7 The Op Amp Erin Webster and Dr. Jay Weitzen, c 2014 All rights reserved. Lab 7: The Op Amp Laboratory Objectives: 1) To introduce the operational amplifier or Op Amp 2) To learn the non-inverting mode 3) To learn the inverting mode 4) To learn the differential mode Before You

More information

Data Conversion and Lab Lab 3 Spring Analog to Digital Converter

Data Conversion and Lab Lab 3 Spring Analog to Digital Converter Analog to Digital Converter Lab Report Objectives See separate report form located on the course webpage. This form should be completed during the performance of this lab. 1) To construct and operate an

More information

Pacific Antenna - Easy TR Switch

Pacific Antenna - Easy TR Switch Pacific Antenna - Easy TR Switch Kit Description The Easy TR Switch is an RF sensing switch that can be used to switch an antenna between a receiver and transmitter. It also has a second switched pair

More information

Better Learning. ECEDHA 2013 Clint Cole, Digilent

Better Learning. ECEDHA 2013 Clint Cole, Digilent Better Learning ECEDHA 2013 Clint Cole, Digilent ECE Department Heads are the most important people in the world. Engineering is Fun We re starting early and building excitement Introductory hands-on engineering

More information

ME 461 Laboratory #5 Characterization and Control of PMDC Motors

ME 461 Laboratory #5 Characterization and Control of PMDC Motors ME 461 Laboratory #5 Characterization and Control of PMDC Motors Goals: 1. Build an op-amp circuit and use it to scale and shift an analog voltage. 2. Calibrate a tachometer and use it to determine motor

More information

Technical Brief FAQ (FREQUENCLY ASKED QUESTIONS) For further information, please contact Crystal Semiconductor at (512) or 1 (800)

Technical Brief FAQ (FREQUENCLY ASKED QUESTIONS) For further information, please contact Crystal Semiconductor at (512) or 1 (800) Technical Brief FAQ (FREQUENCLY ASKED QUESTIONS) 1) Do you have a four channel part? Not at this time, but we have plans to do a multichannel product Q4 97. We also have 4 digital output lines which can

More information

Radar Shield System Design

Radar Shield System Design University of California, Davis EEC 193 Final Project Report Radar Shield System Design Lit Po Kwong: lkwong853@gmail.com Yuyang Xie: szyuyxie@gmail.com Ivan Lee: yukchunglee@hotmail.com Ri Liang: joeliang914@gmail.com

More information

Auto Harmonizer. EEL 4924 Electrical Engineering Design (Senior Design) Preliminary Design Report 2 February 2012

Auto Harmonizer. EEL 4924 Electrical Engineering Design (Senior Design) Preliminary Design Report 2 February 2012 Auto Harmonizer EEL 4924 Electrical Engineering Design (Senior Design) Preliminary Design Report 2 February 2012 Project Abstract: Team Name: Slubberdegullions Team Members: Josh Elliott and Henry Hatton,

More information

EE43 43/100 Fall Final Project: 1: Audio Amplifier, Part Part II II. Part 2: Audio Amplifier. Lab Guide

EE43 43/100 Fall Final Project: 1: Audio Amplifier, Part Part II II. Part 2: Audio Amplifier. Lab Guide EE 3/00 EE FINAL PROJECT PROJECT:AN : AUDIO AUDIO AMPLIFIER AMPLIFIER Part : Audio Amplifier Lab Guide In this lab we re going to extend what you did last time. We re going to use your AC to DC converter

More information

EEC 134 Final Report

EEC 134 Final Report EEC 134 Final Report Team Falcon 9 Alejandro Venegas Marco Venegas Alexis Torres Gerardo Abrego Abstract: EEC 134 By Falcon 9 In the EEC 134 course the focus is on RF/microwave systems design. The main

More information

Instructional Demos, In-Class Projects, & Hands-On Homework: Active Learning for Electrical Engineering using the Analog Discovery

Instructional Demos, In-Class Projects, & Hands-On Homework: Active Learning for Electrical Engineering using the Analog Discovery Instructional Demos, In-Class Projects, & Hands-On Homework: Active Learning for Electrical Engineering using the Analog Discovery by Dr. Gregory J. Mazzaro Dr. Ronald J. Hayne THE CITADEL, THE MILITARY

More information

INA169 Breakout Board Hookup Guide

INA169 Breakout Board Hookup Guide Page 1 of 10 INA169 Breakout Board Hookup Guide CONTRIBUTORS: SHAWNHYMEL Introduction Have a project where you want to measure the current draw? Need to carefully monitor low current through an LED? The

More information

EE 233 Circuit Theory Lab 2: Amplifiers

EE 233 Circuit Theory Lab 2: Amplifiers EE 233 Circuit Theory Lab 2: Amplifiers Table of Contents 1 Introduction... 1 2 Precautions... 1 3 Prelab Exercises... 2 3.1 LM348N Op-amp Parameters... 2 3.2 Voltage Follower Circuit Analysis... 2 3.2.1

More information

Lab #10: Finite State Machine Design

Lab #10: Finite State Machine Design Lab #10: Finite State Machine Design Zack Mattis Lab: 3/2/17 Report: 3/14/17 Partner: Brendan Schuster Purpose In this lab, a finite state machine was designed and fully implemented onto a protoboard utilizing

More information

EE283 Electrical Measurement Laboratory Laboratory Exercise #7: Digital Counter

EE283 Electrical Measurement Laboratory Laboratory Exercise #7: Digital Counter EE283 Electrical Measurement Laboratory Laboratory Exercise #7: al Counter Objectives: 1. To familiarize students with sequential digital circuits. 2. To show how digital devices can be used for measurement

More information

DC Motor and Servo motor Control with ARM and Arduino. Created by:

DC Motor and Servo motor Control with ARM and Arduino. Created by: DC Motor and Servo motor Control with ARM and Arduino Created by: Andrew Kaler (39345) Tucker Boyd (46434) Mohammed Chowdhury (860822) Tazwar Muttaqi (901700) Mark Murdock (98071) May 4th, 2017 Objective

More information

6.101 Introductory Analog Electronics Laboratory

6.101 Introductory Analog Electronics Laboratory 6.101 Introductory Analog Electronics Laboratory Spring 2015, Instructor Gim Hom Project Proposal Transmitting, Receiving, and Interpreting ECG Waveforms Daniel Moon (dhmoon@mit.edu) Thipok (Ben) Rak-amnouykit

More information

Pacific Antenna Easy TR Switch

Pacific Antenna Easy TR Switch Pacific Antenna Easy TR Switch Kit Description The Easy TR Switch is an RF sensing circuit with a double pole double throw relay that can be used to automatically switch an antenna between a separate receiver

More information

TV Remote. Discover Engineering. Youth Handouts

TV Remote. Discover Engineering. Youth Handouts Discover Engineering Youth Handouts Electronic Component Guide Component Symbol Notes Amplifier chip 1 8 2 7 3 6 4 5 Capacitor LED The amplifier chip (labeled LM 386) has 8 legs, or pins. Each pin connects

More information

Part 1: DC Concepts and Measurement

Part 1: DC Concepts and Measurement EE 110 Introduction to Engineering & Laboratory Experience Saeid Rahimi, Ph.D. Lab 1 DC Concepts and Measurement: Ohm's Law, Voltage ad Current Introduction to Analog Discovery Scope Last week we introduced

More information

Lab: Operational Amplifiers

Lab: Operational Amplifiers Page 1 of 6 Laboratory Goals Familiarize students with Integrated Circuit (IC) construction on a breadboard Introduce the LM 741 Op-amp and its applications Design and construct an inverting amplifier

More information

Lab 3: Embedded Systems

Lab 3: Embedded Systems THE PENNSYLVANIA STATE UNIVERSITY EE 3OOW SECTION 3 FALL 2015 THE DREAM TEAM Lab 3: Embedded Systems William Stranburg, Sean Solley, Sairam Kripasagar Table of Contents Introduction... 3 Rationale... 3

More information

Enhanced Security Rotary Pattern Recognition Lock

Enhanced Security Rotary Pattern Recognition Lock Enhanced Security Rotary Pattern Recognition Lock Group #11 Design Review TA: John Capozzo Group Members: Taiming Zhang Jingjing Li Oct 9 th, 2016 1 Table of Contents 1. Introduction...3 1.1 Statement

More information

ENGN Analogue Electronics Digital PC Oscilloscope

ENGN Analogue Electronics Digital PC Oscilloscope Faculty of Engineering and Information Technology Department of Engineering ENGN3227 - Analogue Electronics Digital PC Oscilloscope David Dries u2543318 Craig Gibbons u2543813 James Moran u4114563 Ranmadhu

More information

CPR For Dummies Bathtub Drowning Prevention

CPR For Dummies Bathtub Drowning Prevention CPR For Dummies Bathtub Drowning Prevention James C. Young Justin O. Young April 26, 2006 Computer Engineering Senior Project Proposal Introduction Over 200 children drown in bathtubs each year in the

More information

WIRELESS ELEVATOR REMOTE CONTROL. Patrick Goh Hamed Asghari ECE 445, SENIOR DESIGN PROJECT. Spring TA: Dwayne Hagerman. Project No.

WIRELESS ELEVATOR REMOTE CONTROL. Patrick Goh Hamed Asghari ECE 445, SENIOR DESIGN PROJECT. Spring TA: Dwayne Hagerman. Project No. WIRELESS ELEVATOR REMOTE CONTROL By Patrick Goh Hamed Asghari ECE 445, SENIOR DESIGN PROJECT Spring 2007 TA: Dwayne Hagerman May 1, 2007 Project No. 16 ABSTRACT The Wireless Elevator Remote Control (WERC)

More information

DESCRIPTION DOCUMENT FOR WIFI SINGLE DIMMER ONE AMPERE BOARD HARDWARE REVISION 0.3

DESCRIPTION DOCUMENT FOR WIFI SINGLE DIMMER ONE AMPERE BOARD HARDWARE REVISION 0.3 DOCUMENT NAME: DESIGN DESCRIPTION, WIFI SINGLE DIMMER BOARD DESCRIPTION DOCUMENT FOR WIFI SINGLE DIMMER ONE AMPERE BOARD HARDWARE REVISION 0.3 Department Name Signature Date Author Reviewer Approver Revision

More information

Low Cost Screening Audiometer

Low Cost Screening Audiometer Abstract EE 389 EDL Report, EE Dept. IIT Bombay, submitted on Nov.2004 Low Cost Screening Audiometer Group No.: D3 Chirag Jain 01d07018 Prashant Yadav 01d07024 Puneet Parakh 01d07007 Supervisor: Prof.

More information

MaxxBass Development Recommendations

MaxxBass Development Recommendations MaxxBass Development Recommendations 1 Purpose The document provides recommendations on MaxxBass in evaluation, selection of possible implementations, circuit design and testing. It also refers to several

More information

Arduino An Introduction

Arduino An Introduction Arduino An Introduction Hardware and Programming Presented by Madu Suthanan, P. Eng., FEC. Volunteer, Former Chair (2013-14) PEO Scarborough Chapter 2 Arduino for Mechatronics 2017 This note is for those

More information

EE223 Laboratory #4. Comparators

EE223 Laboratory #4. Comparators EE223 Laboratory #4 Comparators Objectives 1) Learn how to design using comparators 2) Learn how to breadboard circuits incorporating integrated circuits (ICs) 3) Learn how to obtain and read IC datasheets

More information

Verification of competency for ELTR courses

Verification of competency for ELTR courses Verification of competency for ELTR courses The purpose of these performance assessment activities is to verify the competence of a prospective transfer student with prior work experience and/or formal

More information

University of North Carolina, Charlotte Department of Electrical and Computer Engineering ECGR 3157 EE Design II Fall 2009

University of North Carolina, Charlotte Department of Electrical and Computer Engineering ECGR 3157 EE Design II Fall 2009 University of North Carolina, Charlotte Department of Electrical and Computer Engineering ECGR 3157 EE Design II Fall 2009 Lab 1 Power Amplifier Circuits Issued August 25, 2009 Due: September 11, 2009

More information

LSN 9 Electronic Hardware Design

LSN 9 Electronic Hardware Design LSN 9 Electronic Hardware Design Department of Engineering Technology LSN 9 Engineering Design Process Define the problem / requirements Define the target values Develop solutions Research existing technologies

More information

FSA110 Audio and Wired-OR USB2.0 Hi-Speed (480Mbps) Switch with Negative Signal Capability and Built-in Termination

FSA110 Audio and Wired-OR USB2.0 Hi-Speed (480Mbps) Switch with Negative Signal Capability and Built-in Termination July 2013 FSA110 Audio and Wired-OR USB2.0 Hi-Speed (480Mbps) Switch with Negative Signal Capability and Built-in Termination Features 6pF Typical Switch Off Capacitance for HS USB 2.5Ω Typical On Resistance

More information

Module: Arduino as Signal Generator

Module: Arduino as Signal Generator Name/NetID: Teammate/NetID: Module: Laboratory Outline In our continuing quest to access the development and debugging capabilities of the equipment on your bench at home Arduino/RedBoard as signal generator.

More information

Using the VM1010 Wake-on-Sound Microphone and ZeroPower Listening TM Technology

Using the VM1010 Wake-on-Sound Microphone and ZeroPower Listening TM Technology Using the VM1010 Wake-on-Sound Microphone and ZeroPower Listening TM Technology Rev1.0 Author: Tung Shen Chew Contents 1 Introduction... 4 1.1 Always-on voice-control is (almost) everywhere... 4 1.2 Introducing

More information

Sweep / Function Generator User Guide

Sweep / Function Generator User Guide I. Overview Sweep / Function Generator User Guide The Sweep/Function Generator as developed by L. J. Haskell was designed and built as a multi-functional test device to help radio hobbyists align antique

More information

A New Capacitive Sensing Circuit using Modified Charge Transfer Scheme

A New Capacitive Sensing Circuit using Modified Charge Transfer Scheme 78 Hyeopgoo eo : A NEW CAPACITIVE CIRCUIT USING MODIFIED CHARGE TRANSFER SCHEME A New Capacitive Sensing Circuit using Modified Charge Transfer Scheme Hyeopgoo eo, Member, KIMICS Abstract This paper proposes

More information

RC Filters and Basic Timer Functionality

RC Filters and Basic Timer Functionality RC-1 Learning Objectives: RC Filters and Basic Timer Functionality The student who successfully completes this lab will be able to: Build circuits using passive components (resistors and capacitors) from

More information

Build a Mintronics: MintDuino

Build a Mintronics: MintDuino Build a Mintronics: MintDuino Author: Marc de Vinck Parts relevant to this project Mintronics: MintDuino (1) The MintDuino is perfect for anyone interested in learning (or teaching) the fundamentals of

More information

Electronic Sound Generator

Electronic Sound Generator Electronic Sound Generator Team 44 Kedong Shao, Jeremy Hutnak, and Parikshit Kapadia ECE 445 Project Proposal Spring 2018 TA: Kexin Hui 1. Introduction 1.1 Objective Modern day synthesisers are very expensive

More information

Materials. Eight pin DIP socket 0.1 µf capacitor

Materials. Eight pin DIP socket 0.1 µf capacitor JOE GROELE Project Outline The goal of this project was to build a plasma speaker that will amplify an electric guitar sound. Build an audio oscillator circuit using an ordinary speaker Test speaker performance

More information

Building a Bitx20 Version 3

Building a Bitx20 Version 3 Building a Bitx20 Version 3 The board can be broken into sections and then built and tested one section at a time. This will make troubleshooting easier as any problems will be confined to one small section.

More information

EE 368 Electronics Lab. Experiment 10 Operational Amplifier Applications (2)

EE 368 Electronics Lab. Experiment 10 Operational Amplifier Applications (2) EE 368 Electronics Lab Experiment 10 Operational Amplifier Applications (2) 1 Experiment 10 Operational Amplifier Applications (2) Objectives To gain experience with Operational Amplifier (Op-Amp). To

More information

University of California at Berkeley Donald A. Glaser Physics 111A Instrumentation Laboratory

University of California at Berkeley Donald A. Glaser Physics 111A Instrumentation Laboratory Published on Instrumentation LAB (http://instrumentationlab.berkeley.edu) Home > Lab Assignments > Digital Labs > Digital Circuits II Digital Circuits II Submitted by Nate.Physics on Tue, 07/08/2014-13:57

More information

Design Document. Autonomous Tiny Robots. ECE Spring TA: Luke Wendt. Team 64 Timothy Claussen Haoyu Wu Ruiyang Ding

Design Document. Autonomous Tiny Robots. ECE Spring TA: Luke Wendt. Team 64 Timothy Claussen Haoyu Wu Ruiyang Ding 1 Design Document Autonomous Tiny Robots ECE 445 - Spring 2017 TA: Luke Wendt Team 64 Timothy Claussen Haoyu Wu Ruiyang Ding 2 1. Introduction 1.1 Objective Swarm robotics is an emerging field of robotics

More information

Automatic Bedtime Audio Volume Adjuster

Automatic Bedtime Audio Volume Adjuster Automatic Bedtime Audio Volume Adjuster 6.101 Final Project Report Chris Au May 10, 2016 Page 1 Abstract The project uses analog circuits to create a gentle audio experience for listening to music before

More information

Wireless Bluetooth Controller for DC Motor

Wireless Bluetooth Controller for DC Motor Wireless Bluetooth Controller for DC Motor ECE 445 Final Report May 1, 2007 Team Members: Abhay Jain Reid Vaccari TA: Brian Raczkowski Professor Gary Swenson TABLE OF CONTENTS 1. INTRODUCTION...3 1.1 Motivation...3

More information

ESE 350 Microcontroller Laboratory Lab 5: Sensor-Actuator Lab

ESE 350 Microcontroller Laboratory Lab 5: Sensor-Actuator Lab ESE 350 Microcontroller Laboratory Lab 5: Sensor-Actuator Lab The purpose of this lab is to learn about sensors and use the ADC module to digitize the sensor signals. You will use the digitized signals

More information

LABORATORY EXPERIMENT. Infrared Transmitter/Receiver

LABORATORY EXPERIMENT. Infrared Transmitter/Receiver LABORATORY EXPERIMENT Infrared Transmitter/Receiver (Note to Teaching Assistant: The week before this experiment is performed, place students into groups of two and assign each group a specific frequency

More information

OPERATIONAL AMPLIFIERS (OP-AMPS) II

OPERATIONAL AMPLIFIERS (OP-AMPS) II OPERATIONAL AMPLIFIERS (OP-AMPS) II LAB 5 INTRO: INTRODUCTION TO INVERTING AMPLIFIERS AND OTHER OP-AMP CIRCUITS GOALS In this lab, you will characterize the gain and frequency dependence of inverting op-amp

More information

Laboratory 8 Operational Amplifiers and Analog Computers

Laboratory 8 Operational Amplifiers and Analog Computers Laboratory 8 Operational Amplifiers and Analog Computers Introduction Laboratory 8 page 1 of 6 Parts List LM324 dual op amp Various resistors and caps Pushbutton switch (SPST, NO) In this lab, you will

More information

MM5452/MM5453 Liquid Crystal Display Drivers

MM5452/MM5453 Liquid Crystal Display Drivers MM5452/MM5453 Liquid Crystal Display Drivers General Description The MM5452 is a monolithic integrated circuit utilizing CMOS metal gate, low threshold enhancement mode devices. It is available in a 40-pin

More information

TL494M PULSE-WIDTH-MODULATION CONTROL CIRCUIT

TL494M PULSE-WIDTH-MODULATION CONTROL CIRCUIT Complete PWM Power Control Circuitry Uncommitted Outputs for 00-mA Sink or Source Current Output Control Selects Single-Ended or Push-Pull Operation Internal Circuitry Prohibits Double Pulse at Either

More information