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 for WCC: Channel and Antenna Characterization Objectives 1. Get familiar with the TI CC2500 single-chip transceiver. 2. Learn how the MSP430 MCU controls and interfaces with the CC Learn about serial I/O. 4. Get a channel sounding application running, and modify it to produce more useful restuls. 5. Explore the characteristics of wireless communication channels. 6. Apply basic statistics to experimental results. What You Will Need a computer running Windows (XP or Vista) TI ez430-rf2500 MSP430 Wireless Development Tool TI s CCS integrated development environment, installed as per the CLIO Quick Start Experiment. Introduction A key property of radio communication channels is attenuation of the signal, so that the received power is a (usually very small) fraction of the transmitted power. In db, we have P R = P T L c where L c is the (positive) loss due to channel attenuation. The CC2500 receiver can measure RSSI (received signal strength indication) of received packets, which is a good estimate of the received power. By knowing the transmitted power and an estimate of the received power, we can in turn estimate the channel attenuation loss L c. We will use this feature to get familiar with a channel sounding application so we can explore how the attenuation of the radio channel varies with (i) the environment, (ii) the position of the transmitter and receiver, and (iii) the orientation of the antennas. Your application setup will use both ez430 units. One unit will be a base node that is connected to a PC, and the other will be a remote node that is battery powered. The base will command the remote node to send 1

2 a packet (or packets) at a fixed transmit power, and the base will detect and receive the packet(s), record the the RSSI, and then forward the data to the PC for further analysis and plotting. Notes Serial communication. Though the ez430 plugs into a USB port on your PC, it has the capability to communicate with the PC using the RS-232 serial communication standard. This is accomplished by dedicated hardware and software on the ez430 programmer baord and drivers on the PC that allow tunneling of RS- 232 data through the USB port. On the ez430, the demo program on the base uses the USART peripheral on the MSP430 to send and receive serial data. You can use hypterminal to send commands from the PC to the base and see the base s response. This is also how you ll access the RSSI information from the base. Structures and unions. The control/data interfaces on the CC2500 are complicated in fact, the CC2500 can be viewed as a very complex, off-chip communication peripheral of the MSP430. To ease management of control and communication with the CC2500, we ve provided code that uses two features of the C language: structures and unions. A structure simplifies management of data by aggregating multiple variables of different data types. Since many kinds of data are hierarchical in nature, it makes sense to have a way to organize data. For example, consider keeping track of light and relative humidity at different sites in a factory. Instead of having a separate variable for each, you might prefer to have one identifier mydata that references both, and then you could specifiy mydata.light and mydata.humidity to get just one of the variables. Unions give you multiple ways of referencing data objects. In the demo programs, we use a union to reference a specific structure in another way. For example, using a union, the structure CC2500 Memory Map is also referenced via ProjectRadioSettings as sequence of raw bytes for ease of communication with the CC2500. Note that the contents of CC2500 Memory Map are defined in the header file cc2500.h. Modulation. In the demo (Part I below) we provide, the CC2500 is configured to use the frequency-shift keying (FSK) modulation format. Procedure Part I: Demonstration Before you start, it is a good idea to re-do the CLIO Quick Start demonstration to make sure you remember how to build and run a project on the ez Get the software RSSI demo.zip from your instructor or from the muse web site. Note: do not unzip this archive. We will use a tool in CCS to directly import and expand a zipped project archive. 2. Do the following in exactly this order: 2

3 Start CCS and create a new workspace by selecting a new directory. Then create a new project (per the steps in the CLIO Quick Start demonstation), making sure that it is properly configured for the MSP430F2274. Right click the top-level project name of the project created in the previous step and select Import. Under the General tree heading, select the Archive File option and select Next. Use the browse button on the upper right to select the zip file. The contents should appear in the left box, automatically selected. Click Finish to import the files into the project. 3. Note that the same program is used for the base and remote; to build the executable for the remote, you uncomment the following line in demo.c: //#define REMOTE 4. Install the software on the remote, start it, and then place it about 2 meters away. The program turns on the green LED if the remote code is running verify this. Note: to start and stop the program on the remote, use the jumper provided to enable/disable the power. To save the batteries, make sure you disable the power with the jumper when you are not using it. 5. Change your code so the base program will be built and build the project. Plug the base into your PC, install the software, and start it. The program turns on the red LED if the base code is running (see the functions vrun Remote and vrun Base in demo.c). 6. Start and set up hyperterminal on your PC and make sure you can interact with the base ez430. On XP, the Hyperterminal can usually be found in Programs Accessories Communications. Normally the highest-numbered comm port is used for the RS-232 tunnel through USB. Use 9600 bps, 8 data bits, no parity, 1 stop bit, no flow control. 7. Hit a carriage return in hyperterminal. The base ez430 should respond with Sending a tranmission request packet!...waiting for reply..., and you should see confirmation of a received packet from the remote and the RSSI/LQI data report shortly thereafter. (The CC2500 is configured here to report link quality index (LQI) data, but we will not use it in this experiment.) Move the remote around to see if the received signal strength varies (it should). 3

4 Note: refer to the code in demo.c and the CC2500 User s Guide to see how the raw RSSI value is obtained and converted to dbm. Part II: Build a channel/antenna measurement application The application as given is a great start, but it would be much more useful if the remote sent multiple packets so we could estimate the mean and variance of the RSS. 1. Modify the remote program to send 10 packets (instead of one) using using a C for() loop. 2. Modify the base program to buffer the RSSI values in an array as the packets arrive. 3. Modify the base program so that the message sent to the PC includes all 10 RSSI values. Part III: Gather data on the 2.4 GHz channel and the ez430 antenna Before you start, check the reporting requirements in Part IV. In this part, you will gather data to answer three questions. You will use your modified code to quickly gather 10 RSSI samples at each location. 1. How does the environment effect radio wave propagation? Place the remote about 2-3 m away from the base station. Your body is both an absorber and scatterer of electromagnetic radiation. Show this by moving yourself about (but while not blocking the line-of-sight path between the base and remote), and noting the received signal strength. Try to get consistent results for each position. (This may be a challenge if there are strong WiFi signals present, but if you take enough measurements, these effects should average out. Usually 10 is a good number.) Next, see if you can correlate greater signal attenuation with when your body is in the line-of-sight path between the base and remote. Be sure to explain your results. For the following two questions, you will want to position yourself consistently through the testing! 2. How does the mean and variance of the attenuation vary with distance between base and remote? See how the characteristics of the signal attenuation vary with increasing distance. Try 0.5, 1, 2, 4, 6, and 8 m distances. At each distance, take data at three sublocations by moving the remote axially (to maintain the distance) about 10 cm. Fire up Matlab and import your data. Convert your data to absolute (non-db) values. Then plot the relative loss vs. distance on a log-log scale. (The relative loss is the negative of the received signal 4

5 strength.) You should have 30 points at each distance. Find the slope of linear fit (regression) using Matlab s pinv() operator (see the Appendix). This is the estimated propagation loss exponent. Why? 3. How uniform is the radiation pattern of the ez430 chip antenna? First, find the chip antenna on the ez430 using the documentation. Then do the following test. Let front mean the side of the ez430 with the antenna. Then, place or hold the remote about a foot away from the base so that the two PC boards are parallel and are front-to-front (i.e., the two chip antennas facing each other). Then flip the remote so the boards are front-to-back. Make sure you are getting consistent results. Obtain the mean and variance of the received signal strength in both cases. Are these results what you expected? Why or why not? Now devise an experiment to further characterize the directivity of the antenna. For example, explore rotation of the remote s antenna about one axis. Be sure to draw conclusions and provide measurement data to justify them. Part IV: Characterize the channel and antenna Here is where you collect your data, analyses, and results. Try to understand what processes are revealed by the data. For example, answer the following question: what are the major causes of the variation of data about the line that models the propagation loss exponent in your data? your instructor a concise report that includes: a well-formatted hard-copy of your ez430 code developed for Part II, along with a representative screenshoot of Hyperterminal showing data from the your new application Tables that capture and organize your raw data A diagram of your testing room that identifies locations of base and remote nodes Plots as specified in Part III. Interpretation of your results (important) Attach a zip archive of your ez430 project using the Export tool in CCS. Make sure you choose the Create only selected directories option, and then select for archival only the src subdirectory (where all the.c and.h files are). Use your last name as the filename. To make your plots, use Matlab. Make sure your plots are clear, clean, and legible, with axis labels and legends as necessary. What to Hand In, and When 5

6 your report as specified above. Due date: Ask your instructor. For More Information Helpful documentation for this and future CLIO projects: CC2500 User s Guide ez430-rf2500 Development Tool User s Guide MSP-FET430 Flash Emulation Tool (FET) (for Use With Code Composer Essentials for MSP430 Version 3.1) User s Guide Appendix: Fitting a Line to Noisy Data You have a collection of data pairs {x i, y i }. You are quite sure that the x and y values are related by a noisy affine function, i.e., y i = β 0 + β 1 x i + w i where w i is the measurement noise of the i-th measurement. What is the best choice for the the slope β 1? In this experiment, this slope is the propagation loss exponent we are seeking. But this type of problem comes up frequently. Here we sketch how to use the technique of ordinary least-squares to find the slope (as well as the intercept) that best fits the data in terms of minimizing the sum of squared errors. Assume there are N data points (In our case N = 30 6). The trick is to model the data using the following matrix equation: y = Xβ + w where y is a column vector of the y i values, X is an N 2 matrix whose first column is all ones and whose second column is the x i s, β = (β 0 β 1 ) T, and w is the column vector of noise values. Of course, we don t know what the noise values are if we did, we would subtract them out! Note: In statistics, X is sometimes called the design matrix since it specifies the model in this case, an affine model parameterized by an intercept and slope. To see why the first column of X is 1 s, use the above equation to compute y 1, y 2, and y 3. What we do know from our measurements are y and X, and we want to compute the best estimate ˆβ of β. We might think of just ignoring noise and computing X 1 y. Unfortunately, since X is not square, it does 6

7 not have an inverse. But in our case, it does have what is known as a (Moore-Penrose) pseudo-inverse X +, so that ˆβ = X + y. This approach computes the value of ˆβ that defines the line that minimizes the sum of the squares of all the errors between the line and the data points. The Matlab function for the Moore-Penrose pseudoinverse is pinv(). With a little thought, you ll also see how to use this same approach to fit a polynomial of any finite degree (not just a first-order polynomial as we have done here) to noisy data. One caveat: this approach assumes that all the noise values are statistically independent. This is almost always never true, but the they do tend to be nearly independent. 7

Lifetime Power Energy Harvesting Development Kit for Wireless Sensors User s Manual - featuring PIC MCU with extreme Low Power (XLP) Technology

Lifetime Power Energy Harvesting Development Kit for Wireless Sensors User s Manual - featuring PIC MCU with extreme Low Power (XLP) Technology P2110-EVAL-01 Lifetime Power User s Manual - featuring PIC MCU with extreme Low Power (XLP) Technology Overview The Lifetime Power is a complete demonstration and development platform for creating battery-free

More information

Low Power with Long Range RF Module DATASHEET Description

Low Power with Long Range RF Module DATASHEET Description Wireless-Tag WT-900M Low Power with Long Range RF Module DATASHEET Description WT-900M is a highly integrated low-power half-'duplex RF transceiver module embedding high-speed low-power MCU and high-performance

More information

USB Port Medium Power Wireless Module SV653

USB Port Medium Power Wireless Module SV653 USB Port Medium Power Wireless Module SV653 Description SV653 is a high-power USB interface integrated wireless data transmission module, using high-performance Silicon Lab Si4432 RF chip. Low receiver

More information

Preliminary Design Report. Project Title: Search and Destroy

Preliminary Design Report. Project Title: Search and Destroy EEL 494 Electrical Engineering Design (Senior Design) Preliminary Design Report 9 April 0 Project Title: Search and Destroy Team Member: Name: Robert Bethea Email: bbethea88@ufl.edu Project Abstract Name:

More information

SV613 USB Interface Wireless Module SV613

SV613 USB Interface Wireless Module SV613 USB Interface Wireless Module SV613 1. Description SV613 is highly-integrated RF module, which adopts high performance Si4432 from Silicon Labs. It comes with USB Interface. SV613 has high sensitivity

More information

Real-World Range Testing By Christopher Hofmeister August, 2011

Real-World Range Testing By Christopher Hofmeister August, 2011 Real-World Range Testing By Christopher Hofmeister August, 2011 Introduction Scope This paper outlines the procedure for a successful RF range test that provides quantitative data on how the RF link performs

More information

1 UAT Test Procedure and Report

1 UAT Test Procedure and Report 1 UAT Test Procedure and Report These tests are performed to ensure that the UAT Transmitter will comply with the equipment performance tests during and subsequent to all normal standard operating conditions

More information

Big Blue Mars Final Report

Big Blue Mars Final Report Big Blue Mars Final Report Member Names Kyle Hart Dale McClure Michael McEwen Contact Information hartman1000@hotmail.com michaelmce@yahoo.com dale.mcclure@uky.edu 2006-04-02 Faculty Advisor Dr. Bill Smith

More information

ZigBee Propagation Testing

ZigBee Propagation Testing ZigBee Propagation Testing EDF Energy Ember December 3 rd 2010 Contents 1. Introduction... 3 1.1 Purpose... 3 2. Test Plan... 4 2.1 Location... 4 2.2 Test Point Selection... 4 2.3 Equipment... 5 3 Results...

More information

XLR PRO Radio Frequency (RF) Modem. Getting Started Guide

XLR PRO Radio Frequency (RF) Modem. Getting Started Guide XLR PRO Radio Frequency (RF) Modem Getting Started Guide XLR PRO Radio Frequency (RF) Modem Getting Started Guide 90002203 Revision Date Description A September 2014 Initial release. B March 2014 Updated

More information

Multi-Channel RS-232 Serial RF Transceiver

Multi-Channel RS-232 Serial RF Transceiver RF-232 Multi-Channel RS-232 Serial RF Transceiver The RF-232 subassembly is a multi-channel serial radio transceiver. This device accepts and outputs standard serial data at one of three selectable data

More information

Nifty Networking Chips Link Stamps Far and Wide Use an RS-485 transceiver for reliable network comms

Nifty Networking Chips Link Stamps Far and Wide Use an RS-485 transceiver for reliable network comms Column #28, June 1997 by Scott Edwards: Nifty Networking Chips Link Stamps Far and Wide Use an RS-485 transceiver for reliable network comms STAMPS ARE GREAT for bridging the gap between PCs and hardware

More information

RF4432 wireless transceiver module

RF4432 wireless transceiver module 1. Description www.nicerf.com RF4432 RF4432 wireless transceiver module RF4432 adopts Silicon Lab Si4432 RF chip, which is a highly integrated wireless ISM band transceiver. The features of high sensitivity

More information

4. BK2401/BK2421 Module RF test

4. BK2401/BK2421 Module RF test 4. BK2401/BK2421 Module RF test BK2401/BK2421 Module RF performance tests including transmit power (Power) Frequency (Frequency) and sensitivity (Sensitivity) test, and FCC / CE testing major FAIL in the

More information

E31-TTL-500 Datasheet V Feature E31-TTL-500

E31-TTL-500 Datasheet V Feature E31-TTL-500 E31-TTL-500 Datasheet V1.0.1.Introduction E31-TTL-500 1.1 Feature E31-TTL-500 E31-TTL-500 is a 500mW wireless transceiver module with narrow-band transmission, operates at 425-450.5MHz (default: 433MHz),

More information

Multi-Channel USB RF Transceiver

Multi-Channel USB RF Transceiver RF-USB Multi-Channel USB RF Transceiver The RF-USB subassembly is a serial data is radio a serial transceiver radio transceiver modem that can enables easily wireless be used data with communication any

More information

Embedded Radio Data Transceiver SV611

Embedded Radio Data Transceiver SV611 Embedded Radio Data Transceiver SV611 Description SV611 is highly integrated, multi-ports radio data transceiver module. It adopts high performance Silicon Lab Si4432 RF chip. Si4432 has low reception

More information

RF4432PRO wireless transceiver module

RF4432PRO wireless transceiver module wireless transceiver module RF4432PRO 1. Description RF4432PRO adopts Silicon Lab Si4432 RF chip, which is a highly integrated wireless ISM band transceiver chip. Extremely high receive sensitivity (-121

More information

SmartRadio Transmitter / Receiver

SmartRadio Transmitter / Receiver Easy to use Radio Transmitter & Receivers AM Radio Hybrid Technology Supports Data or Telemetry communications Simple CMOS/TTL Data Interface Automatic data encryption / decryption Host Interface up to

More information

Activity 3: Wireless Communication Student Handout. Parts Descriptions. Wireless Communications: Wireless Burglar Alarm

Activity 3: Wireless Communication Student Handout. Parts Descriptions. Wireless Communications: Wireless Burglar Alarm Activity 3: Wireless Communication Student Handout Name: Date: For this activity, you will be modifying your wired communication system to make it wireless. In the end, the transmitter/receiver pair will

More information

RF4463F30 High Power wireless transceiver module

RF4463F30 High Power wireless transceiver module RF4463F30 High Power wireless transceiver module 1. Description RF4463F30 adopts Silicon Lab Si4463 RF chip, which is a highly integrated wireless ISM band transceiver chip. Extremely high receive sensitivity

More information

ZigBeeNet Software 1.0 Range Measurement Tool Users Guide

ZigBeeNet Software 1.0 Range Measurement Tool Users Guide ZigBeeNet Software 1.0 Range Measurement Tool Users Guide Doc. P-ZBN-451 v.1.0 March 2008 2008 MeshNetics 2008 MeshNetics. All rights reserved. No part of the contents of this manual may be transmitted

More information

RF1212 RF1212 Ultra-low Power ISM Transceiver Module V2.0

RF1212 RF1212 Ultra-low Power ISM Transceiver Module V2.0 RF1212 Ultra-low Power ISM Transceiver Module V2.0 Application: Features: Home automation Security alarm Telemetry Automatic meter reading Contactless access Wireless data logger Remote motor control Wireless

More information

Catalogue

Catalogue Catalogue 1. Overview... - 3-2. Features... - 3-3. Applications...- 3-4. Electrical Characteristics...- 4-5. Schematic... - 4-6. Speed rate correlation table...- 6-7. Pin definition...- 6-8. Accessories...-

More information

AT-XTR-7020A-4. Multi-Channel Micro Embedded Transceiver Module. Features. Typical Applications

AT-XTR-7020A-4. Multi-Channel Micro Embedded Transceiver Module. Features. Typical Applications AT-XTR-7020A-4 Multi-Channel Micro Embedded Transceiver Module The AT-XTR-7020A-4 radio data transceiver represents a simple and economical solution to wireless data communications. The employment of an

More information

RF Wireless Serial Device Server

RF Wireless Serial Device Server RF-SDS RF Wireless Serial Device Server The RF-SDS subassembly is a radio transceiver acting as a Serial Device Server, which externally connects a remote serial RF transceiver to an Ethernet network (TCP/IP).

More information

EE 314 Spring 2003 Microprocessor Systems

EE 314 Spring 2003 Microprocessor Systems EE 314 Spring 2003 Microprocessor Systems Laboratory Project #9 Closed Loop Control Overview and Introduction This project will bring together several pieces of software and draw on knowledge gained in

More information

SonoLab Echo-I User Manual

SonoLab Echo-I User Manual SonoLab Echo-I User Manual Overview: SonoLab Echo-I is a single board digital ultrasound pulse-echo solution. The system has a built in 50 volt high voltage generation circuit, a bipolar pulser, a transmit/receive

More information

December 2012 Number Linearity Testing in the SureCAL Power Sensor Package FLEXIBLE STANDARDS ASSIGNMENT

December 2012 Number Linearity Testing in the SureCAL Power Sensor Package FLEXIBLE STANDARDS ASSIGNMENT Overview: December 2012 Number 201202 Linearity Testing in the SureCAL Power Sensor Package This Technical Note describes linearity testing utilized in the SureCAL Power Sensor Package for power sensors

More information

INSTRUCTION MANUAL. IBRit - rf1 - usb PC - Station for wireless Data transmission. M e s s t e c h n i k. Messtechnik GmbH & Co.

INSTRUCTION MANUAL. IBRit - rf1 - usb PC - Station for wireless Data transmission. M e s s t e c h n i k. Messtechnik GmbH & Co. M e s s t e c h n i k INSTRUCTION MANUAL PC - Station for wireless Data transmission Document No. : D1F604 001 Version : April 2006 Copyright : IBR Messtechnik GmbH & Co. KG Contents 1. Introduction 1.1

More information

SIMPLE Raspberry Pi VHF TRANSCEIVER & TNC

SIMPLE Raspberry Pi VHF TRANSCEIVER & TNC Simple Circuits Inc. SIMPLE Raspberry Pi VHF TRANSCEIVER & TNC 2 Meter Transceiver & TNC Simple Circuits Inc. 2015-2018 4/1/2018 Simple Raspberry Pi VHF Transceiver and TNC Introduction: This document

More information

Revision WI.232FHSS-25-FCC-R and RK-WI.232FHSS-25-FCC-R USER S MANUAL

Revision WI.232FHSS-25-FCC-R and RK-WI.232FHSS-25-FCC-R USER S MANUAL Revision 1.0.3 WI.232FHSS-25-FCC-R and RK-WI.232FHSS-25-FCC-R USER S MANUAL RADIOTRONIX, INC. WI.232FHSS-25-FCC-R/ RK-WI.232FHSS-25-FCC-R USER S MANUAL Radiotronix 905 Messenger Lane Moore, Oklahoma 73160

More information

Catalog

Catalog - 1 - Catalog 1. Overview...- 3-2. Feature... - 3-3. Application...- 3-4. Block Diagram...- 3-5. Electrical Characteristics... - 4-6. Operation... - 4-1) Power on Reset... - 4-2) Sleep mode... - 4-3) Working

More information

LoRa1276 Catalogue

LoRa1276 Catalogue Catalogue 1. Overview... 3 2. Features... 3 3. Applications... 3 4. Electrical Characteristics... 4 5. Schematic... 5 6. Speed rate correlation table... 6 7. Pin definition... 6 8. Accessories... 8 9.

More information

TRANSCEIVER FSK. Version: 434 MHz Band / 868 MHZ Band / Code: / A

TRANSCEIVER FSK. Version: 434 MHz Band / 868 MHZ Band / Code: / A TRANSCEIVER FSK Version: 434 MHz Band / 868 MHZ Band / Code: 3-2000519 / 3-2000519A DESCRIPTION: The 3-2000519 and 3-2000519A modules are fully programmable multichannel PLL based FSK transceivers, with

More information

SMARTALPHA RF TRANSCEIVER

SMARTALPHA RF TRANSCEIVER SMARTALPHA RF TRANSCEIVER Intelligent RF Modem Module RF Data Rates to 19200bps Up to 300 metres Range Programmable to 433, 868, or 915MHz Selectable Narrowband RF Channels Crystal Controlled RF Design

More information

SAE Formula Car Data Acquisition & Display System. Joseph Groe, Michelle Ohlson, & Miles Homler Advisor: Professor Gutschlag

SAE Formula Car Data Acquisition & Display System. Joseph Groe, Michelle Ohlson, & Miles Homler Advisor: Professor Gutschlag SAE Formula Car Data Acquisition & Display System Joseph Groe, Michelle Ohlson, & Miles Homler Advisor: Professor Gutschlag Agenda Problem Background Problem Statement System Diagram Project Functional

More information

MAXI Remote Location Kit MRLK 900 Installation and Configuration Manual

MAXI Remote Location Kit MRLK 900 Installation and Configuration Manual MAXI Remote Location Kit MRLK 900 Installation and Configuration Manual 01/18 635079 Table of Contents Introduction... 3 Materials Included... 3 Setup Overview... 4 Radio Configuration Overview:... 4 FreeWaveTool

More information

ZigBit Amp OEM Modules ZDM-A1281-PN

ZigBit Amp OEM Modules ZDM-A1281-PN ZigBit Amp OEM Modules ZDM-A1281-PN Application Note Measuring Range Performance of ZigBit Amp Doc. AN-481~05 v.1.3 March 2008 2008 MeshNetics Document Overview Executive Summary This application note

More information

S O P H I S T I C A T E D A U T O M A T I O N

S O P H I S T I C A T E D A U T O M A T I O N S O P H I S T I C A T E D A U T O M A T I O N Introduction Cost-effective Radio modems to any serial communication application Low power models, different frequency ranges RS232 / / RS422 / 5V TTL interface

More information

Quick Start Guide for the PULSE PROFILING APPLICATION

Quick Start Guide for the PULSE PROFILING APPLICATION Quick Start Guide for the PULSE PROFILING APPLICATION MODEL LB480A Revision: Preliminary 02/05/09 1 1. Introduction This document provides information to install and quickly start using your PowerSensor+.

More information

Operations Manual for RFExtender Setup

Operations Manual for RFExtender Setup Operations Manual for RFExtender Setup Revised December 03, 2004 TABLE OF CONTENTS INTRODUCTION...3 SYSTEM COMPONENTS...3 TRANSCEIVER MODULE SETUP...3 SINGLE LOGGER SYSTEM SETUP...5 MULTIPLE LOGGER SYSTEM

More information

Using Z8 Encore! XP MCU for RMS Calculation

Using Z8 Encore! XP MCU for RMS Calculation Application te Using Z8 Encore! XP MCU for RMS Calculation Abstract This application note discusses an algorithm for computing the Root Mean Square (RMS) value of a sinusoidal AC input signal using the

More information

LoRa1278 Wireless Transceiver Module

LoRa1278 Wireless Transceiver Module LoRa1278 Wireless Transceiver Module 1. Description LoRa1278 adopts Semtech RF transceiver chip SX1278, which adopts LoRa TM Spread Spectrum modulation frequency hopping technique. The features of long

More information

Project Final Report: Directional Remote Control

Project Final Report: Directional Remote Control Project Final Report: by Luca Zappaterra xxxx@gwu.edu CS 297 Embedded Systems The George Washington University April 25, 2010 Project Abstract In the project, a prototype of TV remote control which reacts

More information

Antenna and Propagation

Antenna and Propagation Antenna and Propagation This courseware product contains scholarly and technical information and is protected by copyright laws and international treaties. No part of this publication may be reproduced

More information

Handbook. Antenna Rotator Controller

Handbook. Antenna Rotator Controller Handbook Controller 3S design GmbH 2. Südwieke 231 26817 Rhauderfehn Germany www.3sdesign.de Tel. +49-4952-921950 Contents I Table of content Part I 1 1 Operating... 1 2 Installation... 2 1 1 1.1 Operating

More information

The Mote Revolution: Low Power Wireless Sensor Network Devices

The Mote Revolution: Low Power Wireless Sensor Network Devices The Mote Revolution: Low Power Wireless Sensor Network Devices University of California, Berkeley Joseph Polastre Robert Szewczyk Cory Sharp David Culler The Mote Revolution: Low Power Wireless Sensor

More information

Applications. Operating Modes. Description. Part Number Description Package. Many to one. One to one Broadcast One to many

Applications. Operating Modes. Description. Part Number Description Package. Many to one. One to one Broadcast One to many RXQ2 - XXX GFSK MULTICHANNEL RADIO TRANSCEIVER Intelligent modem Transceiver Data Rates to 100 kbps Selectable Narrowband Channels Crystal controlled design Supply Voltage 3.3V Serial Data Interface with

More information

Technical Note #15. Radio Frequency Modems. GE ED&C Home Search ED&C GE ED&C Power Management Home GE ED&C PMCS Home

Technical Note #15. Radio Frequency Modems. GE ED&C Home Search ED&C GE ED&C Power Management Home GE ED&C PMCS Home 1 of 5 GE ED&C Home Search ED&C GE ED&C Power Management Home GE ED&C PMCS Home GE Power Management Control System Description Software Hardware Operation Product Support Operator Interfaces F A Q s App

More information

Multi Frequency RFID Read Writer System

Multi Frequency RFID Read Writer System Multi Frequency RFID Read Writer System Uppala Sunitha 1, B Rama Murthy 2, P Thimmaiah 3, K Tanveer Alam 1 PhD Scholar, Department of Electronics, Sri Krishnadevaraya University, Anantapur, A.P, India

More information

Lecture - 06 Large Scale Propagation Models Path Loss

Lecture - 06 Large Scale Propagation Models Path Loss Fundamentals of MIMO Wireless Communication Prof. Suvra Sekhar Das Department of Electronics and Communication Engineering Indian Institute of Technology, Kharagpur Lecture - 06 Large Scale Propagation

More information

Catalog

Catalog - 1 - Catalog 1. Overview... - 3-2. Feature...- 3-3. Application... - 3-4. Block Diagram... - 3-5. Electrical Characteristics...- 4-6. Operation...- 4-1) Power on Reset... - 4-2) Sleep mode...- 4-3) Working

More information

EVDP610 IXDP610 Digital PWM Controller IC Evaluation Board

EVDP610 IXDP610 Digital PWM Controller IC Evaluation Board IXDP610 Digital PWM Controller IC Evaluation Board General Description The IXDP610 Digital Pulse Width Modulator (DPWM) is a programmable CMOS LSI device, which accepts digital pulse width data from a

More information

WBT900. User s Manual. 900 MHz Wireless BACnet MSTP Radio. Page 1

WBT900. User s Manual. 900 MHz Wireless BACnet MSTP Radio.   Page 1 WBT900 User s Manual 900 MHz Wireless BACnet MSTP Radio www.aic-wireless.com Page 1 Thank you for your purchase of the WBT900, Wireless BACnet MSTP Transceiver. With appropriate placement and antenna selection,

More information

Catalog

Catalog Catalog 1. Description... - 3-2. Features... - 3-3. Application... - 3-4. Electrical specifications...- 4-5. Schematic... - 4-6. Pin Configuration... - 5-7. Antenna... - 6-8. Mechanical Dimension(Unit:

More information

Blackfin Online Learning & Development

Blackfin Online Learning & Development Presentation Title: Introduction to VisualDSP++ Tools Presenter Name: Nicole Wright Chapter 1:Introduction 1a:Module Description 1b:CROSSCORE Products Chapter 2: ADSP-BF537 EZ-KIT Lite Configuration 2a:

More information

The Mote Revolution: Low Power Wireless Sensor Network Devices

The Mote Revolution: Low Power Wireless Sensor Network Devices The Mote Revolution: Low Power Wireless Sensor Network Devices University of California, Berkeley Joseph Polastre Robert Szewczyk Cory Sharp David Culler The Mote Revolution: Low Power Wireless Sensor

More information

ST600 TRANSMITTER OPERATING INSTRUCTIONS

ST600 TRANSMITTER OPERATING INSTRUCTIONS ST600 TRANSMITTER OPERATING INSTRUCTIONS 1892 1273 These operating instructions are intended to provide the user with sufficient information to install and operate the unit correctly. The Wood and Douglas

More information

FOD Transmitter User s Guide

FOD Transmitter User s Guide FOD Transmitter User s Guide Rev 5, 05/21/2014 AVID Technologies, Inc. FOD Transmitter User s Guide Page 2 General Description The AVID FOD (Foreign Object Detection) Transmitter is a standard WPC Qi V1.1

More information

GC9838-LR - INTELLIGENT HYBRID PLC-RF DIN RAIL MODEM

GC9838-LR - INTELLIGENT HYBRID PLC-RF DIN RAIL MODEM GC9838-LR - INTELLIGENT HYBRID PLC-RF DIN RAIL MODEM and a built-in sub-ghz wireless module to allow adaptive networking over different media. The wireless connectivity can be available in LoRa for tree-structure

More information

ADVANCED EMBEDDED MONITORING SYSTEM FOR ELECTROMAGNETIC RADIATION

ADVANCED EMBEDDED MONITORING SYSTEM FOR ELECTROMAGNETIC RADIATION 98 Chapter-5 ADVANCED EMBEDDED MONITORING SYSTEM FOR ELECTROMAGNETIC RADIATION 99 CHAPTER-5 Chapter 5: ADVANCED EMBEDDED MONITORING SYSTEM FOR ELECTROMAGNETIC RADIATION S.No Name of the Sub-Title Page

More information

Micro Fox PicCon Manual

Micro Fox PicCon Manual Micro Fox PicCon Manual Version 0.61 The Micro Fox PicCon (MF PC) is a 700mW fox hunting/hidden transmitter hunt transceiver. It can be configured and remotely controlled via DTMF tones, and also be configured

More information

The Discussion of this exercise covers the following points:

The Discussion of this exercise covers the following points: Exercise 3-2 Frequency-Modulated CW Radar EXERCISE OBJECTIVE When you have completed this exercise, you will be familiar with FM ranging using frequency-modulated continuous-wave (FM-CW) radar. DISCUSSION

More information

AcuMesh Wireless RS485 Network. User's Manual SOLUTION

AcuMesh Wireless RS485 Network. User's Manual SOLUTION AcuMesh Wireless RS485 Network User's Manual AN SOLUTION ACUMESH - WIRELESS METERING SYSTEM COPYRIGHT 2015 V1.2 This manual may not be altered or reproduced in whole or in part by any means without the

More information

4.5.1 Mirroring Gain/Offset Registers GPIO CMV Snapshot Control... 14

4.5.1 Mirroring Gain/Offset Registers GPIO CMV Snapshot Control... 14 Thank you for choosing the MityCAM-C8000 from Critical Link. The MityCAM-C8000 MityViewer Quick Start Guide will guide you through the software installation process and the steps to acquire your first

More information

DRF7020D13 13dBm ISM RF Transceiver Module

DRF7020D13 13dBm ISM RF Transceiver Module 3dBm ISM RF Transceiver Module V2.2 Features Application GFSK transceiver Module 433Mhz ISM frequency band 9.6K bps FSK data rate Multiple channels 3dBm Max. output power Baud rate configurable 256 bytes

More information

RF NiceRF Wireless Technology Co., Ltd. Rev

RF NiceRF Wireless Technology Co., Ltd. Rev - 1 - Catalog 1. Description...- 3-2. Features...- 3-3. Application...- 3-4. Electrical Specifications...- 4-5. Schematic...- 4-6. Pin Configuration...- 5-7. Antenna... - 6-8. Mechanical dimensions(unit:

More information

4GHz / 6GHz Radiation Measurement System

4GHz / 6GHz Radiation Measurement System 4GHz / 6GHz Radiation Measurement System The MegiQ Radiation Measurement System (RMS) is a compact test system that performs 3-axis radiation pattern measurement in non-anechoic spaces. With a frequency

More information

Fourier Signal Analysis

Fourier Signal Analysis Part 1B Experimental Engineering Integrated Coursework Location: Baker Building South Wing Mechanics Lab Experiment A4 Signal Processing Fourier Signal Analysis Please bring the lab sheet from 1A experiment

More information

Qosmotec. Software Solutions GmbH. Technical Overview. QPER C2X - Car-to-X Signal Strength Emulator and HiL Test Bench. Page 1

Qosmotec. Software Solutions GmbH. Technical Overview. QPER C2X - Car-to-X Signal Strength Emulator and HiL Test Bench. Page 1 Qosmotec Software Solutions GmbH Technical Overview QPER C2X - Page 1 TABLE OF CONTENTS 0 DOCUMENT CONTROL...3 0.1 Imprint...3 0.2 Document Description...3 1 SYSTEM DESCRIPTION...4 1.1 General Concept...4

More information

[APP NOTE TITLE] Application Profile. Challenges

[APP NOTE TITLE] Application Profile. Challenges [APP NOTE TITLE] 03/23/2018 Application Profile Wireless infrastructure encompasses a broad range of radio technologies, antennas, towers, and frequencies. Radio networks are built from this infrastructure

More information

INTRODUCTION. What is the LSN50

INTRODUCTION. What is the LSN50 INTRODUCTION Dragino LoRa Sensor Node Dragino LoRa Sensor Node What is the LSN50 LSN50 is a Long Range LoRa Sensor Node. It is designed for outdoor use and powered by Li/SOCl2 battery for long term use

More information

RC-WIFI CONTROLLER USER MANUAL

RC-WIFI CONTROLLER USER MANUAL RC-WIFI CONTROLLER USER MANUAL In the rapidly growing Internet of Things (IoT), applications from personal electronics to industrial machines and sensors are getting wirelessly connected to the Internet.

More information

DRF5150S Wireless Sensor Transmitter Module V1.30

DRF5150S Wireless Sensor Transmitter Module V1.30 DRF5150S Wireless Sensor Transmitter Module V1.30 Features GFSK Transmitter module ISM frequency bands 81K bps data rate 10dBm output power Baud rate configurable 256 bytes data buffer Standby current

More information

Catalogue

Catalogue - 1 - Catalogue 1. Description... - 3-2. Features... - 3-3. Applications...- 3-4. Block Diagram... - 3-5. Electrical Characteristics...- 4-6. Operation...- 5 - Power on Reset... - 5 - Working mode... -

More information

Featherweight GPS Tracker User s Manual June 16, 2017

Featherweight GPS Tracker User s Manual June 16, 2017 Featherweight GPS Tracker User s Manual June 16, 2017 Hardware Configuration and Installation The dimensions for the board are provided below, in inches. Note that with the antenna installed, the total

More information

ECE 511: FINAL PROJECT REPORT GROUP 7 MSP430 TANK

ECE 511: FINAL PROJECT REPORT GROUP 7 MSP430 TANK ECE 511: FINAL PROJECT REPORT GROUP 7 MSP430 TANK Team Members: Andrew Blanford Matthew Drummond Krishnaveni Das Dheeraj Reddy 1 Abstract: The goal of the project was to build an interactive and mobile

More information

CIC ENGINEERING 345 CENTER STREET EAST PEORIA, IL PH FAX µmpis Control Software

CIC ENGINEERING 345 CENTER STREET EAST PEORIA, IL PH FAX µmpis Control Software µmpis Control Software Overview The µmpis Control software package allows for a user to control the operation of the umpis unit with a PC. The PC and the umpis unit are connected together using a RS232

More information

VRS20. Contents. Communications. Stay involved. RS232 Communications. 2/14/2014 VRS20 - Valeport

VRS20. Contents. Communications. Stay involved. RS232 Communications. 2/14/2014 VRS20 - Valeport Brian VRS20 View Edit History Contents Communications RS232 Communications RS485 Communications RS485 Address Mode SDI12 Communications Data Standalone Data Format GPRS Data Format Data Status Sampling

More information

DRF4432D20 20dBm ISM RF Transceiver Module V1.21

DRF4432D20 20dBm ISM RF Transceiver Module V1.21 DRF4432D dbm ISM RF Transceiver Module V1.21 Features GFSK transceiver Module ISM frequency bands 19.2K bps data rate Multiple channels dbm Max. output power Baud rate configurable 256 bytes data buffer

More information

MicroLab 500-series Getting Started

MicroLab 500-series Getting Started MicroLab 500-series Getting Started 2 Contents CHAPTER 1: Getting Started Connecting the Hardware....6 Installing the USB driver......6 Installing the Software.....8 Starting a new Experiment...8 CHAPTER

More information

Purchase the sample: E51-TTL-500 Datasheet V Feature E51-TTL-500

Purchase the sample:  E51-TTL-500 Datasheet V Feature E51-TTL-500 E51-TTL-500 Datasheet V1.0.1.Introduction E51-TTL-500 1.1 Feature E51-TTL-500 E51-TTL-500 is a 500mW wireless transceiver module(uart), with transparent transmission, operates at 225-237.6MHz z(default

More information

BANTAM INSTRUMENTS SOFTWARE USER S MANUAL MIL-STD-461E PRE-COMPLIANCE MEASUREMENT SYSTEM MODEL EMC-461. Model EMC-461 Software User s Manual

BANTAM INSTRUMENTS SOFTWARE USER S MANUAL MIL-STD-461E PRE-COMPLIANCE MEASUREMENT SYSTEM MODEL EMC-461. Model EMC-461 Software User s Manual BANTAM INSTRUMENTS MIL-STD-461E PRE-COMPLIANCE MEASUREMENT SYSTEM MODEL EMC-461 SOFTWARE USER S MANUAL MIL-STD-461E PRE-COMPLIANCE MEASUREMENT SYSTEM MODEL EMC-461 Software User s Manual BANTAM INSTRUMENTS

More information

LORA1278F30 Catalogue

LORA1278F30 Catalogue Catalogue 1. Overview... 3 2. Feature... 3 3. Application... 3 4. Block Diagram... 4 5. Electrical Characteristics... 4 6. Schematic... 5 7. Speed rate correlation table... 6 8. Pin definition... 6 9.

More information

LORA1276F30 Catalogue

LORA1276F30 Catalogue Catalogue 1. Overview... 3 2. Feature... 3 3. Application... 3 4. Block Diagram... 4 5. Electrical Characteristics... 4 6. Schematic... 5 7. Speed rate correlation table... 6 8. Pin definition... 6 9.

More information

Index Terms IR communication; MSP430; TFDU4101; Pre setter

Index Terms IR communication; MSP430; TFDU4101; Pre setter Design and Development of Contactless Communication Module for Pre setter of Underwater Vehicles J.Lavanyambhika, **D.Madhavi *Digital Systems and Signal Processing in Electronics and Communication Engineering,

More information

Quick Start Guide Hardware

Quick Start Guide Hardware Quick Start Guide Hardware The BroadWeigh shackle can be used almost exactly as a normal shackle with a few additional considerations. It is worth noting that the strain gauge is located within the shackle

More information

Appendix 6 Wireless Interfaces

Appendix 6 Wireless Interfaces Appendix 6 Wireless Interfaces This appendix describes the W800RF32 and MR26 wireless receiver and covers these topics: What are the W800RF32 and the MR26? Use and configuration MR26 W800RF32 Creating

More information

LABORATORY AND FIELD INVESTIGATIONS ON XBEE MODULE AND ITS EFFECTIVENESS FOR TRANSMISSION OF SLOPE MONITORING DATA IN MINES

LABORATORY AND FIELD INVESTIGATIONS ON XBEE MODULE AND ITS EFFECTIVENESS FOR TRANSMISSION OF SLOPE MONITORING DATA IN MINES LABORATORY AND FIELD INVESTIGATIONS ON XBEE MODULE AND ITS EFFECTIVENESS FOR TRANSMISSION OF SLOPE MONITORING DATA IN MINES 1 Guntha Karthik, 2 Prof.Singam Jayanthu, 3 Bhushan N Patil, and 4 R.Prashanth

More information

Wireless Reading of Sensirion Sensors By H. Moholdt

Wireless Reading of Sensirion Sensors By H. Moholdt Wireless Reading of Sensirion Sensors By H. Moholdt Abstract By using an off-the-shelf RF module, wireless reading of pressure-, humidity- and temperature can be achieved with a very limited design effort.

More information

Gentec-EO USA. T-RAD-USB Users Manual. T-Rad-USB Operating Instructions /15/2010 Page 1 of 24

Gentec-EO USA. T-RAD-USB Users Manual. T-Rad-USB Operating Instructions /15/2010 Page 1 of 24 Gentec-EO USA T-RAD-USB Users Manual Gentec-EO USA 5825 Jean Road Center Lake Oswego, Oregon, 97035 503-697-1870 voice 503-697-0633 fax 121-201795 11/15/2010 Page 1 of 24 System Overview Welcome to the

More information

Indoor Localization in Wireless Sensor Networks

Indoor Localization in Wireless Sensor Networks International Journal of Engineering Inventions e-issn: 2278-7461, p-issn: 2319-6491 Volume 4, Issue 03 (August 2014) PP: 39-44 Indoor Localization in Wireless Sensor Networks Farhat M. A. Zargoun 1, Nesreen

More information

ORCA-50 Handheld Data Terminal UHF Demo Manual V1.0

ORCA-50 Handheld Data Terminal UHF Demo Manual V1.0 ORCA-50 UHF Demo Manual V1.0 ORCA-50 Handheld Data Terminal UHF Demo Manual V1.0 Eximia Srl. www.eximia.it - www.rfidstore.it mario.difloriano@eximia.it 1 Eximia Srl www.eximia.it - www.rfidstore.it Catelogue

More information

RF ISM Transparent Transceiver Module V4.0

RF ISM Transparent Transceiver Module V4.0 RF7020-27 ISM Transparent Transceiver Module V4.0 Overview: RF7020-27 is highly integrated semi-duplex medium power transceiver module with high speed MCU and high performance RF IC. Utilizing high efficiency

More information

FOD Transmitter User s Guide

FOD Transmitter User s Guide FOD Transmitter User s Guide Rev 4, 07/18/2013 AVID Technologies, Inc. FOD Transmitter User s Guide Page 2 General Description The AVID FOD (Foreign Object Detection) Transmitter is a standard WPC Qi V1.1

More information

Antenna Performance. Antenna Performance... 3 Gain... 4 Radio Power and the FCC... 6 Link Margin Calculations... 7 The Banner Way... 8 Glossary...

Antenna Performance. Antenna Performance... 3 Gain... 4 Radio Power and the FCC... 6 Link Margin Calculations... 7 The Banner Way... 8 Glossary... Antenna Performance Antenna Performance... 3 Gain... 4 Radio Power and the FCC... 6 Link Margin Calculations... 7 The Banner Way... 8 Glossary... 9 06/15/07 135765 Introduction In this new age of wireless

More information

High Gain Advanced GPS Receiver

High Gain Advanced GPS Receiver High Gain Advanced GPS Receiver NAVSYS Corporation 14960 Woodcarver Road, Colorado Springs, CO 80921 Introduction The NAVSYS High Gain Advanced GPS Receiver (HAGR) is a digital beam steering receiver designed

More information

HURRICANE Radio Modem. FULL DUPLEX Radio MODEM

HURRICANE Radio Modem. FULL DUPLEX Radio MODEM FULL DUPLEX Radio MODEM Direct Cable Replacement Range 2KM RS232 / RS485 / USB Host Data Rates up to 38,400 Baud RF Data Rates to 115200Kbps Waterproof IP68 Enclosure 8 User Selectable Channels CE Compliant

More information

Page 21 GRAPHING OBJECTIVES:

Page 21 GRAPHING OBJECTIVES: Page 21 GRAPHING OBJECTIVES: 1. To learn how to present data in graphical form manually (paper-and-pencil) and using computer software. 2. To learn how to interpret graphical data by, a. determining the

More information