muse Capstone Course: Wireless Sensor Networks

Size: px
Start display at page:

Download "muse Capstone Course: Wireless Sensor Networks"

Transcription

1 muse Capstone Course: Wireless Sensor Networks Experiment ADC: Sensing and Analog-to-Digital Conversion Objectives 1. Get familiar with the CLIO wireless sensor node development platform. 2. See how to interface an analog peripheral board to the ez430 on the CLIO. 3. Understand analog-to-digital conversion. 4. Learn how to use an ADC on a microcontroller. What You Will Need CLIO board TI ez430-rf2500 MSP430 Wireless Development Tool with two-row 18-pin female header attached to the bottom and with each of the 18 contacts soldered to the ez430 on the top of the ez430. If you do not have experience soldering, get practice on junk boards, or better yet get help. CLIO-SL light sensor board For Part II: (a) a standard laboratory function generator (a function generator with a high-impedance load option is best); (b) a cable to connect the function generator to the CLIO a BNC-to-alligator cable works well. You will also need wire to connect the ez430 I/O terminals on the CLIO to one of the breakout terminals on the CLIO. You have two options: 1. jumper cables with built in header pin-compatible terminals; one possibility is is Jumper Wires Premium 6 F/F Pack of 10, sku: PRT from sparkfun.com; see info.php?products id= gauge or 28-gauge solid (non-stranded) wire and a wire-wrap tool A USB cable to connect your PC to the ez430 when plugged into the CLIO board. In addition, you will need what you used in Experiment 1: CLIO Quick Start: a computer running Windows (XP or Vista) 1

2 TI s Code Composer Studio Microcontroller integrated development environment (installed as in Experiment 1: CLIO Quick Start). Notes Hardware Mechanical. When the ez430 is connected to the CLIO via the 18-pin header, be careful when the ez430 is connected to the PC via the USB cable the tiny 6-pin connector that connects the ez430 debugging interface (the part with the USB connector) to the target is very fragile. Hardware Electrical Power. You must make sure that you set the power jumper on CLIO to the correct source (either USB or battery) or damage could result. See the box labeled Must disconnect USB cable if CLIO battery enabled. Software. We ve provided a function punadc10 WaveformSample() that configures and controls the ADC10 peripheral on the MSP430. An example call is p_unresults = punadc10_waveformsample(ksample_50, 200, RES_10_BITS); It takes three arguments: 1. Sampling Rate: KSAMPLE xx; see adc10.h in the hardware subdirectory for which rates are selectable. 2. Number of Samples: You can choose the number of samples from 1 to Resolution: The function provides emulation of any resolution from 1 to 10 bits via RES xx BITS; see adc10.h As you can see from the code, punadc10 WaveformSample() returns a pointer to (i.e., the address of) an array where the function has stored the samples. Also, note that this function selects a reference voltage of 2.5 V for the ADC10. In the demo code, look for the line for( unloopcount = 0x0000; unloopcount < 200; unloopcount++) The second number, in this case 200, needs to be the same as the number of samples specified in the call to punadc10 WaveformSample(). Otherwise the samples will not be fully printed to the screen. 2

3 The data from the ez430 using this function is in ADC counts, which will be an integer in the range {0,..., 1023} at full 10-bit resolution. At other resolutions, the function automatically outputs the midpoint (on a scale of 0 to 1023) of the quantization bin. For example, one-bit quantization means there will be two possible output levels: 256 and 768. Procedure Part I: Measuring light with the CLIO and CLIO-SL 1. Plug the CLIO-SL board on the CLIO so that its pin 1 is connected to pin 1 of one of the CLIO I/O headers. On CLIO-SL, pin 1 is marked with a white dot. See Figure 1 for a photo and description of the set-up, and Figure 2 for a schematic of CLIO-SL. Make sure that you have connected all three jumper wires as shown in Figure 1: Analog light signal: the amplified output of the photodetector on CLIO-SL (pin 7 of the CLIO-SL female header) is connected to the the physical pin P2.0/ACLK/A0/OA010 of the MSP430 via the CLIO I/O header pin (pin 3) with the same label. Power (V DD ): Connect pin 1 of the CLIO-SL female header to any Vdd Bus pin on CLIO. Ground: Connect pin 9 of the CLIO-SL female header to any GND Bus pin on CLIO. 2. Start up CCS, open a new workspace, and unzip the project within CCS using the procedure described in Experiment RSSI. In the code, make sure the ADC is configured for a sampling rate of 50 Ks/s, and to take 50 samples at the highest (10-bit) resolution. 3. Place CLIO/CLIO-SL so that a flourescent light source is shining on the photodiode. Note : you may need to adjust the distance to get a good signal. 4. Start up Hyperterminal (or Putty) and compile/download the program to the ez430. The program is designed to take the samples when you hit Enter in Hyperterminal. 5. Run the program on the ez430 target and import the data into Matlab and plot the waveform. 6. Use the simplefft MATLAB code (see Appendix: MATLAB FFT code) to plot the power spectrum of the waveform. Notice that this code plots the spectrum in db relative to frequency bin with the highest power. In your report, include these plots and interpret the results you see in both time and frequency domains, and explain how they relate. 7. (Optional extra credit) Capture samples from sunlight and/or an incandescent light bulb. Using MATLAB, plot and analyze your data. 3

4 Figure 1: CLIO (upper left) and CLIO-SL (lower right) with correct jumpers for measuring light. Note black jumper for analog input to the MSP430 ADC10 from pin 3 of CLIO breakout header to pin 7 of the female header for the CLIO-SL. The red and white jumpers supply VDD and ground respectively to CLIOSL. Since CLIO is connected to the PC via USB, the the power jumper at center connects the two left-hand side pins of the central three-pin power connector. (Ignore resistors and wires in CLIO prototyping area). 4

5 Figure 2: Schematic for CLIO-SL light sensor board. Note pin numbering on HDR1 in upper right. 5

6 Part II: Understanding Quantization 1. Set up the function generator. Do the following in the given order. Set up the function generator for a high-impedance load. It is very important to set up the function generator to expect a high impedance load resistance. If you do not do this, most function generators default to expect 50 Ω load resistance and will incorrectly set the output voltage. See Appendix: Setting Up the Function Generator for an example. Set the amplitude to 2.5 V peak-to-peak. Set the DC offset to 1.25 V. Set the frequency to 5 KHz. Check that the settings are correct (use an oscilloscope if available) to prevent damaging the MSP Connect the function generator to the CLIO. (You will not need the CLIO-SL board.) A good method is to use a BNC-to-alligator cable to connect the function generator output to the ADC input pin and CLIO ground. 3. Set up the ADC for a sampling rate of 50 Ks/s, and to take 200 samples at the highest (10-bit) resolution. As in Part I, collect the data and plot time- and frequency-domain waveforms, and make sure you understand the causes of what you see you will include your plots, and describe and interpret this data in your report. 4. Repeat the previous step for resolutions of 1, 4, and 8 bits. How does the data look when compared with the full-resolution (10-bit) quantization? In your report, discuss the effects of A/D resolution in the time and frequency domains. Answer the following question: Do the effects of quantization that you see appear to be noise-like? Why or why not? What to Hand In, and When Hand in: a report that succinctly describes your work. Make sure that your plots have clearly labeled axes and descriptive captions. Include them as numbered figures and reference them in your report. Due date: Ask your instructor. For More Information 6

7 Helpful documentation for this and other CLIO projects: ez430-rf2500 Development Tool User s Guide CLIO and CLIO-SL schematics and layouts Appendix: Setting Up the Function Generator If you have an HP/Agilent 33120A function/arbitrary waveform generator, use the following steps (check the instruction manual if you have another manufacturer/model): 1. Power up the function generator without any connections. 2. Press the blue Shift Key, then the Menu Key right above it. 3. Press the Right Arrow Key until the display reads D: SYS MENU (should be 3 presses) 4. Press the Down Arrow Key until the display flashes PARAMETERS and then reads 50 OHM (should be 2 presses) 5. Press the Right Arrow Key and the display should change to HIGH Z (should be 1 press) 6. Press the Enter Key, the display should flash ENTERED and the device should return to normal mode. Note: If your function generator does not have a high-impedance load option, you can place a 50 Ω resistance in parallel with the ADC input on the CLIO. You can use a 47 or 51 Ω resistor or two 100 Ω resistors in parallel. Because the ADC input has a much higher impedance, the total impedance seen by the function generator will be approximately 50 Ω. This approach was tested using two 100 Ω resistors in parallel on the prototyping area of the CLIO board (Figure 1). Appendix: MATLAB FFT code function simplefft(samplerate, data) simplefft(samplerate, data) This function serves as a simple wrapper to MATLAB s fft function. samplerate - This is the sampling rate for data in samples/sec. Thus 50KSamp/sec would be 50E+3 data - vector containing the ADC samples taken from the ez430 7

8 Code orginally from a demo application provided by Dr. Paul Flikkema. Modified on 6 November 2009 by Kenji Yamamoto delta = 1/sampleRate; Totsamp = length(data); vector of time samples t = (0:Totsamp-1)*delta; plot(t,data); xlabel( Time (s) ); ylabel( ADC Result ); title( Sampled Waveform ); nf = 0:Totsamp/2; Nf = Totsamp/2; zf = (1/length(data))*fft(data); spec = zf.* conj(zf); spec = spec(1:nf+1); high = max(spec); logspec = 10*log(spec/high); scale = samplerate*(1/totsamp)*nf; figure; plot(scale,logspec, -xb ); axis([0 scale(length(scale)) ]) xlabel( Frequency (Hz) ); ylabel( Power (dbc) ); title( Signal Power Spectrum ) stop 8

A Micropower, 2-channel, ksps, Serial-Output 12-bit SAR ADC

A Micropower, 2-channel, ksps, Serial-Output 12-bit SAR ADC A Micropower, 2-channel, 187.5-ksps, Serial-Output 12-bit SAR ADC FEATURES Quick and easy Interface to computer for evaluation via Touchstone Viperboard and USB cable Input BNC connection On-board +3.3V

More information

ECE 480 Team 5 Introduction to MAVRK module

ECE 480 Team 5 Introduction to MAVRK module ECE 480 Team 5 Introduction to MAVRK module Team Members Jordan Bennett Kyle Schultz Min Jae Lee Kevin Yeh Definition of MAVRK Component of MAVRK starter Kit Component of umavrk Module design procedure

More information

Strain gauge Measuring Amplifier GSV-1A8. Instruction manual GSV-1A8, GSV-1A8USB, GSV-1A16USB

Strain gauge Measuring Amplifier GSV-1A8. Instruction manual GSV-1A8, GSV-1A8USB, GSV-1A16USB Strain gauge Measuring Amplifier GSV-1A8 Instruction manual GSV-1A8, GSV-1A8USB, GSV-1A16USB GSV-1A8USB SubD1 (front side) GSV-1A8USB M12 (front side) GSV-1A16USB (rear side) GSV-1A8USB K6D (front side)

More information

Halloween Pumpkinusing. Wednesday, October 17, 12

Halloween Pumpkinusing. Wednesday, October 17, 12 Halloween Pumpkinusing Blink LED 1 What you will need: 1 MSP-EXP430G2 1 3 x 2 Breadboard 3 560 Ohm Resistors 3 LED s (in Red Color Range) 3 Male to female jumper wires 1 Double AA BatteryPack 2 AA Batteries

More information

ME 3210: Mechatronics Signal Conditioning Circuit for IR Sensors March 27, 2003

ME 3210: Mechatronics Signal Conditioning Circuit for IR Sensors March 27, 2003 ME 3210: Mechatronics Signal Conditioning Circuit for IR Sensors March 27, 2003 This manual and the circuit described have been brought to you by Adam Blankespoor, Roy Merril, and the number 47. The Problem:

More information

PARAMETER MIN TYP MAX UNITS COMMENTS

PARAMETER MIN TYP MAX UNITS COMMENTS Phase Noise Measurements to -175dBc/Hz Power supply measurements to 1nV FFT Analysis from DC to 100kHz 0dB / 32dB / 64dB Gain Steps 100dB Dynamic Range Opto-Isolated RoHS PRODUCT SUMMARY The Holzworth

More information

Let`s get SIRIUS! SIRIUS Overview. SIRIUS from Dewesoft. SIRIUS Overview. The new hardware generation makes your measurement more precise!

Let`s get SIRIUS! SIRIUS Overview. SIRIUS from Dewesoft. SIRIUS Overview. The new hardware generation makes your measurement more precise! Overview NEW dual ADC Overview Let`s get! The new hardware generation makes your measurement more precise! Dual core Input from Dewesoft This new technology solves the often faced problem that the signal

More information

MAXSANTAFEEVSYS User Manual

MAXSANTAFEEVSYS User Manual MAXSANTAFEEVSYS User Manual Rev 0; 5/14 For pricing, delivery, and ordering information, please contact Maxim Direct at 1-888-629-4642, or visit Maxim Integrated s website at www.maximintegrated.com. Maxim

More information

ECE 5655/4655 Laboratory Problems

ECE 5655/4655 Laboratory Problems Assignment #1 ECE 5655/4655 Laboratory Problems Make note of the following: Due Monday February 10, 2014 Each team of two will turn in documentation for the assigned problem(s), that is, assembly or C

More information

Lab 2.2 Ohm s Law and Introduction to Arduinos

Lab 2.2 Ohm s Law and Introduction to Arduinos Lab 2.2 Ohm s Law and Introduction to Arduinos Objectives: Get experience using an Arduino Learn to use a multimeter to measure Potential units of volts (V) Current units of amps (A) Resistance units of

More information

TS7001 Demo Board. A Micropower, 2-channel, ksps, Serial-Output 12-bit SAR ADC FEATURES

TS7001 Demo Board. A Micropower, 2-channel, ksps, Serial-Output 12-bit SAR ADC FEATURES A Micropower, 2-channel, 187.5-ksps, Serial-Output 12-bit SAR ADC FEATURES Quick and easy interface to computer for evaluation via Nano River Technologies ViperBoard and USB cable Input BNC connection

More information

University Program Advance Material

University Program Advance Material University Program Advance Material Advance Material Modules Introduction ti to C8051F360 Analog Performance Measurement (ADC and DAC) Detailed overview of system variances, parameters (offset, gain, linearity)

More information

PIC Dev 14 Through hole PCB Assembly and Test Lab 1

PIC Dev 14 Through hole PCB Assembly and Test Lab 1 Name Lab Day Lab Time PIC Dev 14 Through hole PCB Assembly and Test Lab 1 Introduction: The Pic Dev 14 is a simple 8-bit Microchip Pic microcontroller breakout board for learning and experimenting with

More information

PIC Dev 14 Surface Mount PCB Assembly and Test Lab 1

PIC Dev 14 Surface Mount PCB Assembly and Test Lab 1 Name Lab Day Lab Time PIC Dev 14 Surface Mount PCB Assembly and Test Lab 1 Introduction: The Pic Dev 14 SMD is a simple 8-bit Microchip Pic microcontroller breakout board for learning and experimenting

More information

PP-BOB2-V1.0 PARALLEL PORT BREAKOUT BOARD

PP-BOB2-V1.0 PARALLEL PORT BREAKOUT BOARD PP-BOB2-v1 PARALLEL PORT BREAKOUT BOARD Document: Operation Manual Document #: T17 Document Rev: 2.0 Product: PP-BOB2-v1.0 Product Rev: 1.0 Created: March, 2013 Updated: Dec, 2014 THIS MANUAL CONTAINS

More information

SR3_Analog_32. User s Manual

SR3_Analog_32. User s Manual SR3_Analog_32 User s Manual by with the collaboration of March 2nd 2012 1040, avenue Belvédère, suite 215 Québec (Québec) G1S 3G3 Canada Tél.: (418) 686-0993 Fax: (418) 686-2043 1 INTRODUCTION 4 2 TECHNICAL

More information

Adafruit USB Power Gauge Mini-Kit

Adafruit USB Power Gauge Mini-Kit Adafruit USB Power Gauge Mini-Kit Created by Bill Earl Last updated on 2017-07-14 11:55:04 PM UTC Guide Contents Guide Contents Overview Assembly Basic Assembly Solder the female connector. Solder the

More information

Pridgen Vermeer Robotics ATmega128 Revision 0

Pridgen Vermeer Robotics ATmega128 Revision 0 Features: 6x 8-bit I/O Ports 4x A/D Inputs 6x PWM Headers 2x RS 232 Terminals Power Bus LCD Header (4-bit mode) Smart Power Connecter Power Switch Header Power LED Debug LED Note: Some pins have multiple

More information

275 to 550 MHz Frequency Synthesizer

275 to 550 MHz Frequency Synthesizer LCFS1055-DEMO 275 to 550 MHz Frequency Synthesizer Low Phase Noise in a Lower Cost Package Features Low Phase Noise: -116 dbc/hz (100 khz offset) Internal Reference Oscillator (External Option at No Extra

More information

Strain gauge Measuring Amplifier GSV-1A8. Instruction manual GSV-1A8, GSV-1A8USB, GSV-1A16USB

Strain gauge Measuring Amplifier GSV-1A8. Instruction manual GSV-1A8, GSV-1A8USB, GSV-1A16USB Strain gauge Measuring Amplifier GSV-A8 Instruction manual GSV-A8, GSV-A8USB, GSV-A6USB GSV-A8USB SubD5 (front side) GSV-A8USB M2 (front side) GSV-A6USB (rear side) GSV-A8USB K6D (front side) Version:

More information

QUICK START GUIDE FOR DEMONSTRATION CIRCUIT 1350 HIGH TEMP ADC

QUICK START GUIDE FOR DEMONSTRATION CIRCUIT 1350 HIGH TEMP ADC LTC2246H, LTC2226H DESCRIPTION Demonstration circuit 1350 supports a family of 12 and 14-Bit 25Msps ADC. This assembly features one of the following devices: LTC2226H or LTC2246H high speed, high dynamic

More information

DSP Development Environment: Introductory Exercise for TI TMS320C55x

DSP Development Environment: Introductory Exercise for TI TMS320C55x Connexions module: m13811 1 DSP Development Environment: Introductory Exercise for TI TMS320C55x Thomas Shen David Jun Based on DSP Development Environment: Introductory Exercise for TI TMS320C54x (ECE

More information

TLE9869 Eval.Kit V1.0 Users Manual

TLE9869 Eval.Kit V1.0 Users Manual TLE9869 Eval.Kit V1.0 Users Manual Contents Abbreviations... 2 1 Concept... 3 2 Interconnects... 4 3 Test Points... 5 4 Jumper Settings... 6 5 Communication Interfaces... 7 5.1 LIN (via Banana jack and

More information

Pridgen Vermeer Robotics Xmega128 Manual

Pridgen Vermeer Robotics Xmega128 Manual Features: 12x PWM signals with 5V supply 8x A/D Inputs with 3.3V supply 2x RS 232 Terminals 1x SPI Interface 4x 8-bit Digital IO ports 3.3V Power Bus LCD Header (4-bit mode) Smart Power Connecter Power

More information

AVR Intermediate Development Board. Product Manual. Contents. 1) Overview 2) Features 3) Using the board 4) Troubleshooting and getting help

AVR Intermediate Development Board. Product Manual. Contents. 1) Overview 2) Features 3) Using the board 4) Troubleshooting and getting help AVR Intermediate Development Board Product Manual Contents 1) Overview 2) Features 3) Using the board 4) Troubleshooting and getting help 1. Overview 2. Features The board is built on a high quality FR-4(1.6

More information

8051 Intermidiate Development Board. Product Manual. Contents. 1) Overview 2) Features 3) Using the board 4) Troubleshooting and getting help

8051 Intermidiate Development Board. Product Manual. Contents. 1) Overview 2) Features 3) Using the board 4) Troubleshooting and getting help 8051 Intermidiate Development Board Product Manual Contents 1) Overview 2) Features 3) Using the board 4) Troubleshooting and getting help 1. Overview 2. Features The board is built on a high quality FR-4(1.6

More information

Quick Start by JP Liew

Quick Start by JP Liew Quick Start Page 1 of 8 Quick Start by JP Liew Thank you backing our Kickstarter project. Before we get underway with setting up your MicroView, you should make sure you have got everything you need. Unboxing

More information

ECONseries Low Cost USB DAQ

ECONseries Low Cost USB DAQ ECONseries Low Cost USB Data Acquisition Modules ECONseries Low Cost USB DAQ The ECONseries is a flexible yet economical series of multifunction data acquisition modules. You choose the number of analog

More information

Evaluation Kit User s Manual. Digital Variable Gain Amplifier(DVGA) BVA 303/305

Evaluation Kit User s Manual. Digital Variable Gain Amplifier(DVGA) BVA 303/305 Evaluation Kit User s Manual Digital Variable Gain Amplifier(DVGA) BVA 303/305 1 Table of contents Introduction...... 3 Applications Support... 3 Evaluation Kit Contents and Requirements. 3 Kit Contents.....

More information

PCI-FPGA-1B User Guide

PCI-FPGA-1B User Guide PCI-FPGA-1B User Guide Rev 1.0 (Nov. 2012) Port City Instruments, LLC 8209 Market Street, Suite A271 Wilmington, NC 28411 (Tel) 866-456-2488 (Web) www.portcityinstruments.com Copyright 2012 Port City Instruments,

More information

Four-Channel Universal Analog Input Using the MAX11270

Four-Channel Universal Analog Input Using the MAX11270 Four-Channel Universal Analog Input Using the MAX70 MAXREFDES5 Introduction The MAXREFDES5 is a four-channel universal analog input that measures voltage or current signals. Each channel can be configured

More information

S32K148 EVB QUICK START GUIDE REV1 APPLIES FOR: S32K148 EVB (SCH REV A/B) EXTERNAL USE

S32K148 EVB QUICK START GUIDE REV1 APPLIES FOR: S32K148 EVB (SCH REV A/B) EXTERNAL USE S32K148 EVB QUICK START GUIDE REV1 APPLIES FOR: S32K148 EVB (SCH-29644 REV A/B) Contents: Get to Know S32K148 EVB Out of the Box Setup Introduction to OpenSDA S32DS IDE basics: Download Create a project

More information

WS2812B RGB LED Strip

WS2812B RGB LED Strip Handson Technology User Guide WS2812B RGB LED Strip These LED strips are just about the best way to get tons of colorful LED light with a minimum of wiring and fuss! Each strip is 50cm in length and contains

More information

Appendix F: Design Documentation for multisensory therapy system

Appendix F: Design Documentation for multisensory therapy system Appendix F: Design Documentation for multisensory therapy system This appendix contains in details all the system design. It summarizes at the structure design, electrical design, and software design.

More information

PP-BOB2-V2.0 PARALLEL PORT BREAKOUT BOARD

PP-BOB2-V2.0 PARALLEL PORT BREAKOUT BOARD PP-BOB2-V2 PARALLEL PORT BREAKOUT BOARD Document: Operation Manual Document #: T18 Document Rev: 1.0 Product: PP-BOB2-V2.0 Product Rev: 1.0 Created: October, 2015 THIS MANUAL CONTAINS INFORMATION FOR INSTALLING

More information

User Guide Feb 5, 2013

User Guide Feb 5, 2013 HI 8435 32 Sensor Array with Ground/Open or Supply/Open Sensors and SPI interface. Evaluation Board 23351 Madero, Mission Viejo, CA 92691. USA. Tel: + 1 949 859 8800 Fax: + 1 949 859 9643 Email: sales@holtic.com

More information

DEV16T. LCD Daughter board

DEV16T. LCD Daughter board LCD Daughter board Table of Contents 1 Introduction...2 2 Features...3 3 Expansion Connectors...4 3.1 Daughter Board Connectors...4 4 LCD Display...5 5 Input Buttons S1 to S4...5 6 Buzzer...5 7 Connector

More information

GSV-1A4 M12/2 M12/2. Highlights

GSV-1A4 M12/2 M12/2. Highlights GSV-1A4 M12/2 M12/2 Highlights Input sensitivity: 2mV/V; 4mV/V, 2 mv/v, 1mV/V, 0.5mV/V configurable via jumpers Output signals ±10V AND 12mA+-8mA on 15 pin Sub-D Integrated half and quarter bridge completion

More information

Models 1417 and 1437 User s Manual. High-Speed Photodetector Modules

Models 1417 and 1437 User s Manual. High-Speed Photodetector Modules Models 1417 and 1437 User s Manual High-Speed Photodetector Modules Handling Precautions The detector is sensitive to electrostatic discharges and could be permanently damaged if subjected even to small

More information

Lab 5: LCD and A/D: Digital Voltmeter

Lab 5: LCD and A/D: Digital Voltmeter Page 1/5 OBJECTIVES Learn how to use C (as an alternative to Assembly) in your programs. Learn how to control and interface an LCD panel to a microprocessor. Learn how to use analog-to-digital conversion

More information

EE 210 Lab Assignment #2: Intro to PSPICE

EE 210 Lab Assignment #2: Intro to PSPICE EE 210 Lab Assignment #2: Intro to PSPICE ITEMS REQUIRED None Non-formal Report due at the ASSIGNMENT beginning of the next lab no conclusion required Answers and results from all of the numbered, bolded

More information

APPENDIX E: IWX3XX HARDWARE MANUAL

APPENDIX E: IWX3XX HARDWARE MANUAL APPENDIX E: IWX3XX HARDWARE MANUAL Overview The iworx/3xx hardware in combination with LabScribe2 recording software provides a system that allows coordinated control of both analog inputs and outputs.

More information

A variety of ECONseries modules provide economical yet flexible solutions

A variety of ECONseries modules provide economical yet flexible solutions Economy USB Mini-Instruments Flexible Yet Economical A variety of low-cost modules are available to provide flexible yet economical solutions. Choose the number of analog I/O and digital I/O channels,

More information

Sierra Radio Systems. Making a Keyer with the. HamStack. Project Platform

Sierra Radio Systems. Making a Keyer with the. HamStack. Project Platform Sierra Radio Systems Making a Keyer with the HamStack Project Platform Introduction The HamStack Project Board includes primary interface elements needed to make a high quality CW keyer. Using the LCD

More information

Chapter 2 Installing the OM-USB-1608FS... 9 What comes with your OM-USB-1608FS shipment?... 9 Hardware... 9 Additional documentation...

Chapter 2 Installing the OM-USB-1608FS... 9 What comes with your OM-USB-1608FS shipment?... 9 Hardware... 9 Additional documentation... Table of Contents Preface About this User's Guide... 5 What you will learn from this user's guide... 5 Conventions in this user s guide... 5 Where to find more information... 5 Chapter 1 Introducing the

More information

V1BOOST-STEPPER Unipolar Stepper Motor BoosterPack for the MSP430 LaunchPad. User s Guide

V1BOOST-STEPPER Unipolar Stepper Motor BoosterPack for the MSP430 LaunchPad. User s Guide V1BOOST-STEPPER Unipolar Stepper Motor BoosterPack for the MSP430 LaunchPad User s Guide Revised July 2012 CONTENTS 1 Introduction... 3 1.1 Overview... 3 1.2 Features... 3 1.3 Additional Information...

More information

Blue Point Engineering

Blue Point Engineering Blue Point Engineering Board - Pro Module (E) Instruction Pointing the Way to Solutions! Controller I Version 2.1 The Board Pro E Module provides the following features: Up to 4 minutes recording time

More information

Flex Series User Guide

Flex Series User Guide User Programmable Current 4..20mA Digital RS485 Dual & Single Axis Up to 360º 2016 Flex Series User Guide Sensor Installation, Wiring, Flexware App Instructions Page 1 of 33 Page 2 of 33 Table of Contents

More information

MSP430 Interface to LMP91000 Code Library

MSP430 Interface to LMP91000 Code Library Application Note 2230 Vishy Viswanathan July 13, 2012 MSP430 Interface to LMP91000 Code 1.0 Abstract The MSP430 is an ideal microcontroller solution for low-cost, low-power precision sensor applications

More information

S USB-PC Connection (Cable Not Included) S USB Powered (No External Power Supply Required) S Real-Time Data Acquisition Through the USB

S USB-PC Connection (Cable Not Included) S USB Powered (No External Power Supply Required) S Real-Time Data Acquisition Through the USB 19-5610; Rev 1; 8/11 MAXADClite Evaluation Kit General Description The MAXADClite evaluation kit (EV kit) evaluates the MAX11645, Maxim's smallest, very-low-power, 12-bit, 2-channel analog-to-digital converter

More information

AAZ 0914A SWR Analyzer -Steps for a quick test

AAZ 0914A SWR Analyzer -Steps for a quick test FOX DELTA Amateur Radio Projects & Kits AAZ 0914A SWR Analyzer -Steps for a quick test Step What to do Expected result What to do if test fails Component tested 1 Visual inspection Carefully looking at

More information

S32K144 EVB QUICK START GUIDE REV4.2 APPLIES FOR: S32K144 EVB (SCH REV B) EXTERNAL USE

S32K144 EVB QUICK START GUIDE REV4.2 APPLIES FOR: S32K144 EVB (SCH REV B) EXTERNAL USE S32K144 EVB QUICK START GUIDE REV4.2 APPLIES FOR: S32K144 EVB (SCH-29248 REV B) Contents: Get to Know S32K144 EVB Out of the Box Setup Out of the Box Experience (OOBE) based on the FreeMASTER tool Introduction

More information

USB-1616FS. Analog Input and Digital I/O. Specifications

USB-1616FS. Analog Input and Digital I/O. Specifications Analog Input and Digital I/O Specifications Document Revision 1.6 May 2012 Copyright 2012 Specifications All specifications are subject to change without notice. Typical for 25 C unless otherwise specified.

More information

MSP430 Interface to LMP91000 Code Library

MSP430 Interface to LMP91000 Code Library MSP430 Interface to LMP91000 Code Library 1.0 Abstract The MSP430 is an ideal microcontroller solution for low-cost, low-power precision sensor applications because it consumes very little power. The LMP91000

More information

FUNCTIONAL BLOCK DIAGRAM R SENSE TO LOAD REF REF OUT / REF IN ADC REF IN DAC 2.5V HIGH SIDE CURRENT SENSE 12-BIT ADC MUX LIMIT REGISTERS TEMP SENSOR

FUNCTIONAL BLOCK DIAGRAM R SENSE TO LOAD REF REF OUT / REF IN ADC REF IN DAC 2.5V HIGH SIDE CURRENT SENSE 12-BIT ADC MUX LIMIT REGISTERS TEMP SENSOR FEATURES Full featured evaluation board for AD7294 Graphical user interface software with USB control Can be powered entirely from the USB port or using an external power source Various link options APPLICATIONS

More information

The SilverNugget is a servo controller/driver for NEMA 17 & 23 frame microstep motors.

The SilverNugget is a servo controller/driver for NEMA 17 & 23 frame microstep motors. Date: 5 November 2008 www.quicksilvercontrols.com SilverNugget N2 M-Grade The SilverNugget is a servo controller/driver for NEMA 17 & 23 frame microstep motors. Property of Page 1 of 13 This document is

More information

CompuScope Ultra-fast waveform digitizer card for PCI bus. APPLICATIONS. We offer the widest range of

CompuScope Ultra-fast waveform digitizer card for PCI bus.   APPLICATIONS. We offer the widest range of We offer the widest range of high-speed and high-resolution digitizers available on the market CompuScope 1602 Ultra-fast waveform digitizer card for PCI bus today. Our powerful PC-based instrumentation

More information

Specifications USB-1616FS

Specifications USB-1616FS Document Revision 1.5, July, 2006 Copyright 2006, Measurement Computing Corporation Typical for 25 C unless otherwise specified. in italic text are guaranteed by design. Analog input A/D converters Number

More information

Obsolete. LX1800 SMBus TO ANALOG INTERFACE

Obsolete. LX1800 SMBus TO ANALOG INTERFACE LX1800 SMBus TO ANALOG INTERFACE TM Page 1 INTRODUCING TO PRODUCT The LX1800 Evaluation Board is available from for evaluating the functionality and performance of the LX1800 SMBus to Analog Interface

More information

Brushless DC motor drive board evaluation

Brushless DC motor drive board evaluation Brushless DC motor drive board evaluation Version: Saturday, March 15, 2014 Applies to: SAT0042 E4 brushless DC motor drive board 1 Initial Evaluation 1.1 Visual inspection 1.1.1 Verify the components

More information

SCIENCEWORKSHOP 750 INTERFACE. Instruction Sheet for the PASCO Model CI Introduction

SCIENCEWORKSHOP 750 INTERFACE. Instruction Sheet for the PASCO Model CI Introduction Instruction Sheet for the PASCO Model CI-7500 012-06772A 4/98 $1.00 SCIENCEWORKSHOP 750 INTERFACE ventilation louvres POWER power light ScienceWorkshop 750 1 2 3 4 A B C DIGITAL CHANNELS ANALOG CHANNELS

More information

RKP08 Component List and Instructions

RKP08 Component List and Instructions RKP08 Component List and Instructions PCB layout Constructed PCB RKP08 Scematic RKP08 Project PCB Page 1 Description The RKP08 project PCB has been designed to use PIC microcontrollers such as the Genie

More information

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

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

More information

USB-to-I2C Basic. Hardware User s Manual.

USB-to-I2C Basic. Hardware User s Manual. USB-to-I2C Basic Hardware User s Manual http://www.i2ctools.com/ Information provided in this document is solely for use with the USB-to-I2C product from SB Solutions, Inc. SB Solutions, Inc. reserves

More information

MiniAmp. Electronics & Software. Miniature Charge Amplifier. Type 5030A...

MiniAmp. Electronics & Software. Miniature Charge Amplifier. Type 5030A... Electronics & Software MiniAmp Type 5030A... Miniature Charge Amplifier The MiniAmp Type 5030A is a single channel, industrial charge amplifier, which converts the charge signal from piezoelectric sensors

More information

Lab 3: Building a Power Supply and a Stereo Amplifier

Lab 3: Building a Power Supply and a Stereo Amplifier ECE 212 Spring 2010 Circuit Analysis II Names: Objectives Lab 3: Building a Power Supply and a Stereo Amplifier In this lab exercise you will build a regulated variable-voltage power supply and a 10-watt

More information

ARC-48: 8-Channel CCD Video Processing Board

ARC-48: 8-Channel CCD Video Processing Board ARC-48: 8-Channel CCD Video Processing Board This manual describes the 8-channel CCD video processor board, model ARC-48 Rev. 1A. The board serves two functions - processing and digitizing the video outputs

More information

Features. RoHS COMPLIANT 2002/95/EC

Features. RoHS COMPLIANT 2002/95/EC PCIE-1730 32-ch TTL and 32-ch Isolated Digital I/O PCI Express Card 32-ch isolated DI/O (16-ch digital input, 16-ch digital output) 32-ch TTL DI/O (16-ch digital input,16-ch digital output) High output

More information

Schematic Diagram: R2,R3,R4,R7 are ¼ Watt; R5,R6 are 220 Ohm ½ Watt (or two 470 Ohm ¼ Watt in parallel)

Schematic Diagram: R2,R3,R4,R7 are ¼ Watt; R5,R6 are 220 Ohm ½ Watt (or two 470 Ohm ¼ Watt in parallel) Nano DDS VFO Rev_2 Assembly Manual Farrukh Zia, K2ZIA, 2016_0130 Featured in ARRL QST March 2016 Issue Nano DDS VFO is a modification of the original VFO design in Arduino Projects for Amateur Radio by

More information

CO-485USB USB to RS-485 CONVERTER TECHNICAL REFERENCE

CO-485USB USB to RS-485 CONVERTER TECHNICAL REFERENCE TABLE OF CONTENTS CO-485USB USB to CONVERTER TECHNICAL REFERENCE Specifications, Description and Technical Support... page 1 Connection Diagram... page 2 Set-Up & Testing... page 3 & 4 Power Supply Shunts...

More information

HARDWARE OPERATIONS MANUAL

HARDWARE OPERATIONS MANUAL HARDWARE OPERATIONS MANUAL Table of Contents INTRODUCTION... 2 SECTION 1: HARDWARE COMPONENT ASSEMBLIES... 2 MECHANICAL HARDWARE AND CASE... 2 PCB ASSEMBLY... 4 ISD RECORDING CIRCUIT... 5 BREADBOARD ASSEMBLY...

More information

BB-303 Manual Baseboard for TMCM-303

BB-303 Manual Baseboard for TMCM-303 BB-303 Manual Baseboard for TMCM-303 Trinamic Motion Control GmbH & Co. KG Sternstraße 67 D 20357 Hamburg, Germany http://www.trinamic.com BB-303 Manual (V1.04 / Jul 9th, 2007) 2 Contents 1 Features...

More information

SMT9091 SMT148-FX-SMT351T/SMT391

SMT9091 SMT148-FX-SMT351T/SMT391 Unit / Module Description: Unit / Module Number: Document Issue Number: Issue Date: Original Author: This Document provides an overview of the developed system key features. SMT148-FX-SMT351T/SMT391 E.Puillet

More information

Gooligum Electronics 2015

Gooligum Electronics 2015 The Wombat Prototyping Board for Raspberry Pi Operation and Software Guide This prototyping board is intended to make it easy to experiment and try out ideas for building electronic devices that connect

More information

Stellaris LM3S3748 Evaluation Kit README FIRST

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

More information

Addendum for 125B Bushealth Measurements

Addendum for 125B Bushealth Measurements Addendum for 125B Bushealth Measurements Introduction This Addendum contains information to extend the information presented in the Fluke 125B Users Manual. The purpose of this Addendum is to give more

More information

A variety of ECONseries modules provide economical yet flexible solutions. Waveform Generation

A variety of ECONseries modules provide economical yet flexible solutions. Waveform Generation ECONseries BUS: USB Type: Economy, Mini-Instruments ECONseries Economy USB Mini-Instruments Flexible Yet Economical A variety of low-cost ECONseries modules are available to provide flexible yet economical

More information

Analog Input Sample Rate

Analog Input Sample Rate ECONseries Low Cost USB Data Acquisition Modules Overview The ECONseries is a flexible yet economical series of multifunction DAQ modules. You chse the number of analog I/O and digital I/O channels, the

More information

S32K142 EVB QUICK START GUDE REV3.1 APPLIES FOR: S32K142 EVB (SCH_29701 REV D/C) EXTERNAL USE

S32K142 EVB QUICK START GUDE REV3.1 APPLIES FOR: S32K142 EVB (SCH_29701 REV D/C) EXTERNAL USE S32K142 EVB QUICK START GUDE REV3.1 APPLIES FOR: S32K142 EVB (SCH_29701 REV D/C) Contents: Get to Know S32K142 EVB JumpStart Setup JumpStart based on the FreeMASTER tool Introduction to OpenSDA Creating

More information

TECHNICAL NOTE. VS1000: Evaluation Kit EVBA_2.0. Contents. EVBA_2.0 is a plug and play Evaluation Kit for Colibrys VS1000 accelerometers line.

TECHNICAL NOTE. VS1000: Evaluation Kit EVBA_2.0. Contents. EVBA_2.0 is a plug and play Evaluation Kit for Colibrys VS1000 accelerometers line. VS1000: Evaluation Kit EVBA_2.0 EVBA_2.0 is a plug and play Evaluation Kit for Colibrys VS1000 accelerometers line. To facilitate the integration in user environment and easily verify the excellent performances

More information

DIGITAL COMPASS SOLUTION

DIGITAL COMPASS SOLUTION Features 5 Heading Accuracy, 0.5 Resolution 2-axis Capability Small Size (19mm x 19mm x 4.5mm), Light Weight Advanced Hard Iron Calibration Routine for Stray Fields and Ferrous Objects 0 to 70 C Operating

More information

MAXREFDES24EVSYS User Manual

MAXREFDES24EVSYS User Manual MAXREFDES24EVSYS User Manual Rev 1; 1/15 ADCLITE2 ANALOG SIGNAL CAPTURE GUI Windows PC REFDES24 4-CHANNEL ANALOG OUTPUT GUI 20 30VDC (>150mA) MAXREFDES24 MAX1659 LDO MAX17498 FLYBACK CONTROL MAX6126 VREF

More information

ECONseries Low Cost USB DAQ

ECONseries Low Cost USB DAQ ECONseries Low Cost USB Data Acquisition Modules ECONseries Low Cost USB DAQ The ECONseries is a flexible yet economical series of multifunction data acquisition modules. You choose the number of analog

More information

USB Type A Female Breakout Hookup Guide

USB Type A Female Breakout Hookup Guide Page 1 of 7 USB Type A Female Breakout Hookup Guide Introduction If you have a microcontroller that can act as a USB host, then you will need a way to plug in USB cables and devices. The USB Type A Female

More information

850 Universal Interface

850 Universal Interface Instruction Manual 012-12355A PASCO 850 Universal Interface Model No. UI-5000 *012-12355* 850 Universal Interface 012-12355A Model No. UI-5000 Table of Contents Equipment List... 3 Introduction... 4 Computer

More information

BMS: Installation Manual v2.x - Documentation

BMS: Installation Manual v2.x - Documentation Page 1 of 7 BMS: Installation Manual v2.x From Documentation This section describes how external peripheral devices are connected and additional functions of the BMS are used. I you have not done so already,

More information

EM35x Breakout Board Technical Specification

EM35x Breakout Board Technical Specification October 009 0-009-000B EM5x Breakout Board Technical Specification The Ember EM5x breakout board contains the hardware peripherals for the development and deployment of a low-data-rate, low-power ZigBee

More information

Butterfly Laser Diode Mount

Butterfly Laser Diode Mount LM14S2 Butterfly Laser Diode Mount Operating Manual LM14S2 Laser On TEC Driver LD Driver THORLABS, Inc. Ph: (973) 579-7227 435 Route 206N Fax: (973) 383-8406 Newton, NJ 07860 USA www.thorlabs.com 10614-D02

More information

Grove Digital Extender 0059-GRVDE-DSBT/SF

Grove Digital Extender 0059-GRVDE-DSBT/SF Features and Benefits: The board is an easy to use I2C controlled board that provides 8 Grove Digital I/O ports. 8 Connectors I2C controlled 3 total Grove I2C Connectors (2 spare) 8 GPIO pins 3.3V and

More information

Small rectangles (and sometimes squares like this

Small rectangles (and sometimes squares like this Lab exercise 1: Introduction to LabView LabView is software for the real time acquisition, processing and visualization of measured data. A LabView program is called a Virtual Instrument (VI) because it,

More information

ADR7700. RS232 / Data Acquisition Interface USER MANUAL V 1.0

ADR7700. RS232 / Data Acquisition Interface USER MANUAL V 1.0 ADR7700 RS232 / Data Acquisition Interface USER MANUAL V 1.0 Caution: The ADR7700 is a static sensitive device. Observe proper procedures for handling static sensitive devices. ONTRAK CONTROL SYSTEMS INC.

More information

Digital Discovery Reference Manual

Digital Discovery Reference Manual Digital Discovery Reference Manual The Digilent Digital Discovery is a combined logic analyzer and pattern generator instrument that was created to be the ultimate embedded development companion. The Digital

More information

Chapter 1 Introducing the OM-USB-1608FS-Plus... 6 Functional block diagram... 6

Chapter 1 Introducing the OM-USB-1608FS-Plus... 6 Functional block diagram... 6 Table of Contents Preface About this User's Guide... 5 What you will learn from this user's guide... 5 Conventions in this user's guide... 5 Where to find more information... 5 Chapter 1 Introducing the

More information

Manual imso-204x. RevOrig_

Manual imso-204x. RevOrig_ Manual imso-204x Manual Table of Contents Section 1 Getting Started SAFETY 1.10 Quickstart Guide 1.20 SAFETY 1.30 Compatibility 1.31 Hardware 1.32 Software 1.40 Tool Tips Section 2 How it works 2.10 Menus

More information

ST SPC58 B Line Emulation Adapter System

ST SPC58 B Line Emulation Adapter System _ V1.1 Hardware Reference ST SPC58 B Line Emulation Adapter ST SPC58 B Line Emulation Adapter System ST SPC58 B line emulation adapter primary use case is providing Nexus trace functionality for the SPC58

More information

Lab 5: LCD and A/D: Digital Voltmeter

Lab 5: LCD and A/D: Digital Voltmeter Page 1/5 OBJECTIVES Learn how to use C (as an alternative to Assembly) in your programs. Learn how to control and interface an LCD panel to a microprocessor. Learn how to use analog-to-digital conversion

More information

CPT-DA Texas Instruments TMS320F28377D controlcard compatible. DA Series Interface Card. Technical Brief

CPT-DA Texas Instruments TMS320F28377D controlcard compatible. DA Series Interface Card. Technical Brief CPT-DA28377 Texas Instruments TMS320F28377D controlcard compatible DA Series Interface Card Technical Brief May 2015 Manual Release 1 Card Version 1.0 Copyright 2015 Creative Power Technologies P/L P.O.

More information

Handyscope HS3. User manual. TiePie engineering

Handyscope HS3. User manual. TiePie engineering Handyscope HS3 User manual TiePie engineering ATTENTION! Measuring directly on the line voltage can be very dangerous. The outside of the BNC connectors at the Handyscope HS3 are connected with the ground

More information

The ICU-Duino Arduino Shield!

The ICU-Duino Arduino Shield! The ICU-Duino Arduino Shield! Brought to you by: ENGINEERINGSHOCK ELECTRONICS FEATURES: On Board PIR (Passive Infra-red) Motion Sensor Red Indicator LED Infra-red (IR) Sensor Large Prototyping Area with

More information

E85: Digital Design and Computer Engineering Lab 1: Electrical Characteristics of Logic Gates

E85: Digital Design and Computer Engineering Lab 1: Electrical Characteristics of Logic Gates E85: Digital Design and Computer Engineering Lab 1: Electrical Characteristics of Logic Gates Objective The purpose of this lab is to become comfortable with logic gates as physical objects, to interpret

More information