Digital Effects Pedal Description Ross Jongeward 10 December 2014

Size: px
Start display at page:

Download "Digital Effects Pedal Description Ross Jongeward 10 December 2014"

Transcription

1 Digital Effects Pedal Description Ross Jongeward 10 December

2 Contents Section Number Title Page 1.1 Introduction Project Electrical Specifications Project Specifications Power Requirements Special Environmental Requirements System Description and Specifications Microcontroller Type Hardware Block Diagram Software Requirements User Interface Requirements Digital Effects Pedal Interface Layout Sketch User Interface State Diagrams Development Plan Development Description Prioritized List of Features Weekly Schedule Required Development Hardware and Software Demonstration Preliminary Parts List Power Requirements..12 2

3 1.1 Introduction: The result of this project will be a closed box effects pedal device used for an electric or amplified acoustic musical instrument. The box will have a standard patch cable input and output to interface with other music equipment. The pedal will have several features available for the user to choose from. The main feature will be the whammy effect which allows the user to add harmonics to their sound. In addition to a whammy pedal, this effects system will also house a wah pedal effect which controls the user s tone. The last feature of the effects pedal device will be a distortion switch. Each effect module will be independently controllable by the user to allow for a very customizable range of effects. 2.1 Product Electrical Specifications: Project specifications: Dimensions 25 cm x 40 cm x 13 cm Product Weight <3 kg. Sample Rate 44.1 khz Frequency Response Dry 20 Hz 20 khz Frequency Response Wet 20 Hz 12 khz A/D Converter Bit Width 16 bit A/D Converter SNR 87 dba D/A Converter Bit Width 16 bit D/A Converter SNR 93 dba Max Signal Input +4 dbu Max Signal Output +4 dbu Resolution 2 Hz Additionally, my product will need to adhere to UL standard 6500: Standard for Audio/Video and Musical Instrument Apparatus for Household, Commercial, and Similar General Use Power requirements: Power Source Type 5 V / 4 A / 20 W AC/DC wall adapter Voltage Range 5 V Current (Max) 2.02 A Power (Max) W Special environmental requirements: The operating temperature range of my device will be 0 C to 40 C. Since my product will be used generally in indoor conditions and enclosed in its box; humidity, shock, and other special environmental factors should not affect its performance. 3

4 3.1 System Description and Specifications: Microcontroller type: For optimal audio quality, the analog to digital converter (ADC) as well as the digital to analog converter (DAC) need to be high quality. A bit width of 24 would be ideal for both the ADC and DAC. 16 bit audio samples are certainly acceptable as that is the standard for the compact disc which is still used widely for storing musical audio data. Ideally I would use the TMS320C6713DSK, Cortex M4, Cortex M7, or a high performance digital signal processor (DSP) board with a 24 bit ADC and DAC. Since these are very expensive to buy as a single unit, I will be using the TWR-K70F120M board since we have them available to use here at Western Washington University (WWU). I will be using the K70F120M with an external codec module which will support 16 bits so it will meet the needs for my project. A K70 microcontroller (MCU) is required for my project because it has a digital signal processor integrated in its core as well as the speed and power required for the intensive amount of calculations necessary for my application. Since my application involves real-time (or near-real time) audio processing, my MCU needs to be fast to process the incoming data and send it out before any audible delay can be heard Hardware block diagram: The following diagram shows required hardware modules for my project. The input signal is first passed through a band-pass filter to act as an anti-aliasing filter. This allows for the bandwidth of the incoming signal to be limited to what is desired for DSP. If the incoming signal is unfiltered, or all-pass, the Nyquist sampling criteria could be violated. If the Nyquist sampling criteria is violated, unwanted spectral copies could appear in DFT bins. The filter will be set to filter out frequencies less than 20 Hz and greater than 20 khz. The gain of the pass-band of the filter will be 1 as to not change the gain of the important frequencies. After the signal has been filtered, it will be fed into the codec module via the instrument line-in jack. The next piece of hardware is an extremely important part of the total system. The codec module is what creates the digital samples of the audio input signal. The codec module is initialized with a 44.1 khz sample rate and a bit width of 16 bits. This system block communicates with the K70 MCU via the GPIO interface. As well as obtain the input samples and communicate them with the K70 MCU via I2S, the codec module receives modified samples and reconstructs an analog output using its DAC. An external codec module is required because the onboard K70 ADC/DAC will not be adequate. While the K70 does have a 16 bit ADC, it only has a 12 bit DAC. The external codec module will allow 16 bit samples in and out so it will be a much better option for dealing with the audio signal. The most important system block is arguably the K70. The K70 uses many resources to accomplish several tasks. The K70 MCU uses GPIO as well as I2S to receive and transmit data with the external codec module as well as the user interface hardware. After receiving samples from the codec module, the MCU saves the samples in RAM. The K70 has DSP capabilities and will therefore use specialized internal hardware to perform Fast Fourier Transforms (FFTs). The MCU will perform DFT calculations and modify the input samples. After the samples are modified, they will be stored back into RAM and transmitted back to the codec module. My system will need at least 8 bytes of RAM for storing samples. Floating point will not be necessary for my project. 4

5 Remaining hardware blocks that interface with the K70 MCU are to communicate with the user. A 4 bit rotary encoder switch will communicate with the K70 MCU via GPIO. The function of this hardware is to allow the user to select different effect settings. The user selection option will be determined by reading the values of all four connected GPIO pins. Another rotary encoder will used to interface with the MCU, referred in the figure as the whammy pedal switch. This rotary encoder will be 1 bit and gives the user further control of their desired effect. This rotary encoder will also communicate with the MCU via GPIO. Last of the user control hardware is the step button switch. This switch allows the user to toggle the digital effects on or off. By GPIO communication, the MCU can use the status of the connected pin to determine processor state. The step button switch activates the indicator LED by applying a voltage to it when in the on position. Looking back at the codec module, the only remaining hardware to trace is the signal output. The instrument line-out jack is identical to the instrument line-in jack as it is simply an interface for the audio signal path. The final stage of the audio signal path before exiting the system is the band-pass filter block. This stage removes any unwanted spectral copies that were created by the DAC. The purpose of this filter is to clean up the signal be removing spectral noise. The last piece of hardware that has not been mentioned is the supply power. For this project, all power will be supplied with a 5V, 20W DC power supply. The supply will be fed with standard North America AC power. 5

6 3.2.1 Software requirements: The programming language needed for this project is C. C will be the best language to do the DSP algorithms. A FFT algorithm will be needed to determine the fundamental frequency of the input signal. Beyond the actual digital signal processing involved, an I2S driver will need to be developed to enable communication between the K70 MCU and the external codec module. The whole program will be run underneath a µcos runtime environment. PCB size limitations: Since I will be building the enclosure for the effects pedal, size limitations will not be too much of an issue. The amount of analog circuitry will be pretty minimal compared to the size of the microcontroller, so it will be easy to make all the internals of my project fit inside a small box. For the sake of a realistic enclosure, my PCB should not exceed four by four inches. 4.1 User Interface Requirements: The following sketch is a top-down view of the physical user interface, or the actual effects pedal. On the left side of the rectangular wooden enclosure is the interface for a standard professional audio patch cable. This will be the audio signal input to the device. The audio signal output of the device is of the same format on the right side of the enclosure. The effect selection knob on the left side of the rocker pedals is the harmonics selection knob. This knob offers the user control of which selection of harmonics they wish to add to their instrument when using the whammy effect. Each setting offers two different harmonic choices. The rocker pedal adjacent to the harmonics selection knob controls which of the two harmonic choices will be added to the user s sound. The step button switch below the harmonics selection knob toggles the whammy effect on or off. The light emitting diode (LED) below the step button illuminates to indicate to the user when the effect is active. The rocker pedal on the right side of the digital effects pedal enclosure is the wah pedal control. By pressing the rocker pedal all the way forward, the user can toggle the wah effect on or off with the step button switch located underneath. The LED indicator below the wah pedal rocker will again indicate when the effect is active. The effect selection knob on the right side of the enclosure is the distortion effect control knob. This knob offers the user control of the level of distortion introduced by the effect. Turning the knob clockwise will increase the level of distortion while turning the knob counter-clockwise will decrease the point of distortion. The step button below the distortion effect control knob will toggle the effect on and off, again indicated by the LED below it. For the completion of my prototype, the only required user interface will be for the whammy harmonics effect. 6

7 4.1.1 Digital effects pedal interface layout sketch: User interface state diagrams: Whammy step button: Whammy pedal: Wah pedal step button: 7

8 Distortion step button: Distortion selection knob: Whammy selection knob: 8

9 5.1 Development Plan: Development description: The first step in the development of any project is to acquire the needed parts for testing and completion of the prototype. Once all of the necessary components have been obtained, the next step will be to build multiples of the needed hardware. Once the hardware has been built, the next task will be to test the hardware and ensure its functionality. After the hardware has been tested and interfaced with the microcontroller, software development will begin. The first step in software development will be to establish the microcontroller environment and begin creating the I2S driver to communicate with and initialize the external codec module. After the external codec module has been successfully initialized, the next stage will be to accomplish sampling an input signal and reconstructing it at the output. At this point the rest of the project mainly relies on creating and developing the digital signal processing (DSP) algorithms. The final stage of the development process will be constructing the final prototype enclosure and testing the digital effects pedal in a live music setting to evaluate its performance and make any last minute adjustments Prioritized list of features: As this project contains multiple elements, feature priorities must be established early in development to ensure the most complete product when the project deadline has been reached. 1. Input signal analog to digital conversion. Without this feature, my system will not be able to do anything for the user. Also, digital to analog conversion and output filtering. Without being able to convert digital samples back into an analog signal, a digital effects pedal cannot function on any level. 2. Digital signal processing (Whammy effects). The biggest and most important feature of this project will be the harmonic/whammy effect pedal system. Getting this feature operational will mean my project is a success on the most basic level. 3. Digital signal processing (Wah effects). The second most important feature of this project will be the wah pedal. At this stage, the pedal will be functioning on a basic level so this will really be an additional feature. This feature will not be completed for this course. 4. Analog circuit design (Distortion). Getting the distortion feature operational with just one preset will be the next feature to add to the system once the whammy and wah pedals have been established. This feature will not be completed for this course. 5. Now that all the software and hardware is complete, the final feature of this project will be integrating the pedals, knobs, and the rest into a professional and user-friendly enclosure Weekly schedule: Week Objective 12/01-12/07 Acquire hardware 9

10 12/08-12/14 Acquire hardware 12/15-12/21 Build band-pass filters and input/output circuits 12/22-12/28 Build band-pass filters and input/output circuits 12/29-1/4 Test band pass filters and input/output circuits 1/5-1/11 Develop microcontroller environment 1/12-1/18 Develop microcontroller environment 1/19-1/25 Accomplish sampling audio using ADC 1/26-2/1 Accomplish sampling audio using ADC 2/2-2/8 Accomplish outputting real-time audio samples 2/9-2/15 Accomplish outputting real-time audio samples 2/16-2/22 effects 2/23-3/1 effects 3/2-3/8 effects 3/9-3/15 effects 3/16-3/22 effects 3/23-3/29 effects 3/30-4/5 effects 4/6-4/12 effects 4/13-4/19 effects 4/20-4/26 Build and integrate effects pedal enclosure 4/22 Hardware design review 4/24 Hardware design review 4/27-5/3 Build and integrate effects pedal enclosure 10

11 4/29 Hardware design review 5/1 Hardware documents due Test effects pedal: use in a real live music setting and test 5/4-5/10 performance 5/6 Software system presentations 5/8 Software system presentations Test effects pedal: use in a real live music setting and test 5/11-5/17 performance 5/13 Software system presentations 5/18-5/24 Fine tune performance and quality of design 5/25-5/31 Fine tune performance and quality of design 5/27 Code reviews 5/29 Code reviews 6/3 Code reviews 6/5 Final presentations Required development hardware and software: Since I will be using the K70F120M microcontroller, I will be using Kinetis Development Studio on the school computers. For development and testing, I will need to use a digital multi-meter, oscilloscope, computer, headphones or speakers, and the soldering station. Since the target application for my project is a saxophone, I will need to test the system with a saxophone. I will provide the saxophone for testing my system Demonstration: Other than the microcontroller, external circuitry will be soldered and mounted on a printed circuit board (PCB). The enclosure of my project will be a custom wood box designed to house the microcontroller and hide any circuitry from the user. This will be a prototype using a development board. The only interface available to the user will be a standard professional audio patch cable input and output, power connector, step button, control knob, and whammy pedal. For my demonstration I will use pre-recorded audio samples and a professional full range instrument amplifier. In addition to the physical demonstration of the project, I will provide visual aids to explain how my project functions internally. 11

12 6.1 Preliminary Parts List: The following is a preliminary list of hardware components needed to create three independent versions of every piece of hardware I will be interfacing with my microcontroller. Quantity Part Number (Digi-Key) Description Lead Time Cost (USD) 6 SC1085-ND PA cable phono jack Immediate CP-2205-ND 3.5 mm audio cable Immediate CKN1680-ND Step button toggle switch Immediate C503B-GCN-CY0C0791-ND LED indicator Immediate PPCHF100KTR-ND 100 kω resistor Immediate S1KCACT-ND 1 kω resistor Immediate ND 6800 pf capacitor Immediate MIL µf capacitor Immediate OP07EPZ-ND Operational amplifier Immediate PEC F-S0024-ND Rotary encoder Immediate ND AC/DC wall adapter Immediate K70F120M K70 MCU 16 weeks ND External audio codec Immediate Power requirements: To calculate the worst case power dissipation for my hardware design, there are four main components to consider. The first, and easiest power loss to calculate is the power dissipated by the LED indicator light. Rated for a maximum current of 20 ma at 3.2 V, the maximum power dissipated by the LED indicator is 64 mw. The next power loss to consider is the power dissipated by the op-amps in the band-pass filters. The reference manual for the OP07 states a maximum peak voltage output for the OP07 operational amplifiers at 13 volts typically with a 10 kω load. This works out to be a maximum output power of 8.45 mw per amplifier. Since my circuit contains four amplifiers, the worst case power dissipation for my op-amps is 33.8 mw. The last power loss to consider is that of the MCU. The maximum power consumption of the K70F120M microcontroller is about 10 W. The last component to consider for power consumption is the external audio codec. According to its datasheet, at 25 C it can dissipate 2.35 W absolute maximum. This brings the total maximum power consumption of the system to about W. 12

Digital Strobe Tuner. w/ On stage Display

Digital Strobe Tuner. w/ On stage Display Page 1/7 # Guys EEL 4924 Electrical Engineering Design (Senior Design) Digital Strobe Tuner w/ On stage Display Team Members: Name: David Barnette Email: dtbarn@ufl.edu Phone: 850-217-9147 Name: Jamie

More information

NanoGiant Oscilloscope/Function-Generator Program. Getting Started

NanoGiant Oscilloscope/Function-Generator Program. Getting Started Getting Started Page 1 of 17 NanoGiant Oscilloscope/Function-Generator Program Getting Started This NanoGiant Oscilloscope program gives you a small impression of the capabilities of the NanoGiant multi-purpose

More information

clipping; yellow LED lights when limiting action occurs. Input Section Features

clipping; yellow LED lights when limiting action occurs. Input Section Features ELX-1A Rack-Mount Mic/Line Mixer Four inputs, one output in a single rack space Very-highery-high-quality audio performance High reliability Extensive filtering circuitry and shielding protect against

More information

SUBSYSTEMS FOR DATA ACQUISITION #39. Analog-to-Digital Converter (ADC) Function Card

SUBSYSTEMS FOR DATA ACQUISITION #39. Analog-to-Digital Converter (ADC) Function Card SUBSYSTEMS FOR DATA ACQUISITION #39 Analog-to-Digital Converter (ADC) Function Card Project Scope Design an ADC function card for an IEEE 488 interface box built by Dr. Robert Kolbas. ADC card will add

More information

Lab 1 Introduction to the Software Development Environment and Signal Sampling

Lab 1 Introduction to the Software Development Environment and Signal Sampling ECEn 487 Digital Signal Processing Laboratory Lab 1 Introduction to the Software Development Environment and Signal Sampling Due Dates This is a three week lab. All TA check off must be completed before

More information

Experiment 2: Sampling and Quantization

Experiment 2: Sampling and Quantization ECE431, Experiment 2, 2016 Communications Lab, University of Toronto Experiment 2: Sampling and Quantization Bruno Korst - bkf@comm.utoronto.ca Abstract In this experiment, you will see the effects caused

More information

Original Marketing Material circa 1976

Original Marketing Material circa 1976 Original Marketing Material circa 1976 3 Introduction The H910 Harmonizer was pro audio s first digital audio effects unit. The ability to manipulate time, pitch and feedback with just a few knobs and

More information

MIE 402: WORKSHOP ON DATA ACQUISITION AND SIGNAL PROCESSING Spring 2003

MIE 402: WORKSHOP ON DATA ACQUISITION AND SIGNAL PROCESSING Spring 2003 MIE 402: WORKSHOP ON DATA ACQUISITION AND SIGNAL PROCESSING Spring 2003 OBJECTIVE To become familiar with state-of-the-art digital data acquisition hardware and software. To explore common data acquisition

More information

DDS VFO CONSTRUCTION MANUAL. DDS VFO Construction Manual Issue 1.1 Page 1

DDS VFO CONSTRUCTION MANUAL. DDS VFO Construction Manual Issue 1.1 Page 1 DDS VFO CONSTRUCTION MANUAL DDS VFO Construction Manual Issue 1.1 Page 1 Important Please read before starting assembly STATIC PRECAUTION The DDS VFO kit contains the following components which can be

More information

LabView Exercises: Part II

LabView Exercises: Part II Physics 3100 Electronics, Fall 2008, Digital Circuits 1 LabView Exercises: Part II The working VIs should be handed in to the TA at the end of the lab. Using LabView for Calculations and Simulations LabView

More information

DT9857E. Key Features: Dynamic Signal Analyzer for Sound and Vibration Analysis Expandable to 64 Channels

DT9857E. Key Features: Dynamic Signal Analyzer for Sound and Vibration Analysis Expandable to 64 Channels DT9857E Dynamic Signal Analyzer for Sound and Vibration Analysis Expandable to 64 Channels The DT9857E is a high accuracy dynamic signal acquisition module for noise, vibration, and acoustic measurements

More information

OWNERS MANUAL LUNATEC V3 MICROPHONE PREAMPLIFIER AND A/D CONVERTER

OWNERS MANUAL LUNATEC V3 MICROPHONE PREAMPLIFIER AND A/D CONVERTER OWNERS MANUAL LUNATEC V3 MICROPHONE PREAMPLIFIER AND A/D CONVERTER LUNATEC 35 +48 35 +48 30 40 30 40 0 25 45 25 45 3 192 1 1 6 176.4 20 50 20 50 9 96 12 PEAK 88.2 55 55 RESET 48 10 60 2 10 60 2 21 44.1

More information

Build A Video Switcher

Build A Video Switcher Build A Video Switcher VIDEOSISTEMAS serviciotecnico@videosistemas.com www.videosistemas.com Reprinted with permission from Electronics Now Magazine September 1997 issue Copyright Gernsback Publications,

More information

Dynamic Animation Cube Group 1 Joseph Clark Michael Alberts Isaiah Walker Arnold Li

Dynamic Animation Cube Group 1 Joseph Clark Michael Alberts Isaiah Walker Arnold Li Dynamic Animation Cube Group 1 Joseph Clark Michael Alberts Isaiah Walker Arnold Li Sponsored by: Department of Electrical Engineering & Computer Science at UCF What is the DAC? The DAC is an array of

More information

Phono Amplifier brinkmann «EDISON» Manual.

Phono Amplifier brinkmann «EDISON» Manual. Phono Amplifier brinkmann «EDISON» ----------------------------------------------------------------------------------------------- Manual Preface We congratulate you on the purchase of our «EDISON» phono

More information

Technical Data. HF Tuner WJ-9119 WATKINS-JOHNSON. Features

Technical Data. HF Tuner WJ-9119 WATKINS-JOHNSON. Features May 1996 Technical Data WATKINS-JOHNSON HF Tuner WJ-9119 WJ designed the WJ-9119 HF Tuner for applications requiring maximum dynamic range. The tuner specifically interfaces with the Hewlett-Packard E1430A

More information

G12 PedalVision. Ayesha Arif, Brian Boga, Kevin Leone, and Jose Ramirez

G12 PedalVision. Ayesha Arif, Brian Boga, Kevin Leone, and Jose Ramirez G12 PedalVision Ayesha Arif, Brian Boga, Kevin Leone, and Jose Ramirez Dept. of Electrical Engineering and Computer Science, University of Central Florida, Orlando, Florida, 32816-2450 Abstract G12 PedalVision

More information

W0EB/W2CTX DSP Audio Filter Operating Manual V1.12

W0EB/W2CTX DSP Audio Filter Operating Manual V1.12 W0EB/W2CTX DSP Audio Filter Operating Manual V1.12 Manual and photographs Copyright W0EB/W2CTX, March 13, 2019. This document may be freely copied and distributed so long as no changes are made and the

More information

4-Channel Video Reconstruction Filter

4-Channel Video Reconstruction Filter 19-2948; Rev 1; 1/5 EVALUATION KIT AVAILABLE 4-Channel Video Reconstruction Filter General Description The 4-channel, buffered video reconstruction filter is ideal for anti-aliasing and DAC-smoothing video

More information

DAC-AES. DAC-AES Audio Converter. User manual. Rev. 7

DAC-AES. DAC-AES Audio Converter. User manual. Rev. 7 DAC-AES DAC-AES Audio Converter User manual Rev. 7 Nevion Europe P.O. Box 1020, 3204 Sandefjord, Norway Tel: +47 33 48 99 99 Fax: +47 33 48 99 98 www.nevion.com Nevion Support Nevion Europe P.O. Box 1020

More information

Introduction: Overview. EECE 2510 Circuits and Signals: Biomedical Applications. ECG Circuit 2 Analog Filtering and A/D Conversion

Introduction: Overview. EECE 2510 Circuits and Signals: Biomedical Applications. ECG Circuit 2 Analog Filtering and A/D Conversion EECE 2510 Circuits and Signals: Biomedical Applications ECG Circuit 2 Analog Filtering and A/D Conversion Introduction: Now that you have your basic instrumentation amplifier circuit running, in Lab ECG1,

More information

DPD80 Visible Datasheet

DPD80 Visible Datasheet Data Sheet v1.3 Datasheet Resolved Inc. www.resolvedinstruments.com info@resolvedinstruments.com 217 Resolved Inc. All rights reserved. General Description The DPD8 is a low noise digital photodetector

More information

Experiment 13 Sampling and reconstruction

Experiment 13 Sampling and reconstruction Experiment 13 Sampling and reconstruction Preliminary discussion So far, the experiments in this manual have concentrated on communications systems that transmit analog signals. However, digital transmission

More information

GUIDE TO ASSEMBLY OF ERICA SYNTHS DELAY MODULE

GUIDE TO ASSEMBLY OF ERICA SYNTHS DELAY MODULE If you are reading this, most probably, you are about to build Erica Synths DIY DELAY module. The module is 4mm deep, skiff friendly, has solid mechanical construction and doesn t require wiring. Erica

More information

DPD80 Infrared Datasheet

DPD80 Infrared Datasheet Data Sheet v1.4 DPD8 Infrared DPD8 Infrared Datasheet Resolved Inc. www.resolvedinstruments.com info@resolvedinstruments.com 217 Resolved Inc. All rights reserved. DPD8 Infrared General Description The

More information

MATRIX. 24Bit /192kHz ASRC Stereo Audio Processor MATRIX. 2-Channel 24-bit 192-kHz ASRC Desktop Digital Audio Processor CUBE.

MATRIX. 24Bit /192kHz ASRC Stereo Audio Processor MATRIX. 2-Channel 24-bit 192-kHz ASRC Desktop Digital Audio Processor CUBE. 24Bit /192kHz ASRC Stereo Audio Processor 2-Channel 24-bit 192-kHz ASRC Desktop Digital Audio Processor User Guide CUBE Thank you for purchasing digital audio processor! This manual booklet provides you

More information

A 400MHz Direct Digital Synthesizer with the AD9912

A 400MHz Direct Digital Synthesizer with the AD9912 A MHz Direct Digital Synthesizer with the AD991 Daniel Da Costa danieljdacosta@gmail.com Brendan Mulholland firemulholland@gmail.com Project Sponser: Dr. Kirk W. Madison Project 11 Engineering Physics

More information

OPERATOR MANUAL OSD390 SERIES 4 CHANNEL VIDEO/AUDIO/DATA FIBER OPTIC TRANSMISSION SYSTEM

OPERATOR MANUAL OSD390 SERIES 4 CHANNEL VIDEO/AUDIO/DATA FIBER OPTIC TRANSMISSION SYSTEM PTY. LTD A.B.N. 83 003 020 504 OPERATOR MANUAL OSD390 SERIES 4 CHANNEL VIDEO/AUDIO/DATA FIBER OPTIC TRANSMISSION SYSTEM OSD390 SERIES 4 CHANNEL VIDEO/AUDIO/DATA FIBER OPTIC TRANSMISSION SYSTEM Document

More information

Gordian. Multifunctional Power Distributor / Conditioner. v1.3

Gordian. Multifunctional Power Distributor / Conditioner.   v1.3 Owner s Manual Gordian Multifunctional Power Distributor / Conditioner www.lab12.gr v1.3 Table of Contents It is yours Unpacking and warnings Installation & placement Front panel Rear panel connections

More information

DMC550 Technical Reference

DMC550 Technical Reference DMC550 Technical Reference 2002 DSP Development Systems DMC550 Technical Reference 504815-0001 Rev. B September 2002 SPECTRUM DIGITAL, INC. 12502 Exchange Drive, Suite 440 Stafford, TX. 77477 Tel: 281.494.4505

More information

MAX11503 BUFFER. Σ +6dB BUFFER GND *REMOVE AND SHORT FOR DC-COUPLED OPERATION

MAX11503 BUFFER. Σ +6dB BUFFER GND *REMOVE AND SHORT FOR DC-COUPLED OPERATION 19-4031; Rev 0; 2/08 General Description The is a low-power video amplifier with a Y/C summer and chroma mute. The device accepts an S-video or Y/C input and sums the luma (Y) and chroma (C) signals into

More information

4-Channel Video Filter for RGB and CVBS Video

4-Channel Video Filter for RGB and CVBS Video 19-2951; Rev 2; 2/7 4-Channel Video Filter for RGB and CVBS Video General Description The 4-channel, buffered video reconstruction filter is ideal for anti-aliasing and DAC-smoothing video applications

More information

A MISSILE INSTRUMENTATION ENCODER

A MISSILE INSTRUMENTATION ENCODER A MISSILE INSTRUMENTATION ENCODER Item Type text; Proceedings Authors CONN, RAYMOND; BREEDLOVE, PHILLIP Publisher International Foundation for Telemetering Journal International Telemetering Conference

More information

Multi-Key v2.4 Multi-Function Amplifier Keying Interface

Multi-Key v2.4 Multi-Function Amplifier Keying Interface Multi-Key v2.4 Multi-Function Amplifier Keying Interface ASSEMBLY & OPERATION INSTRUCTIONS INTRODUCTION The Harbach Electronics, LLC Multi-Key is a multi-function external device designed for the safe

More information

With Latency Killer TM Technology. Model LK-Solo. HP Amp 2x2 Loop Thru Mixer

With Latency Killer TM Technology. Model LK-Solo. HP Amp 2x2 Loop Thru Mixer With Latency Killer TM Technology Model LK-Solo HP Amp 2x2 Loop Thru Mixer Lavry Engineering, Inc. P.O. Box 4602 Rolling Bay, WA 98061 www.lavryengineering.com November 20, 2014 Rev 2.0 2 Table of Contents

More information

Integrated Circuit for Musical Instrument Tuners

Integrated Circuit for Musical Instrument Tuners Document History Release Date Purpose 8 March 2006 Initial prototype 27 April 2006 Add information on clip indication, MIDI enable, 20MHz operation, crystal oscillator and anti-alias filter. 8 May 2006

More information

Quadruple, 2:1, Mux Amplifiers for Standard-Definition and VGA Signals

Quadruple, 2:1, Mux Amplifiers for Standard-Definition and VGA Signals 9-4457; Rev ; 2/9 Quadruple, 2:, Mux Amplifiers for General Description The MAX954/MAX9542 are quadruple-channel, 2: video mux amplifiers with input sync tip clamps. These devices select between two video

More information

There is a button to select either the AES/EBU or S/PDIF input for the D/A converter, which is located on the rear panel.

There is a button to select either the AES/EBU or S/PDIF input for the D/A converter, which is located on the rear panel. 4 RB-DAC1 Digital to Analogue Converter Introduction Fig 4-1: RB-DAC1 Front Panel Using 24 bit, 96kHz capable devices, the RB-DAC1 Digital to Analogue Converter is a 1U rack-mount which produces a stereo

More information

DH400. Digital Phone Hybrid. The most advanced Digital Hybrid with DSP echo canceller and VQR technology.

DH400. Digital Phone Hybrid. The most advanced Digital Hybrid with DSP echo canceller and VQR technology. Digital Phone Hybrid DH400 The most advanced Digital Hybrid with DSP echo canceller and VQR technology. The culmination of 40 years of experience in manufacturing at Solidyne, broadcasting phone hybrids,

More information

J R Sky, Inc. tel: fax:

J R Sky, Inc.  tel: fax: STEREO OPTICAL RECORDING SYSTEM N UOPTIX STEREO OPTICAL RECORDING MONITOR LEFT SYSTEM MODE PREVIEW RECORD BIAS RECORD REV SETUP TEST RIGHT INPUT SETUP INPUT BIAS SETUP BIAS INPUT STEREO AUX MONO DIRECT

More information

MULTIMIX 8/4 DIGITAL AUDIO-PROCESSING

MULTIMIX 8/4 DIGITAL AUDIO-PROCESSING MULTIMIX 8/4 DIGITAL AUDIO-PROCESSING Designed and Manufactured by ITEC Tontechnik und Industrieelektronik GesmbH 8200 Laßnitzthal 300 Austria / Europe MULTIMIX 8/4 DIGITAL Aim The most important aim of

More information

Interfaces and Sync Processors

Interfaces and Sync Processors Interfaces and Sync Processors Kramer Electronics has a full line of video, audio and sync interfaces. The group is divided into two sections Format Interfaces and Video Sync Processors. The Format Interface

More information

Portable Speakers. 3,000 Watt 18" Powered Subwoofer with KLARK TEKNIK DSP Technology, Speaker Modelling and ULTRANET Networking

Portable Speakers. 3,000 Watt 18 Powered Subwoofer with KLARK TEKNIK DSP Technology, Speaker Modelling and ULTRANET Networking Front loaded powered subwoofer for portable PA and installation applications power featuring KLARK TEKNIK Class-D technology KLARK TEKNIK Digital Signal Processing for total system control Speaker modelling

More information

January 24, Dr. Lakshman One School of Engineering Science Simon Fraser University Burnaby, BC, V5A 1S6

January 24, Dr. Lakshman One School of Engineering Science Simon Fraser University Burnaby, BC, V5A 1S6 School of Engineering Science Simon Fraser University Burnaby, BC, V5A 1S6 tp-audio@sfu.ca January 24, 2004 Dr. Lakshman One School of Engineering Science Simon Fraser University Burnaby, BC, V5A 1S6 Re:

More information

Data Converter Overview: DACs and ADCs. Dr. Paul Hasler and Dr. Philip Allen

Data Converter Overview: DACs and ADCs. Dr. Paul Hasler and Dr. Philip Allen Data Converter Overview: DACs and ADCs Dr. Paul Hasler and Dr. Philip Allen The need for Data Converters ANALOG SIGNAL (Speech, Images, Sensors, Radar, etc.) PRE-PROCESSING (Filtering and analog to digital

More information

COHERENCE ONE PREAMPLIFIER

COHERENCE ONE PREAMPLIFIER COHERENCE ONE PREAMPLIFIER OWNER S MANUAL TABLE OF CONTENTS Introduction Features Unpacking Instructions Installation Phono Cartridge Loading Basic Troubleshooting Technical Specifications Introduction

More information

UNIT V 8051 Microcontroller based Systems Design

UNIT V 8051 Microcontroller based Systems Design UNIT V 8051 Microcontroller based Systems Design INTERFACING TO ALPHANUMERIC DISPLAYS Many microprocessor-controlled instruments and machines need to display letters of the alphabet and numbers. Light

More information

Major Differences Between the DT9847 Series Modules

Major Differences Between the DT9847 Series Modules DT9847 Series Dynamic Signal Analyzer for USB With Low THD and Wide Dynamic Range The DT9847 Series are high-accuracy, dynamic signal acquisition modules designed for sound and vibration applications.

More information

Nutube.US. 6P1 Evaluation Board. User Manual

Nutube.US. 6P1 Evaluation Board. User Manual Nutube.US 6P1 Evaluation Board User Manual Introduction The 6P1 Evaluation Board (EVB) is a vehicle for testing and evaluating the Korg Nutube 6P1 dual triode in audio circuits. This product is designed

More information

S0 Radio Broadcasting Mixer. June catalogue. Manufacturers of audio & video products for radio & TV broadcasters

S0 Radio Broadcasting Mixer. June catalogue. Manufacturers of audio & video products for radio & TV broadcasters S0 Radio Broadcasting Mixer June 2012 catalogue Manufacturers of audio & video products for radio & TV broadcasters S0 Radio Broadcasting Mixer A simple radio mixer for novice and professional users The

More information

ADC-AES. ADC-AES Audio Converter card. User manual. Rev. 5

ADC-AES. ADC-AES Audio Converter card. User manual. Rev. 5 ADC-AES ADC-AES Audio Converter card User manual Rev. 5 Nevion Europe P.O. Box 1020, 3204 Sandefjord, Norway Tel: +47 33 48 99 99 Fax: +47 33 48 99 98 www.nevion.com Nevion Support Nevion Europe P.O. Box

More information

Westrex RA1713B Auxiliary Record Electronics

Westrex RA1713B Auxiliary Record Electronics Westrex RA1713B Auxiliary Record Electronics INTRODUCTION The RA-1713B is an auxiliary electronics system for use with the Westrex RA- 1712B. It comprises a current regulated, digital readout, recorder

More information

Introduction to Data Conversion and Processing

Introduction to Data Conversion and Processing Introduction to Data Conversion and Processing The proliferation of digital computing and signal processing in electronic systems is often described as "the world is becoming more digital every day." Compared

More information

Ultrasound Variable-Gain Amplifier MAX2035

Ultrasound Variable-Gain Amplifier MAX2035 19-63; Rev 1; 2/9 General Description The 8-channel variable-gain amplifier (VGA) is designed for high linearity, high dynamic range, and low-noise performance targeting ultrasound imaging and Doppler

More information

OWNER S MANUAL HD-2CAT-1080P-130. Binary 2CAT Extender WELCOME TO THE BINARY BRAND OF PRODUCTS

OWNER S MANUAL HD-2CAT-1080P-130. Binary 2CAT Extender WELCOME TO THE BINARY BRAND OF PRODUCTS OWNER S MANUAL >> Binary 2CAT Extender HD-2CAT-1080P-130 TMDS DDC WELCOME TO THE BINARY BRAND OF PRODUCTS This product is engineered to provide years of exceptional reliability. Binary is one of the most

More information

DIGITAL SPEAKER MANAGEMENT UK

DIGITAL SPEAKER MANAGEMENT UK DSM2-6mkII DIGITAL SPEAKER MANAGEMENT 170.659UK Features 96kHz sampling frequency, 32-bit A/D and D/A converter, 24-bit DSP processor Input channel: 6-band parametric EQ, Delay, Polarity Output channel:

More information

Absolute Rotary Encoder E6CP

Absolute Rotary Encoder E6CP Absolute Rotary Encoder Absolute Rotary Encoders with Gray Code Output Gray code output decreases output errors Lightweight plastic housing Used with Omron s H8PS Cam Positioner, this encoder detects the

More information

Synthesis Technology E102 Quad Temporal Shifter User Guide Version 1.0. Dec

Synthesis Technology E102 Quad Temporal Shifter User Guide Version 1.0. Dec Synthesis Technology E102 Quad Temporal Shifter User Guide Version 1.0 Dec. 2014 www.synthtech.com/euro/e102 OVERVIEW The Synthesis Technology E102 is a digital implementation of the classic Analog Shift

More information

Digital Signal Processing Laboratory 7: IIR Notch Filters Using the TMS320C6711

Digital Signal Processing Laboratory 7: IIR Notch Filters Using the TMS320C6711 Digital Signal Processing Laboratory 7: IIR Notch Filters Using the TMS320C6711 Thursday, 4 November 2010 Objective: To implement a simple filter using a digital signal processing microprocessor using

More information

Table of Contents. Introduction 2 C valve Features 3. Controls and Functions 4-5 Front Panel Layout 4 Rear Panel Layout 5

Table of Contents. Introduction 2 C valve Features 3. Controls and Functions 4-5 Front Panel Layout 4 Rear Panel Layout 5 Safety Instructions Table of Contents Introduction 2 C valve Features 3 Controls and Functions 4-5 Front Panel Layout 4 Rear Panel Layout 5 Operating the C valve 6-13 Setting Up the C valve 6-7 Setting

More information

RGB Encoder For the availability of this product, please contact the sales office. VIDEO OUT Y/C MIX DELAY CLAMP

RGB Encoder For the availability of this product, please contact the sales office. VIDEO OUT Y/C MIX DELAY CLAMP MATRIX Description The CXA1645P/M is an encoder IC that converts analog RGB signals to a composite video signal. This IC has various pulse generators necessary for encoding. Composite video outputs and

More information

Super Swingin Radio Clock. Senior Project Description Toby J. Dayley December 08, 2004 ETEC 471 Professor Todd Morton

Super Swingin Radio Clock. Senior Project Description Toby J. Dayley December 08, 2004 ETEC 471 Professor Todd Morton Super Swingin Radio Clock Senior Project Description Toby J. Dayley December 08, 2004 ETEC 471 Professor Todd Morton Introduction: For thousands of years people have been fascinated with time. Ancient

More information

Software Analog Video Inputs

Software Analog Video Inputs Software FG-38-II has signed drivers for 32-bit and 64-bit Microsoft Windows. The standard interfaces such as Microsoft Video for Windows / WDM and Twain are supported to use third party video software.

More information

INSTRUCTIONS FOR USE Pro-Ject Phono Box DS2 USB

INSTRUCTIONS FOR USE Pro-Ject Phono Box DS2 USB INSTRUCTIONS FOR USE Pro-Ject Phono Box DS2 USB Dear music lover, thank you for purchasing a Pro-Ject Audio phono amplifier. In order to achieve maximum performance and reliability you should study these

More information

ECE 4220 Real Time Embedded Systems Final Project Spectrum Analyzer

ECE 4220 Real Time Embedded Systems Final Project Spectrum Analyzer ECE 4220 Real Time Embedded Systems Final Project Spectrum Analyzer by: Matt Mazzola 12222670 Abstract The design of a spectrum analyzer on an embedded device is presented. The device achieves minimum

More information

1 Gang-sized Multi-format video to Optical DVI Converter, MVDF DATA SHEET

1 Gang-sized Multi-format video to Optical DVI Converter, MVDF DATA SHEET 1 Gang-sized Multi-format video to Optical DVI Converter, MVDF DATA SHEET Contents Description 1) Key Features 2) Applications 3) Technical Specifications 4) Absolute Maximum Ratings 5) Operating Conditions

More information

National Park Service Photo. Utah 400 Series 1. Digital Routing Switcher.

National Park Service Photo. Utah 400 Series 1. Digital Routing Switcher. National Park Service Photo Utah 400 Series 1 Digital Routing Switcher Utah Scientific has been involved in the design and manufacture of routing switchers for audio and video signals for over thirty years.

More information

Interfacing the TLC5510 Analog-to-Digital Converter to the

Interfacing the TLC5510 Analog-to-Digital Converter to the Application Brief SLAA070 - April 2000 Interfacing the TLC5510 Analog-to-Digital Converter to the TMS320C203 DSP Perry Miller Mixed Signal Products ABSTRACT This application report is a summary of the

More information

QUICK START GUIDE FOR DEMONSTRATION CIRCUIT /12/14 BIT 10 TO 65 MSPS DUAL ADC

QUICK START GUIDE FOR DEMONSTRATION CIRCUIT /12/14 BIT 10 TO 65 MSPS DUAL ADC LTC2286, LTC2287, LTC2288, LTC2290, LTC2291, LTC2292, LTC2293, LTC2294, LTC2295, LTC2296, LTC2297, LTC2298 or LTC2299 DESCRIPTION Demonstration circuit 816 supports a family of s. Each assembly features

More information

FF DUAL FORMAT DJ MIXER USERS MANUAL

FF DUAL FORMAT DJ MIXER USERS MANUAL FF - 4000 DUAL FORMAT DJ MIXER USERS MANUAL FF - 4000 INTRODUCTION The features and layout of the FF-4000 were determined in collaboration with leading loudspeaker manufacturers Funktion One, who canvassed

More information

BMC-2 JET CLOCK DAC & MONITOR CONTROL USER S MANUAL

BMC-2 JET CLOCK DAC & MONITOR CONTROL USER S MANUAL BMC-2 JET CLOCK DAC & MONITOR CONTROL USER S MANUAL INTRODUCTION Table of Contents............................3 Introduction................................4 SETUP EXAMPLES Setup Example..............................5

More information

8500 Composite/SD Legalizer and Video Processing Frame Sync

8500 Composite/SD Legalizer and Video Processing Frame Sync Legalizer The module is a composite Legalizer, Proc Amp, TBC and Frame Sync. The Legalizer is a predictive clipper which insures signal levels will not exceed those permitted in the composite domain. While

More information

A Simple Noise Measurement Amplifier and Filter

A Simple Noise Measurement Amplifier and Filter A Simple Noise Measurement Amplifier and Filter Scott Reynolds (TavishDad on diyaudio) Tavish Design, LLC (http://tavishdesign.com/) I have developed a simple op-amp circuit that makes it easy to measure

More information

Professional Fidelity Mastering Grade Listening

Professional Fidelity Mastering Grade Listening Professional Fidelity Mastering Grade Listening Director ON SOURCE VOLUME VOLTAiR 120V DC Audio Rail DAC Preamplifier This User Manual is optimized for Acrobat Reader. Interactive buttons may not appear

More information

Summit Audio Model TLA-50 Tube Leveling Amplifier

Summit Audio Model TLA-50 Tube Leveling Amplifier Summit Audio Model TLA-50 Tube Leveling Amplifier ATTACK FAST SLOW MEDIUM 3 4 5 6 7 TUBE LEVELER 40 60 80 100 VU 3 4 5 6 TLA-50 7 FAST SLOW RELEASE OUTPUT RED. METER 2 1 0 10 GAIN 9 8 7 5 3 1 0 1 2 +3

More information

TSH MHz Single Supply Video Buffer with Low In/Out Rail. Pin Connections (top view) Description. Applications. Order Codes

TSH MHz Single Supply Video Buffer with Low In/Out Rail. Pin Connections (top view) Description. Applications. Order Codes TSH34 3MHz Single Supply Video Buffer with Low In/Out Rail Bandwidth: 3MHz Single supply operation down to 3V Low input & output rail Very low harmonic distortion Slew rate: 78V/µs Voltage input noise:

More information

DT8837. High Performance Ethernet Instrument Module for Sound & Vibration. Overview. Key Features

DT8837. High Performance Ethernet Instrument Module for Sound & Vibration. Overview. Key Features DT8837 High Performance Ethernet Instrument Module for Sound & Vibration Overview The DT8837 is a high-accuracy, multi-channel module that is ideal for sound and vibration measurements. All the I/O channels

More information

WM8725 EVALUATION BOARD USER HANDBOOK. The WM8725 is high performance Stereo DAC.

WM8725 EVALUATION BOARD USER HANDBOOK. The WM8725 is high performance Stereo DAC. w WM8725-EVM WM8725 EVALUATION BOARD USER HANDBOOK INTRODUCTION The WM8725 is high performance Stereo DAC. This evaluation platform and documentation should be used in conjunction with the latest version

More information

Log-detector. Sweeper setup using oscilloscope as XY display

Log-detector. Sweeper setup using oscilloscope as XY display 2002/9/4 Version 1.2 XYdisp user manual. 1. Introduction. The XYdisp program is a tool for using an old DOS PC or laptop as XY display to show response curves measured by a sweeper log-detector combination.

More information

S1 Digital/Analogue Radio Broadcast Mixer September 2009

S1 Digital/Analogue Radio Broadcast Mixer September 2009 S1 Digital/Analogue Radio Broadcast Mixer September 2009 www.sonifex.co.uk t: +44 (0)1933 650 700 f: +44 (0)1933 650 726 sales@sonifex.co.uk S1 Radio Digital/Analogue Broadcast Mixer Radio Broadcast Mixer

More information

PROFESSIONAL 2 CHANNEL SOLID-STATE MIC / LINE PREAMPLIFIER USER S MANUAL

PROFESSIONAL 2 CHANNEL SOLID-STATE MIC / LINE PREAMPLIFIER USER S MANUAL PROFESSIONAL 2 CHANNEL SOLID-STATE MIC / LINE PREAMPLIFIER USER S MANUAL SAFETY INSTRUCTIONS This symbol, wherever it appears, alerts you to important operating and maintenance instructions in the accompanying

More information

Digitally Assisted Analog Circuits. Boris Murmann Stanford University Department of Electrical Engineering

Digitally Assisted Analog Circuits. Boris Murmann Stanford University Department of Electrical Engineering Digitally Assisted Analog Circuits Boris Murmann Stanford University Department of Electrical Engineering murmann@stanford.edu Motivation Outline Progress in digital circuits has outpaced performance growth

More information

ER-100 Eurorack 8 Channel Stereo, Transformer Balanced Out Summing Mixer User Manual

ER-100 Eurorack 8 Channel Stereo, Transformer Balanced Out Summing Mixer User Manual ER-100 Eurorack 8 Channel Stereo, Transformer Balanced Out Summing Mixer User Manual Issue 0.1 SAFETY INSTRUCTIONS WARNING Always follow the precautions listed below to avoid any possibility of serious

More information

Multiband Noise Reduction Component for PurePath Studio Portable Audio Devices

Multiband Noise Reduction Component for PurePath Studio Portable Audio Devices Multiband Noise Reduction Component for PurePath Studio Portable Audio Devices Audio Converters ABSTRACT This application note describes the features, operating procedures and control capabilities of a

More information

Noise Detector ND-1 Operating Manual

Noise Detector ND-1 Operating Manual Noise Detector ND-1 Operating Manual SPECTRADYNAMICS, INC 1849 Cherry St. Unit 2 Louisville, CO 80027 Phone: (303) 665-1852 Fax: (303) 604-6088 Table of Contents ND-1 Description...... 3 Safety and Preparation

More information

PSM-003. Micro Polarization Controller/Scrambler. User Guide

PSM-003. Micro Polarization Controller/Scrambler. User Guide PSM-003 Micro Polarization Controller/Scrambler User Guide Version: 1.0 Date: August 23, 2012 General Photonics, Incorporated is located in Chino California. For more information visit the company's website

More information

Spectrum Analyser Basics

Spectrum Analyser Basics Hands-On Learning Spectrum Analyser Basics Peter D. Hiscocks Syscomp Electronic Design Limited Email: phiscock@ee.ryerson.ca June 28, 2014 Introduction Figure 1: GUI Startup Screen In a previous exercise,

More information

AMEK SYSTEM 9098 DUAL MIC AMPLIFIER (DMA) by RUPERT NEVE the Designer

AMEK SYSTEM 9098 DUAL MIC AMPLIFIER (DMA) by RUPERT NEVE the Designer AMEK SYSTEM 9098 DUAL MIC AMPLIFIER (DMA) by RUPERT NEVE the Designer If you are thinking about buying a high-quality two-channel microphone amplifier, the Amek System 9098 Dual Mic Amplifier (based on

More information

Black Buff Amplifier

Black Buff Amplifier Black Buff Amplifier Users' Manual Rev May 12/14 Mapletree Audio Design Al Freundorfer R. R. 1, Seeley's Bay, Ontario, Canada, K0H 2N0 (613) 387 3830 www.mapletreeaudio.com info@mapletreeaudio.com Copyright

More information

MONO AMPLIFIER KIT ESSENTIAL INFORMATION. Version 2.2 CREATE YOUR OWN SPEAKER DOCK WITH THIS

MONO AMPLIFIER KIT ESSENTIAL INFORMATION. Version 2.2 CREATE YOUR OWN SPEAKER DOCK WITH THIS ESSENTIAL INFORMATION BUILD INSTRUCTIONS CHECKING YOUR PCB & FAULT-FINDING MECHANICAL DETAILS HOW THE KIT WORKS CREATE YOUR OWN SPEAKER DOCK WITH THIS MONO AMPLIFIER KIT Version 2.2 Build Instructions

More information

Owner s Manual PRE1. v1.2. Triode Class A Line Preamplifier

Owner s Manual PRE1.   v1.2. Triode Class A Line Preamplifier Owner s Manual PRE1 Triode Class A Line Preamplifier www.lab12.gr v1.2 Table of Contents It is yours Features Installation & Placement Front Panel Rear Panel Remote Control Main connections For the safety

More information

INDIAN INSTITUTE OF TECHNOLOGY KHARAGPUR NPTEL ONLINE CERTIFICATION COURSE. On Industrial Automation and Control

INDIAN INSTITUTE OF TECHNOLOGY KHARAGPUR NPTEL ONLINE CERTIFICATION COURSE. On Industrial Automation and Control INDIAN INSTITUTE OF TECHNOLOGY KHARAGPUR NPTEL ONLINE CERTIFICATION COURSE On Industrial Automation and Control By Prof. S. Mukhopadhyay Department of Electrical Engineering IIT Kharagpur Topic Lecture

More information

32 Channel CPCI Board User Manual

32 Channel CPCI Board User Manual 0 Sections Page 1.0 Introduction 1 2.0 Unpacking and Inspection 1 3.0 Hardware Configuration 1 4.0 Board Installation 5 5.0 I/O Connections and the Front Panel 5 5.1 Front Panel Layout 5 5.2 Input and

More information

S1 Digital/Analogue Radio Broadcast Mixer

S1 Digital/Analogue Radio Broadcast Mixer S1 Digital/Analogue Radio Broadcast Mixer September 2009 www.sonifex.co.uk t: +44 (0)1933 650 700 f: +44 (0)1933 650 726 sales@sonifex.co.uk S1 Radio Digital/Analogue Broadcast Mixer Radio Broadcast Mixer

More information

MC44C Features. Freescale Semiconductor, I. Technical Data

MC44C Features. Freescale Semiconductor, I. Technical Data nc. Technical Data Rev. 1.1 02/2004 MTS Stereo Encoder Contents 1 Features............. 1 2 Reference Documentation 2 3 Block Diagrams....... 3 4 I/O Description....... 5 5 Electrical Specifications 6

More information

There are many ham radio related activities

There are many ham radio related activities Build a Homebrew Radio Telescope Explore the basics of radio astronomy with this easy to construct telescope. Mark Spencer, WA8SME There are many ham radio related activities that provide a rich opportunity

More information

10-Channel 16-Bit Analog Board Set User s Manual And Troubleshooting Guide

10-Channel 16-Bit Analog Board Set User s Manual And Troubleshooting Guide 10-Channel 16-Bit Analog Board Set User s Manual And Troubleshooting Guide March 16, 2011 Rev. C Moog Components Group Springfield Operations 750 West Sproul Road Springfield, PA 19064 E-Mail: mcg@moog.com

More information

File E Project December 11, 2013 REPORT DRIVERS FOR LIGHT-EMITTING DIODES ARRAYS MODULES AND CONTROLLERS

File E Project December 11, 2013 REPORT DRIVERS FOR LIGHT-EMITTING DIODES ARRAYS MODULES AND CONTROLLERS File E322469 Project 4786125262 December 11, 2013 REPORT On DRIVERS FOR LIGHT-EMITTING DIODES ARRAYS MODULES AND CONTROLLERS Lutron Electronics Co Inc Coopersburg, Pa Copyright 2013 UL LLC UL LLC authorizes

More information

SDA 3302 Family. GHz PLL with I 2 C Bus and Four Chip Addresses

SDA 3302 Family. GHz PLL with I 2 C Bus and Four Chip Addresses GHz PLL with I 2 C Bus and Four Chip Addresses Preliminary Data Features 1-chip system for MPU control (I 2 C bus) 4 programmable chip addresses Short pull-in time for quick channel switch-over and optimized

More information

Ethernet Media Converters

Ethernet Media Converters Allied Telesyn AT-MC13, AT-MC14, AT-MC15 and AT-MC16 Media Converters Seite 1 von 5 AT-MC13 Media Converter UTP to Fiber "ST" AT-MC14 Media Converter UTP to Fiber "SC" AT-MC15 Media Converter UTP to BNC

More information