P UAV Telemetry Detailed Design Review Documents February 18, 2010

Size: px
Start display at page:

Download "P UAV Telemetry Detailed Design Review Documents February 18, 2010"

Transcription

1 P UAV Telemetry Detailed Design Review Documents February 18, 2010 Chris Barrett Gregg Golembeski Alvaro Prieto Cameron Bosnic Daron Bell Project Manager Interface Manager Radio Concepts Software Concepts Power Concepts Mission Statement The goal of this project is to create an open source, multi platform, bidirectional telemetry system to be used in an unmanned aerial platform for an aerial imaging system. The telemetry system must be able to be carried on UAV airframe C and interface with the control system (P10236) for the UAV. The system must be able to send flight data/hardware and software diagnostics to be displayed in real time to a computer on the ground.q Contents: Customer Needs Engineering Specifications System Architecture Abstraction Bill of Materials Software Architecture Data Protocol Specification Radio System Architecture Power System Architecture Mounting System Architecture Risk Assessment MSD P10231 UAV Telemetry Detailed Design Review Document 1

2 P UAV Telemetry Detailed Design Review Documents Customer Needs MSD P10231 UAV Telemetry Detailed Design Review Document 2

3 P UAV Telemetry Detailed Design Review Documents Engineering Specifications MSD P10231 UAV Telemetry Detailed Design Review Document 3

4 P UAV Telemetry Detailed Design Review Documents System Architecture Abstraction MSD P10231 UAV Telemetry Detailed Design Review Document 4

5 P UAV Telemetry Detailed Design Review Documents Bill of Materials MSD P10231 UAV Telemetry Detailed Design Review Document 5

6 P UAV Telemetry Detailed Design Review Documents Software Architecture Packet Type The packet type is the basis of all transactions. The packet type consists of a header and packet payload. The packet structure is described in more detail in the UAV Data Protocol Specification. Packetizer The Packetizer class is on its own thread. This constantly checks for bytes on the serial input buffer. If bytes are available, the Packetizer runs through a state machine which tries to compile a packet based on the UAV Data Packet Protocol. If a packet is compiled, it is checked for validity using a rolling addition checksum. If the packet passes, it is placed in the Incoming Packet Queue to be serviced on another thread in the Packet Handler. The Packetizer can also compile outgoing command packets. This is called from the GUI Action Handler class. MSD P10231 UAV Telemetry Detailed Design Review Document 6

7 Incoming Packet Queue Once the Packetizer has received and decoded an incoming packet, it is placed in the Incoming Packet Queue. This is a standard queue that allows the packet actions and updates to take place in another thread. This queue must be thread-safe. Outgoing Packet Queue Once the Packetizer has created an outgoing packet, it is placed in the Outgoing Packet Queue. This is a standard queue that allows the outgoing packets to have a buffer if the outgoing serial port is full. This ensures that the Packetizer will not block when the outgoing port is full, allowing for incoming packets to be processed. While the queue is not empty it accesses the outgoing port and places the bytes in the outgoing stream. This queue must be thread-safe. Packet Handler The Packet Handler is it's own thread which pops packets off the Incoming Packet Queue. The Packet Handler takes the data in the packet and updates the corresponding values in the GUI. This class also writes the valid data to disk for logging with proper formatting. Furthermore, the Packet Handler takes the GUI input and translates that into a outgoing packet type. This is then translated to a standard Packet by the Packetizer who places it on the Outgoing Packet Queue. MSD P10231 UAV Telemetry Detailed Design Review Document 7

8 Graphical User Interface Flight Info Pane MSD P10231 UAV Telemetry Detailed Design Review Document 8

9 Flight Plan Pane MSD P10231 UAV Telemetry Detailed Design Review Document 9

10 Raw Data Pane Software Feasibility The software design presented is based off a previously functioning system that was implemented for another project. The software will be feasible because we are using proven software concepts. A Model View Control patten will be used for the GUI functionality to ensure that the GUI remains responsive. The use of multithreaded processes will prevent data buffers and queues from loosing data. Selecting QT as a language will help make code maintainable, expandable, and extensible. The modularity of the code will allow easy maintanibility; each component may be rewritten or reused in future revisions. Modular code will also allow simpler testing, as each component may be sand-boxed and tested individually. QT is built for rapid development by integrating the GUI design with code authoring, abstracting the connections between the GUI and variable data. QT/C++ has advantages over the other languages explored due to its speed, compatibility, and licensing. Another advantage of QT/C++ is that it is embeddable, so if the project moves to an embedded platform in the future, such as a PDA or cell phone, code will not have to be modified. Lastly, the three team members implementing the software portion of this project have also created similar designs and meet comparable software goals. MSD P10231 UAV Telemetry Detailed Design Review Document 10

11 Software Test Plan The software will undergo functional validation (FVT) and usability testing (UT). Usability testing will be determined by running the UI and having 5 random people perform scripted actions to make sure that the GUI layer was designed well. Dr. Kolodziej will also perform a usability test to determine that the design meets his needs. An FVT script will also be created after all of the software methods have been created to test the functional value of the code. The FVT will be performed by other members of the team. Unit tests will be used throughout the build process to insure that methods behave correctly. Testing will initially be done with 2 computers connected via a serial cable for initial testing, and then the radio will be dropped in once the packet structure is verified. A test file consisting of simulated UAV control system output data will allow for verification of the packet translation functions without having to integrate with the UAV control system until later. This allows for greater flexibility and removes a dependency on another team. Testing afterwords will consist of setting up a static base station, and another moving rig. The data loss at a distance can be tested with this setup. MSD P10231 UAV Telemetry Detailed Design Review Document 11

12 P UAV Telemetry Detailed Design Review Documents Data Protocol Specification Abstract In order for the UAV control system to report its current sensor and other flight parameters to the ground, a telemetry system is to be designed. The ground base station application must know how to bidirectional communicate with the UAV. The P10231 project aims to fulfill this need through a system of radios, software and a data protocol. This specification explains the data structure that will allow the UAV and base station to communicate. General Packet Structure All packets in the UAV data protocol follow a set structure to ensure uniformity, data integrity, radio efficiency and simple software design. The general packet structure is described in Table 1. The escape character (0x0A) is used to preface any payload byte with a value of 0x55. Index Value Description Details 0 0x55 Start of Packet (SOP) This is the directive that shows this is a new packet. 1 0x## Packet Type Identification byte that describes what kind of packet this is. The payload structure can be referenced using this byte. 2 0x## Length byte 1 The length of the packet is two bytes. This is the length of the packet payload.* The length does not include the SOP, ID, any escape characters, checksum or length bytes. 3 0x## Length byte N 0x## Payload This is the packet data that is being transferred. N+1 0x## Checksum The checksum is the summation of all bytes in the packet, rolling over 0xFF. Table 1: General Packet Structure MSD P10231 UAV Telemetry Detailed Design Review Document 12

13 Packet Types and Payload Descriptions This section focuses on the Packet Payload and its corresponding type byte. The following tables are descriptions of bytes 4...N in the general packet structure shown in Table 1. Packet Type 0x00: Instrumentation & Flight Data Packet Index Value Description Details 4 0x## Parameter 1 This is the first parameter in the packet payload. 5 0x## Parameter 1 6 0x## Parameter 2 7 0x## Parameter 2 8..N 0x## Parameter 3... Packet Type 0x01 Picture Command Packet Index Value Description Details 4 0x## Command* This byte instructs the UAV to take a picture. 0xFF: Take Picture * Purpose of picture command type allows for expandability of camera functionality. **This packet type requires an ACK response packet. If an ACK is not received within 1 second of initial command it must be resent. Packet Type 0x02: General Command Packet Index Value Description Details 4 0x## Device Address 1 Selects the device for corresponding value. 5 0x## Value 1 Value to be applied to the selected device. 6 0x## Device Address 2 7 0x## Value 2 8..N 0x## Device Address N 9..N 0x## Value N Packet Type 0x03: GPS Waypoint Packet MSD P10231 UAV Telemetry Detailed Design Review Document 13

14 Index Value Description Details 4 0x## Latitude 1 High byte of Latitude coordinate 5 0x## Latitude 0 Low byte of Latitude coordinate 6 0x## Longitude 1 High byte of Longitude coordinate 7 0x## Longitude 0 Low byte of Longitude coordinate 8 0x## Altitude 1 High byte of Altitude coordinate 9 0x## Altitude 0 Low byte of Altitude coordinate 10 0x## Speed Desired Speed to travel to coordinate Packet Type 0x04: ACK Packet Index Value Description Details 4 0x## Command Being Acknowledged This byte confirms the transaction of the command being returned Throughput Feasibility At a minimum, 20 variables must be sent from the UAV to the ground at a refresh rate of 10Hz. The following calculation explicitly shows that we are well within the radio s throughput. ((20 variables * 2 bytes each) + 5 byte header)*10 times /sec = 450bytes/sec 450 bytes/sec * 8 bits per byte = 3600 bps The radio can operate at either 9600 bps or bps which is much greater than our minimum of 3600 bps, therefore we are well within our data throughput constraints. MSD P10231 UAV Telemetry Detailed Design Review Document 14

15 P UAV Telemetry Detailed Design Review Documents Radio Specification Feasibility Analysis The radio selected is the Digi XTend-PKG 900 MHz. The XTend radios send serial data seamlessly from one point to the other. The radios operate on the 900MHz ISM (Industrial, Scientific, and Medical) band. The radios conform to the Federal Communications Commission's (FCC) Part 15 rules in order to operate without a license. The rule states that ``For systems using digitalmodulation in the MHz...'' up to 1 Watt of transmit power is allowed. The antenna selection depends on where the radio will be used. The UAV will have a smaller omnidirectional antenna and the base station will have a large, higher gain, omnidirectional one. In the rare case that the system is not able to meet the range requirements, a high gain directional antenna can be used on the ground. While a directional antenna is not ideal due to the narrow range of operation, it increases the range significantly. Table: Friis Equation Speed of Light Wavelength Frequency Power Received Power Transmitted Receiving Antenna Gain Transmitting Antenna Gain Distance Between Antennas MSD P10231 UAV Telemetry Detailed Design Review Document 15

16 In order to calculate the maximum range between the two radios, the basic form of the Friis transmission equation (2) is used. The simplified equation ignores the effects of mismatched impedance and polarization. Both antennas will be aligned most of the time, while the airplane is in level flight, the polarization will be equal. The radios are designed to drive a load, and both antennas are designed for. By using cables, or connecting the antenna directly to the radio, the mismatch in impedance is greatly reduced. The selected base antenna is 65" and dbi gain. The UAV antenna is 6" and dbi gain. In order to convert the gain from dbi to Watts, equation (4) is used. Equation (2) is rearranged to solve for the maximum range (3). The radio transmit power(pt), along with both antenna gains (Gr, Gt) are known. The wavelength can be calculated using equation. The final parameter needed is the received power. From the radio documentation, a minimum received power of -100dBm is needed to operate at full speed (115,200 bps). The radio can continue to operate with received power of -110dBm at a reduced data rate (9,600 bps). MSD P10231 UAV Telemetry Detailed Design Review Document 16

17 In order to convert the -100dBm power to Watts, equation is used. The calculation results in a range of about 1400 meters at full speed, with a reduced-speed range of about 4600 meters. Test Plan There are two main methods of testing the radios. The first method consists in confirming the transfer of serial data seamlessly. This can be done by connecting a computer to each radio and transmitting data using a simple terminal program. Characters will be sent from one computer to the other. The tester will confirm that the data is accurate. The radios will be tested at both available baud rates to confirm proper operation. The range testing is slightly more difficult. The test consists of setting one radio in a high place (hill or building) and a second radio on a mobile platform, such as a car. An automated program will send data continuously back and forth between the two devices while the vehicle moves away. This test will give us a better idea of the actual range of the radios. A more accurate, but much harder to perform, test consists of taking one of the radios on a small airplane and testing the range that way. This, while possible, could be expensive. MSD P10231 UAV Telemetry Detailed Design Review Document 17

18 P UAV Telemetry Detailed Design Review Documents Power Supply Specification Feasibility Analysis From our customer needs, we found that the entire flight time of the Airframe was to be at most forty minutes. It quickly became apparent that the limiting factor to meet this spec would be the operating current of our Radio unit. Looking over the documentation of the radio, it consumes the most current when in a transmission state at the one Watt operating mode. This maximum is.9 A or 900mA. In order to allow for the worst case scenario, it was assumed that the radio would be constantly transmitting, sustaining 900mA for the entirety of flight time. The time was then rounded up to sixty minutes in order allow more room for error and unknowns. The full calculation for the current requirements of the radio is shown below. Battery Current ma x Time hours=mah 900 ma x 1 Hour=900 mah This engineering specification dictates that our battery selection is limited to those that can supply at least 900mAH capacity. After considering a number of other desirable characteristics such as multiple flight times between recharges and ease of charging, a Lithium Polymer (LiPo) battery with 5500 mah capacity was selected. This battery can supply over six hours of flight time, as shown by the equation below mah/900 ma=6.11 hours This 6.11 hour time frame should allow for eight to nine flights of forty minutes before the battery needs to be recharged. The desired battery can be found at the following web address: Test Plan Looking at the specification sheet for the radio, it shows that the radio will take in 9V at 900 ma, which using ohm's law comes to 10 Ohms, shown below. 9V/900mA=10 ohms As a result of this an apparent test plan reveals itself. We could simply connect the battery across a ten ohm resistor and monitor its output voltage until it drops below the level that is accepted by the radio. This time duration would give us an approximate running time for the battery. If this time was under forty minutes, it would fail the test, but over forty minutes it would pass. MSD P10231 UAV Telemetry Detailed Design Review Document 18

19 P UAV Telemetry Detailed Design Review Documents Mounting System Architecture The housing must securely mount the system in UAV C and provide protection against shock caused by the planes landing. Specifications Engineering Specifications Marginal Value Ideal Value size (cm) 17.75x17.75x x15.25x15.25 Weight (kg) Max acceleration (m/s 2 ) Flight time (minutes) Design Specifications Associated spec Max Stress (kpa) 2.82E+05 Max acceleration Based on Ultimate stress of PCB Max tempradio (Celsius) 80 Flight time size (cm) 17.75x17.75x17.75 size weight (kg) 2.27 weight Based on operating conditions of radio Based on space allotted for system in UAV C Based on weight allotted for system in UAV C Feasibility Analysis In order to estimate the stress on the radio caused by landing the system was modeled as a mass spring system with some initial velocity in free vibration. MSD P10231 UAV Telemetry Detailed Design Review Document 19

20 For Springs in series: k1e=11310 N/mm; k2e=592 N/mm Equations of motion in matrix form: Initial Conditions: MSD P10231 UAV Telemetry Detailed Design Review Document 20

21 From here I decoupled the system and found the displacement of x1 using modal coordinates in Matlab. Matlab Code function [x1,x2]=displacement(m1,m2,k1,k2,x0,xd0) %setting up matrices from EOM M=[m1 0;0 m2]; K=[k1 -k1;-k1 (k1+k2)]; %Decoupling system Kt=M^-0.5*K*M^-0.5; %finding eigen values and eigen vectors [v,d]=eig(kt); %natural frequencies for two masses w2=d(1,1); w1=d(2,2); w=[w1 w2]; %setting up eigen vector matrix P=[v(1,1) v(2,1);v(1,2) v(2,2)]; %intial conditions of modal cordinates r0=p'*m^(-0.5)*x0 rd0=p'*m^(-0.5)*xd0 %displacement of modal coordinates for t=1:10001 for i=1:2 r(i,1)=sqrt(w(i)^2*r0(i,1)^2+rd0(i,1)^2)/w(i)*sin(w(i)*((t-1)/10000)+atan(w (i)*r0(i,1)/rd0(i,1))); end x=m^(0.5)*p*r; global x1 x2 x1(t)=x(1,1); x2(t)=x(2,1); end MSD P10231 UAV Telemetry Detailed Design Review Document 21

22 (displacement at the radio determined by above function) Relating the displacement back to the stress on the radio caused by the UAV landing we can see that this design provides more than enough cushioning to prevent damage to the system during landings. Overheating The heat generated by the system in 45 minutes = 2700 joules Mass of the radio = 0.2 kg Assuming a very hot day (100 F/37.8C) the temperature in the radio would have to rise about 42 degrees C in order to overheat. For the radio to overheat in a perfectly insulated system it would need to have a specific heat less than 320 J/kg-K. So our radio should not have a problem with overheating for the desired flight time. Size The planned dimensions of our system are 15.25x15.25x12.4 so we are well within our size constraints. MSD P10231 UAV Telemetry Detailed Design Review Document 22

23 Weight The estimated weight of the system is 1.13 kg. Test plan To ensure the radio will not overheat while inside of the housing we will run the radio and battery we plan on using in a situation that is more insolated than the housing and monitor the temperature closely if in this worst case scenario the radio does not overheat we can be pretty certain the radio will not overheat in our system. Mounting System Engineering Drawings (Side view) MSD P10231 UAV Telemetry Detailed Design Review Document 23

24 (top view) MSD P10231 UAV Telemetry Detailed Design Review Document 24

25 MSD P10231 UAV Telemetry Detailed Design Review Document 25

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

BRB900 GPS Telemetry System August 2013 Version 0.06

BRB900 GPS Telemetry System August 2013 Version 0.06 BRB900 GPS Telemetry System August 2013 Version 0.06 As of January 2013, a new model of the BRB900 has been introduced. The key differences are listed below. 1. U-blox GPS Chipset: The Trimble Lassen IQ

More information

Debugging a Boundary-Scan I 2 C Script Test with the BusPro - I and I2C Exerciser Software: A Case Study

Debugging a Boundary-Scan I 2 C Script Test with the BusPro - I and I2C Exerciser Software: A Case Study Debugging a Boundary-Scan I 2 C Script Test with the BusPro - I and I2C Exerciser Software: A Case Study Overview When developing and debugging I 2 C based hardware and software, it is extremely helpful

More information

FLCS V2.1. AHRS, Autopilot, Gyro Stabilized Gimbals Control, Ground Control Station

FLCS V2.1. AHRS, Autopilot, Gyro Stabilized Gimbals Control, Ground Control Station AHRS, Autopilot, Gyro Stabilized Gimbals Control, Ground Control Station The platform provides a high performance basis for electromechanical system control. Originally designed for autonomous aerial vehicle

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

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

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

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

IT-24 RigExpert. 2.4 GHz ISM Band Universal Tester. User s manual

IT-24 RigExpert. 2.4 GHz ISM Band Universal Tester. User s manual IT-24 RigExpert 2.4 GHz ISM Band Universal Tester User s manual Table of contents 1. Description 2. Specifications 3. Using the tester 3.1. Before you start 3.2. Turning the tester on and off 3.3. Main

More information

Emergency Locator Signal Detection and Geolocation Small Satellite Constellation Feasibility Study

Emergency Locator Signal Detection and Geolocation Small Satellite Constellation Feasibility Study Emergency Locator Signal Detection and Geolocation Small Satellite Constellation Feasibility Study Authors: Adam Gunderson, Celena Byers, David Klumpar Background Aircraft Emergency Locator Transmitters

More information

KySat-2: Status Report and Overview of C&DH and Communications Systems Design

KySat-2: Status Report and Overview of C&DH and Communications Systems Design KySat-2: Status Report and Overview of C&DH and Communications Systems Design Jason Rexroat University of Kentucky Kevin Brown Morehead State University Twyman Clements Kentucky Space LLC 1 Overview Mission

More information

GPS&GPRS TRACKING SYSTEM GT3100

GPS&GPRS TRACKING SYSTEM GT3100 GPS&GPRS TRACKING SYSTEM GT3100 OPERATION/INSTALLER MANUAL REV: 2.0 (GT3100-special, V1.51, GT500-SIM340.C1) I. INTRODUCTION PORTMAN GPS GPRS tracking system GT3100 utilize the GPS tracking function and

More information

Brian Hanna Meteor IP 2007 Microcontroller

Brian Hanna Meteor IP 2007 Microcontroller MSP430 Overview: The purpose of the microcontroller is to execute a series of commands in a loop while waiting for commands from ground control to do otherwise. While it has not received a command it populates

More information

G3P-R232. User Manual. Release. 2.06

G3P-R232. User Manual. Release. 2.06 G3P-R232 User Manual Release. 2.06 1 INDEX 1. RELEASE HISTORY... 3 1.1. Release 1.01... 3 1.2. Release 2.01... 3 1.3. Release 2.02... 3 1.4. Release 2.03... 3 1.5. Release 2.04... 3 1.6. Release 2.05...

More information

Pitlab & Zbig FPV System Version 2.60a. Pitlab&Zbig OSD. New functions and changes in v2.60. New functions and changes since version 2.

Pitlab & Zbig FPV System Version 2.60a. Pitlab&Zbig OSD. New functions and changes in v2.60. New functions and changes since version 2. Pitlab & Zbig FPV System Version 2.60a since version 2.50a Pitlab&Zbig OSD in v2.60a Added support for new Pitlab airspeed sensor. Sensor is connected to yellow OSD socket and is configured in similar

More information

UCISAT-1. Current Completed Model. Former Manufactured Prototype

UCISAT-1. Current Completed Model. Former Manufactured Prototype UCISAT-1 2 Current Completed Model Former Manufactured Prototype Main Mission Objectives 3 Primary Mission Objective Capture an image of Earth from LEO and transmit it to the K6UCI Ground Station on the

More information

Wireless Dual Discrete Input Transmitter Series XYR 5000, Model WW59x Specifications - Americas

Wireless Dual Discrete Input Transmitter Series XYR 5000, Model WW59x Specifications - Americas Wireless Dual Discrete Input Transmitter Series XYR 5000, Model WW59x Specifications - Americas 34-XY-03-12 February 2008 Function The WW59x Dual Discrete Input Field Transmitter is part of the XYR 5000

More information

Project Name: Tail-Gator

Project Name: Tail-Gator EEL 4924 Electrical Engineering Design (Senior Design) Final Report 22 April 2013 Project Name: Tail-Gator Team Name: Eye in the Sky Team Members: Name: Anthony Incardona Name: Fredrik Womack Page 2/14

More information

900 MHz. Frequency Hopping RS-485 Master/Slave auto-sensing radio interface.

900 MHz. Frequency Hopping RS-485 Master/Slave auto-sensing radio interface. MDR210A-485 900 MHz. Frequency Hopping RS-485 Master/Slave auto-sensing radio interface. Black Box Corporation Lawrence, PA - http://www.blackbox.com - Ph 877-877-BBOX - Fax 724-746-0746 Table of Contents

More information

Wireless Communication in Embedded System. Prof. Prabhat Ranjan

Wireless Communication in Embedded System. Prof. Prabhat Ranjan Wireless Communication in Embedded System Prof. Prabhat Ranjan Material based on White papers from www.radiotronix.com Networked embedded devices In the past embedded devices were standalone Typically

More information

SPECIAL SPECIFICATION 6744 Spread Spectrum Radio

SPECIAL SPECIFICATION 6744 Spread Spectrum Radio 2004 Specifications CSJ 0924-06-244 SPECIAL SPECIFICATION 6744 Spread Spectrum Radio 1. Description. Furnish and install spread spectrum radio system. 2. Materials. Supply complete manufacturer specifications

More information

Remote Switching. Remote Gates. Paging.

Remote Switching. Remote Gates. Paging. Features Miniature RF Receiver and Decoder. Advanced Keeloq Decoding AM Range up to 100 Metres FM Range up to 150 Metres Easy Learn Transmitter Feature. Outputs, Momentary or Latching & Serial Data. Direct

More information

How to Test A-GPS Capable Cellular Devices and Why Testing is Required

How to Test A-GPS Capable Cellular Devices and Why Testing is Required How to Test A-GPS Capable Cellular Devices and Why Testing is Required Presented by: Agilent Technologies Page 1 Agenda Introduction to A-GPS Why Test A-GPS Performance? Types of A-GPS Testing Page 2 Origins

More information

U-Pilot can fly the aircraft using waypoint navigation, even when the GPS signal has been lost by using dead-reckoning navigation. Can also orbit arou

U-Pilot can fly the aircraft using waypoint navigation, even when the GPS signal has been lost by using dead-reckoning navigation. Can also orbit arou We offer a complete solution for a user that need to put a payload in a advanced position at low cost completely designed by the Spanish company Airelectronics. Using a standard computer, the user can

More information

VCU Skyline. Team Members: Project Advisor: Dr. Robert Klenke. Last Modified May 13, 2004 VCU SKYLINE 1

VCU Skyline. Team Members: Project Advisor: Dr. Robert Klenke. Last Modified May 13, 2004 VCU SKYLINE 1 VCU Skyline Last Modified May 13, 2004 Team Members: Abhishek Handa Kevin Van Brittiany Wynne Jeffrey E. Quiñones Project Advisor: Dr. Robert Klenke VCU SKYLINE 1 * Table of Contents I. Abstract... 3 II.

More information

TRXQ1 RXQ1 FM NARROW BAND TRANSCEIVERS. RXQ1 Version. Applications. TRXQ1 Version

TRXQ1 RXQ1 FM NARROW BAND TRANSCEIVERS. RXQ1 Version. Applications. TRXQ1 Version RF Transceiver or Intelligent Modem Versions Host Data Rate upto 19,200 Baud Data Rates to 20 K baud. 2 Selectable RF Channels Narrowband Crystal Controlled Optimal Range 200m Supply Voltage 3-5V Very

More information

Remote Switching. Remote Gates. Paging.

Remote Switching. Remote Gates. Paging. Features Miniature RF Receiver and Decoder. Advanced Keeloq Decoding Advanced Laser Trimmed Ceramic Module AM Range up to 100 Metres FM Range up to 150 Metres Easy Learn Transmitter Feature. Outputs, Momentary

More information

5.9 GHz V2X Modem Performance Challenges with Vehicle Integration

5.9 GHz V2X Modem Performance Challenges with Vehicle Integration 5.9 GHz V2X Modem Performance Challenges with Vehicle Integration October 15th, 2014 Background V2V DSRC Why do the research? Based on 802.11p MAC PHY ad-hoc network topology at 5.9 GHz. Effective Isotropic

More information

The PmodIA is an impedance analyzer built around the Analog Devices AD bit Impedance Converter Network Analyzer.

The PmodIA is an impedance analyzer built around the Analog Devices AD bit Impedance Converter Network Analyzer. 1300 Henley Court Pullman, WA 99163 509.334.6306 www.digilentinc.com PmodIA Reference Manual Revised April 15, 2016 This manual applies to the PmodIA rev. A Overview The PmodIA is an impedance analyzer

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

3V TRANSCEIVER 2.4GHz BAND

3V TRANSCEIVER 2.4GHz BAND 3V TRANSCEIVER 2.4GHz BAND Rev. 2 Code: 32001271 QUICK DESCRIPTION: IEEE 802.15.4 compliant transceiver operating in the 2.4 GHz ISM band with extremely compact dimensions. The module operates as an independent

More information

Initial Project and Group Identification Document September 15, Sense Glove. Now you really do have the power in your hands!

Initial Project and Group Identification Document September 15, Sense Glove. Now you really do have the power in your hands! Initial Project and Group Identification Document September 15, 2015 Sense Glove Now you really do have the power in your hands! Department of Electrical Engineering and Computer Science University of

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

Master Op-Doc/Test Plan

Master Op-Doc/Test Plan Power Supply Master Op-Doc/Test Plan Define Engineering Specs Establish battery life Establish battery technology Establish battery size Establish number of batteries Establish weight of batteries Establish

More information

The brain for the plane is the Airelectronics' U-Pilot flight control system, which is embedded inside the plane's fuselage, leaving a lot of space on

The brain for the plane is the Airelectronics' U-Pilot flight control system, which is embedded inside the plane's fuselage, leaving a lot of space on Airelectronics has developed a new complete solution meeting the needs of the farming science. The completely test Skywalkerplatform has been equipped with both thermal and multispectral cameras to measure

More information

RTKWARE UBR1 Technical Datasheet. ver1.1 (29/04/2015)

RTKWARE UBR1 Technical Datasheet. ver1.1 (29/04/2015) RTKWARE UBR1 Technical Datasheet ver1.1 (29/04/2015) Table of Contents Table of Contents... 2 Overview... 3 Key-Features... 3 Applications... 3 Functional diagrams... 4 Power Distribution... 4 Data...

More information

Wireless Stepwise Dead Reckoning PDR with oblu

Wireless Stepwise Dead Reckoning PDR with oblu Application Note Wireless Stepwise Dead Reckoning PDR with oblu Revision 1.0 R&D Centre: GT Silicon Pvt Ltd D-201, Type1, VH Extension, IIT Kanpur Kanpur (UP), India, PIN 208016 Tel: +91 512 259 5333 Fax:

More information

BMS BMU Vehicle Communications Protocol

BMS BMU Vehicle Communications Protocol BMS Communications Protocol 2013 Tritium Pty Ltd Brisbane, Australia http://www.tritium.com.au 1 of 11 TABLE OF CONTENTS 1 Introduction...3 2 Overview...3 3 allocations...4 4 Data Format...4 5 CAN packet

More information

GPS System Design and Control Modeling. Chua Shyan Jin, Ronald. Assoc. Prof Gerard Leng. Aeronautical Engineering Group, NUS

GPS System Design and Control Modeling. Chua Shyan Jin, Ronald. Assoc. Prof Gerard Leng. Aeronautical Engineering Group, NUS GPS System Design and Control Modeling Chua Shyan Jin, Ronald Assoc. Prof Gerard Leng Aeronautical Engineering Group, NUS Abstract A GPS system for the autonomous navigation and surveillance of an airship

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

Riza Muhida. Presented at he 22nd Session of the Asia Pacific Regional Space Agency Forum (APRSAF 22), Bali, Indonesia, December 1 4, 2015

Riza Muhida. Presented at he 22nd Session of the Asia Pacific Regional Space Agency Forum (APRSAF 22), Bali, Indonesia, December 1 4, 2015 Riza Muhida Presented at he 22nd Session of the Asia Pacific Regional Space Agency Forum (APRSAF 22), Bali, Indonesia, December 1 4, 2015 1 Presentation Outline Abstract Background Objective Project Scope

More information

RF RECEIVER DECODER RDF1. Features Complete FM Receiver and Decoder. Applications

RF RECEIVER DECODER RDF1. Features Complete FM Receiver and Decoder. Applications Features Complete FM Receiver and Decoder. Small Form Factor Range up to 200 Metres* Easy Learn Transmitter Feature. Learns 40 transmitter Switches 4 Digital and 1 Serial Data outputs Outputs, Momentary

More information

RFD900x Radio Modem Data Sheet MHz frequency band

RFD900x Radio Modem Data Sheet MHz frequency band RFD900x Radio Modem Data Sheet 902-928MHz frequency band Product Specifications and Performance Flash Programmer User Manual Features Out of the box RF communications. Air data rate speeds of up to 750kbps

More information

ABSTRACT INTRODUCTION

ABSTRACT INTRODUCTION COMPASS-1 PICOSATELLITE: STRUCTURES & MECHANISMS Marco Hammer, Robert Klotz, Ali Aydinlioglu Astronautical Department University of Applied Sciences Aachen Hohenstaufenallee 6, 52064 Aachen, Germany Phone:

More information

DUAL BAND FM WIRELESS TRANSCEIVER RXQ1. Applications

DUAL BAND FM WIRELESS TRANSCEIVER RXQ1. Applications FM Radio Transmitter & Receiver Low Profile Ceramic DIL Package Data Rates To 20 Kbits/S 433.92 or 433.33MHz Operation 2 Selectable Channels Narrowband Crystal Controlled Optimal Range 200m Supply Voltage

More information

CDR-915 Data Radio Module INTEGRATOR S GUIDE

CDR-915 Data Radio Module INTEGRATOR S GUIDE CDR-915 Data Radio Module Coyote DataCom, Inc. 3941 Park Drive, Suite 20-266, El Dorado Hills, CA 95762 Tel. 916-933-9981 Fax 916-913-0951 www.coyotedatacom.com TABLE OF CONTENTS General Information and

More information

University. Federal University of Santa Catarina (UFSC) Florianópolis/SC - Brazil. Brazil. Embedded Systems Group (UFSC)

University. Federal University of Santa Catarina (UFSC) Florianópolis/SC - Brazil. Brazil. Embedded Systems Group (UFSC) University 1 Federal University of Santa Catarina (UFSC) Florianópolis/SC - Brazil Brazil Agenda 2 Partnership Introduction Subsystems Payload Communication System Power System On-Board Computer Attitude

More information

SATELLITE MONITORING OF REMOTE PV-SYSTEMS

SATELLITE MONITORING OF REMOTE PV-SYSTEMS SATELLITE MONITORING OF REMOTE PV-SYSTEMS Stefan Krauter, Thomas Depping UFRJ-COPPE-EE, PV-Labs, C. P. 68504, Rio de Janeiro 21945-970 RJ, BRAZIL Tel: +55-21-2562-8032, Fax: +55-21-22906626, E-mail: krauter@coe.ufrj.br

More information

DragonLink Advanced Transmitter

DragonLink Advanced Transmitter DragonLink Advanced Transmitter A quick introduction - to a new a world of possibilities October 29, 2015 Written by Dennis Frie Contents 1 Disclaimer and notes for early release 3 2 Introduction 4 3 The

More information

Project METEOR Instrumentation Platform P08101

Project METEOR Instrumentation Platform P08101 Project METEOR 07-08 Instrumentation Platform P08101 Team Members (from left to right): Christopher J. Fisher (Project Manager), David J. Semione, Gabriela Eneriz Pereira Nunes, Brian A. Hanna, Sergey

More information

ROM/UDF CPU I/O I/O I/O RAM

ROM/UDF CPU I/O I/O I/O RAM DATA BUSSES INTRODUCTION The avionics systems on aircraft frequently contain general purpose computer components which perform certain processing functions, then relay this information to other systems.

More information

Frequency Hopping Pattern Recognition Algorithms for Wireless Sensor Networks

Frequency Hopping Pattern Recognition Algorithms for Wireless Sensor Networks Frequency Hopping Pattern Recognition Algorithms for Wireless Sensor Networks Min Song, Trent Allison Department of Electrical and Computer Engineering Old Dominion University Norfolk, VA 23529, USA Abstract

More information

Hopper Spacecraft Simulator. Billy Hau and Brian Wisniewski

Hopper Spacecraft Simulator. Billy Hau and Brian Wisniewski Hopper Spacecraft Simulator Billy Hau and Brian Wisniewski Agenda Introduction Flight Dynamics Hardware Design Avionics Control System Future Works Introduction Mission Overview Collaboration with Penn

More information

Recent Progress in the Development of On-Board Electronics for Micro Air Vehicles

Recent Progress in the Development of On-Board Electronics for Micro Air Vehicles Recent Progress in the Development of On-Board Electronics for Micro Air Vehicles Jason Plew Jason Grzywna M. C. Nechyba Jason@mil.ufl.edu number9@mil.ufl.edu Nechyba@mil.ufl.edu Machine Intelligence Lab

More information

High power radio transmission module MR03 type

High power radio transmission module MR03 type High power radio transmission module MR03 type User s manual CONTENTS 1. APPLICATION...3 2. MR03 MODULE SET...4 3. INSTALLATION...4 3.1 Module assembly...4 3.2 Connection diagrams...5 3.3 Connection way

More information

AstroDev Helium Radios

AstroDev Helium Radios AstroDev Helium Radios PRODUCT OVERVIEW Overview The Helium radio product line provides a CubeSat Kitcompatible communication system for extreme environment applications. Helium radios feature variable

More information

Classical Control Based Autopilot Design Using PC/104

Classical Control Based Autopilot Design Using PC/104 Classical Control Based Autopilot Design Using PC/104 Mohammed A. Elsadig, Alneelain University, Dr. Mohammed A. Hussien, Alneelain University. Abstract Many recent papers have been written in unmanned

More information

1: Introduction : Caution : Tips for Reading this Manual : Preface : System Highlights : Receiver

1: Introduction : Caution : Tips for Reading this Manual : Preface : System Highlights : Receiver 1: Introduction....1 1 2: Caution.... 2 2 3: Tips for Reading this Manual....3 3 4: Preface....4 4 5: System Highlights....6 6 6: Receiver..7 7 6.1: Specifications......7 7 6.2: Receiver Operation... 7

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

Cost efficient design Operates in full sunlight Low power consumption Wide field of view Small footprint Simple serial connectivity Long Range

Cost efficient design Operates in full sunlight Low power consumption Wide field of view Small footprint Simple serial connectivity Long Range Cost efficient design Operates in full sunlight Low power consumption Wide field of view Small footprint Simple serial connectivity Long Range sweep v1.0 CAUTION This device contains a component which

More information

medlab Two Channel Invasive Blood Pressure OEM board EG 02000

medlab Two Channel Invasive Blood Pressure OEM board EG 02000 medlab Two Channel Invasive Blood Pressure OEM board EG 02000 Technical Manual Copyright Medlab 2003-2014 1 Version 2.02 01.04.2014 Contents: Mechanical dimensions, overview 3 Specifications 5 Connector

More information

HASP Payload Specification and Integration Plan

HASP Payload Specification and Integration Plan Payload Title: Thermal Energy Control & Particle Air Filter System (TECPAFS) Payload Class: Small Large Payload ID: 09 Institution: Contact Name: Inter-American University of Puerto Rico Emmanuel M. Torres

More information

Technical description of the fuel tank sensor "Escort TD-500"

Technical description of the fuel tank sensor Escort TD-500 Technical description of the fuel tank sensor "Escort TD-500" Kazan, 2016 1 Table of contents 1. General info..3 2. Technical characteristic.. 3 3. Operating mode. 3 3.1. Mode RS-485 3 3.2. Frequency mode

More information

Application Note AN 102: Arduino I2C Interface to K 30 Sensor

Application Note AN 102: Arduino I2C Interface to K 30 Sensor Application Note AN 102: Arduino I2C Interface to K 30 Sensor Introduction The Arduino UNO, MEGA 1280 or MEGA 2560 are ideal microcontrollers for operating SenseAir s K 30 CO2 sensor. The connection to

More information

High Level Design Group: RF Detection Group Members: Joey Py e, André Magill, Shane Ryan, John Docalovich, Zack Bennett Advisor: Dr.

High Level Design Group: RF Detection Group Members: Joey Py e, André Magill, Shane Ryan, John Docalovich, Zack Bennett Advisor: Dr. Group: RF Detection Group Members: Joey Py e, André Magill, Shane Ryan, John Docalovich, Zack Bennett Advisor: Dr. Jonathan Chisum Table of Contents 1 Introduction 3 2 Problem Statement and Proposed Solution

More information

Design of a Remote-Cockpit for small Aerospace Vehicles

Design of a Remote-Cockpit for small Aerospace Vehicles Design of a Remote-Cockpit for small Aerospace Vehicles Muhammad Faisal, Atheel Redah, Sergio Montenegro Universität Würzburg Informatik VIII, Josef-Martin Weg 52, 97074 Würzburg, Germany Phone: +49 30

More information

Improvements to an Autonomous Unmanned Aerial Reconnaissance System

Improvements to an Autonomous Unmanned Aerial Reconnaissance System Improvements to an Autonomous Unmanned Aerial Reconnaissance System Andrew Bourassa, Marcus Jones, James Roberson, Matthew Ryan, and Andrew Spear Faculty Advisor: Dr. Robert Klenke June 1, 2006 Electrical

More information

Design Characteristics. FlexDrive II. Series

Design Characteristics. FlexDrive II. Series AC AC DC DC FlexDrive II Series Design Characteristics Brushless AC Servo Baldor s FlexDrive II series are designed to provide reliable and durable operation. Options are available to operate either resolver

More information

2320 cousteau court

2320 cousteau court Technical Brief AN139 Rev C22 2320 cousteau court 1-760-444-5995 sales@raveon.com www.raveon.com RV-M7 GX with TDMA Data By John Sonnenberg Raveon Technologies Corporation Overview The RV-M7 GX radio modem

More information

Building an Open Source Telemetry Radio. Andrew Tridgell (VK1FAAH)

Building an Open Source Telemetry Radio. Andrew Tridgell (VK1FAAH) Building an Open Source Telemetry Radio Andrew Tridgell (VK1FAAH) Communicating with UAVs Telemetry for UAV ground station comms real-time flight data reliable control and override low bandwidth (typically

More information

GLOBALSAT GPS Engine Board

GLOBALSAT GPS Engine Board GLOBALSAT GPS Engine Board Hardware Data Sheet Product No : MT-5531 Version 0.1 Globalsat Technology Corporation 16F., No. 186, Jian-Yi Road, Chung-Ho City, Taipei Hsien 235, Taiwan Tel: 886-2-8226-3799

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

Hardware in the Loop Simulation for Unmanned Aerial Vehicles

Hardware in the Loop Simulation for Unmanned Aerial Vehicles NATIONAL 1 AEROSPACE LABORATORIES BANGALORE-560 017 INDIA CSIR-NAL Hardware in the Loop Simulation for Unmanned Aerial Vehicles Shikha Jain Kamali C Scientist, Flight Mechanics and Control Division National

More information

HASP Payload Specification and Integration Plan

HASP Payload Specification and Integration Plan Payload Title: High Altitude Tracking Solar Survey (HATS 2.0) Payload Class: Small Large (circle one) Payload ID: 09 Institution: Contact Name: Arizona State University Elizabeth Dyer Contact Phone: 6025702298

More information

Mercury technical manual

Mercury technical manual v.1 Mercury technical manual September 2017 1 Mercury technical manual v.1 Mercury technical manual 1. Introduction 2. Connection details 2.1 Pin assignments 2.2 Connecting multiple units 2.3 Mercury Link

More information

Digital Television Lecture 5

Digital Television Lecture 5 Digital Television Lecture 5 Forward Error Correction (FEC) Åbo Akademi University Domkyrkotorget 5 Åbo 8.4. Error Correction in Transmissions Need for error correction in transmissions Loss of data during

More information

Sigfox RF & Protocol Test Plan for RC2-UDL-ENC

Sigfox RF & Protocol Test Plan for RC2-UDL-ENC Version 380 September 14, 2018 Sigfox RF & Protocol Test Plan for RC2-UDL-ENC Public Use Note: Only the last version of this document available on the Sigfox web sites is official and applicable This document

More information

AN Wireless analog data acquisition system with 4-20 ma (current loop) inputs and built-in data logger

AN Wireless analog data acquisition system with 4-20 ma (current loop) inputs and built-in data logger Wireless analog data acquisition system with 4-20 ma (current loop) inputs and built-in data logger www.beanair.com Product Video VIDE O OVERVIEW Wireless data logger with 4-20mA current loop inputs (4

More information

PAYLOAD DESIGN FOR A MICROSATELLITE II. Aukai Kent Department of Mechanical Engineering University of Hawai i at Mānoa Honolulu, HI ABSTRACT

PAYLOAD DESIGN FOR A MICROSATELLITE II. Aukai Kent Department of Mechanical Engineering University of Hawai i at Mānoa Honolulu, HI ABSTRACT PAYLOAD DESIGN FOR A MICROSATELLITE II Aukai Kent Department of Mechanical Engineering University of Hawai i at Mānoa Honolulu, HI 96822 ABSTRACT Conventional satellites are extremely large, highly expensive,

More information

PRODUCT SPECIFICATION AND MODEL SELECTION GUIDE

PRODUCT SPECIFICATION AND MODEL SELECTION GUIDE XYR 5000 Wireless Temperature Transmitters WT530 34-XY-03-02 09/2006 PRODUCT SPECIFICATION AND MODEL SELECTION GUIDE Function The WT530 Temperature Transmitter is part of the XYR 5000 family of wireless

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

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

Solinst Remote Radio Link (RRL Gold) User Guide

Solinst Remote Radio Link (RRL Gold) User Guide Solinst Remote Radio Link (RRL Gold) User Guide Version 1.4.0 March 21, 2016 2016 Solinst Canada Ltd. All rights reserved. Printed in Canada. Solinst and Levelogger are registered trademarks of Solinst

More information

Cost efficient design Operates in full sunlight Low power consumption Wide field of view Small footprint Simple serial connectivity Long Range

Cost efficient design Operates in full sunlight Low power consumption Wide field of view Small footprint Simple serial connectivity Long Range Cost efficient design Operates in full sunlight Low power consumption Wide field of view Small footprint Simple serial connectivity Long Range sweep v1.0 CAUTION This device contains a component which

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

Specification. Patent Pending. Description : AccuraUWB Flex Series 3~10GHz Ultra-Wide Band (UWB) Flex Antenna with 100mm 1.

Specification. Patent Pending. Description : AccuraUWB Flex Series 3~10GHz Ultra-Wide Band (UWB) Flex Antenna with 100mm 1. Specification Patent Pending Part No. : FXUWB10.07.0100C Description : AccuraUWB Flex Series 3~10GHz Ultra-Wide Band (UWB) Flex Antenna with 100mm 1.37mm IPEX MHFHT Features : Flexible UWB Antenna Mounting

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

ARDUINO BASED CALIBRATION OF AN INERTIAL SENSOR IN VIEW OF A GNSS/IMU INTEGRATION

ARDUINO BASED CALIBRATION OF AN INERTIAL SENSOR IN VIEW OF A GNSS/IMU INTEGRATION Journal of Young Scientist, Volume IV, 2016 ISSN 2344-1283; ISSN CD-ROM 2344-1291; ISSN Online 2344-1305; ISSN-L 2344 1283 ARDUINO BASED CALIBRATION OF AN INERTIAL SENSOR IN VIEW OF A GNSS/IMU INTEGRATION

More information

WiMedia Interoperability and Beaconing Protocol

WiMedia Interoperability and Beaconing Protocol and Beaconing Protocol Mike Micheletti UWB & Wireless USB Product Manager LeCroy Protocol Solutions Group T he WiMedia Alliance s ultra wideband wireless architecture is designed to handle multiple protocols

More information

A Telemetry Antenna System for Unmanned Air Vehicles

A Telemetry Antenna System for Unmanned Air Vehicles Progress In Electromagnetics Research Symposium Proceedings, Cambridge, USA, July 8, 00 6 A Telemetry Antenna System for Unmanned Air Vehicles M. Dogan, and F. Ustuner TUBITAK, UEKAE, Kocaeli, Turkey Sabanci

More information

Wireless Temperature Transmitters Series XYR 5000, Model WT5xx/WT5xxR/WT5xxT Specifications - Americas

Wireless Temperature Transmitters Series XYR 5000, Model WT5xx/WT5xxR/WT5xxT Specifications - Americas Wireless Temperature Transmitters Series XYR 5000, Model WT5xx/WT5xxR/WT5xxT Specifications - Americas 34-XY-03-02 February 2008 Function The WT5xx Temperature Transmitter is part of the XYR 5000 family

More information

Wireless Smart Metering LAN-WMBUS-G. Wireless MBUS, high performance Temperature, Humidity and Pulse counting device.

Wireless Smart Metering LAN-WMBUS-G. Wireless MBUS, high performance Temperature, Humidity and Pulse counting device. Wireless Smart Metering LAN-WMBUS-G Wireless MBUS, high performance Temperature, Humidity and Pulse counting device. The LAN-WMBUS-G-T(E)/(H)-(P) is a temperature/humidity sensor and pulse counter. It

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

Medlab GmbH EG04000 User Manual. medlab. Four Lead ECG OEM board EG Technical Manual. Copyright Medlab Version Version 1.

Medlab GmbH EG04000 User Manual. medlab. Four Lead ECG OEM board EG Technical Manual. Copyright Medlab Version Version 1. Medlab GmbH EG04000 User Manual medlab Four Lead ECG OEM board EG04000 Technical Manual Copyright Medlab 2014 1 Medlab GmbH EG04000 User Manual Medlab medizinische Diagnosegeräte GmbH Helmholtzstrasse

More information

A LARGE COMBINATION HORIZONTAL AND VERTICAL NEAR FIELD MEASUREMENT FACILITY FOR SATELLITE ANTENNA CHARACTERIZATION

A LARGE COMBINATION HORIZONTAL AND VERTICAL NEAR FIELD MEASUREMENT FACILITY FOR SATELLITE ANTENNA CHARACTERIZATION A LARGE COMBINATION HORIZONTAL AND VERTICAL NEAR FIELD MEASUREMENT FACILITY FOR SATELLITE ANTENNA CHARACTERIZATION John Demas Nearfield Systems Inc. 1330 E. 223rd Street Bldg. 524 Carson, CA 90745 USA

More information

EG medlab. Three Lead ECG OEM board. Version Technical Manual. Medlab GmbH Three Lead ECG OEM Module EG01010 User Manual

EG medlab. Three Lead ECG OEM board. Version Technical Manual. Medlab GmbH Three Lead ECG OEM Module EG01010 User Manual Medlab GmbH Three Lead ECG OEM Module EG01010 User Manual medlab Three Lead ECG OEM board EG01010 Technical Manual Copyright Medlab 2008-2016 Version 1.03 1 Version 1.03 28.04.2016 Medlab GmbH Three Lead

More information

SECTION 8 Communications Characteristics (Reference)

SECTION 8 Communications Characteristics (Reference) SECTION 8 Communications Characteristics (Reference) This section provides V700 communications characteristics such as communications ranges and communications times. 8-1 Maximum Communications Distance.........................................

More information

HF Transceiver Codan NGT SR. HF Transceiver Codan NGT SR

HF Transceiver Codan NGT SR. HF Transceiver Codan NGT SR HF Transceiver Codan NGT SR HF Transceiver Codan NGT SR Deliveries of this equipment are stopped HF Emetteurrécepteur Codan NGT SR (86 kb) HF Transceiver Codan NGT SR The NGT SR is a comprehensive solution

More information

RM24100A. Introduction. 1 Features. 2.4GHz 100mW RS232 / RS485 / RS422 DSSS Radio Modem (IEEE compliant) Operating Manual English 1.

RM24100A. Introduction. 1 Features. 2.4GHz 100mW RS232 / RS485 / RS422 DSSS Radio Modem (IEEE compliant) Operating Manual English 1. RM24100A 2.4GHz 100mW RS232 / RS485 / RS422 DSSS Radio Modem (IEEE 802.15.4 compliant) Operating Manual English 1.03 Introduction The RM24100A radio modem acts as a wireless serial cable replacement and

More information

KAPPA M. Radio Modem Module. Features. Applications

KAPPA M. Radio Modem Module. Features. Applications KAPPA M Radio Modem Module Features Intelligent RF modem module Serial data interface with handshake Host data rates up to 57,600 baud RF Data Rates to 115Kbps Range up to 500m Minimal external components

More information