P2-AHU Manual v1.0. P2-AHU Manual. (T-Module) - 1 -

Size: px
Start display at page:

Download "P2-AHU Manual v1.0. P2-AHU Manual. (T-Module) - 1 -"

Transcription

1 P2-AHU Manual (T-Module) - 1 -

2 1. Overview - MEMS sensor based AHRS(Attitude & Heading Reference) micromodule - Acceleration 3 axis(x, Y, Z), magnetometer 3 axis(x, Y, Z) data provided - Angle 3 axis(roll, Pitch, Yaw) data provided - Acceleration, magnetometer calibration certificate provided - Module temperature( C) data provided - Communication method: Serial UART(TTL 3.3V Level) - Communication speed : bps - Attachable to a breadboard and perfboard with a pin header(2.54mm) 2. Specification Classification Specification Digital Interface Serial UART (TTL 3.3 Level) Operating Voltage DC 5 V Power consumption 400mW (nominal) Dimensions(W x L x H) 31 x 20 x 3(mm) Weight < 3.5 g Input Range Acceleration(1) ± 2 g (Standard) Magnetic(1) ± 130 ut (Standard) Static Accuracy Roll, Pitch < 2 deg Heading(2) < 4 deg Dynamic Accuracy(3) 8 deg RMS Angular Resolution 0.2 deg Update Rate 100 Hz (1) Can be changed by ordering option (2) In homogeneous magnetic environment (3) Under condition of stabilized * Noted specification can be changed without notice - 2 -

3 3. Dimension (Unit : mm) 4. Pin Out Description Pin No. Name Function 1 VCC Power supply (DC 5V) 2 RX Received Data 3 TX Transfer Data 4 GND Ground 5 Not Connect Pin 6 N/C This pin is not for use. 7 Advise not to connect to another pin

4 5. Module Notation 6. Application Circuit A. P2-AHU to MCU * P2-AHU Sensor data is retrieved to User MCU * Sensor s TX port is connected to RX port of User MCU B. P2-AHU to PC (USB Port) * P2-AHU Sensor data is retrieved to User PC * UART2USB connects P2-AHU and PC(USB Port) * UART2RS-232 Converter is used for RS-232 Port - 4 -

5 7. Communication A. Serial Interface Setting (UART TTL 3.3 Level) Baud rate 115,200 bps Data bits 8 bit Parity bits None Stop bits 1 Flow Control None B. Output Data Unit Value Unit Acceleration g Magnetic Flux Density ut Euler Angle deg Temperature C C. Output Data Protocol (Binary Protocol) Start code Inertia Data + Euler Angle Temp Checksum End code 1byte 2byte x 9 2byte 1byte 2byte [0x02] [High][Low] x 9 [High][Low] (1) [0x2C][0x03] (1) Refer to checksum Inertia Data + Euler Angle Acc_x Acc_y Acc_z Mag_x Mag_y Mag_z Roll Pitch Yaw 2byte 2byte 2byte 2byte 2byte 2byte 2byte 2byte 2byte * Acc : Acceleration, Mag : Magnetic Flux Density * Roll : X-axis Roll angle, Pitch : Y-axis Pitch angle, Yaw : Z-axis Yaw Angle * Temp : Temperature, Checksum : Data error check byte - Start code: Hex code 1Byte(0x02), End code: Hex code 2Byte(0x2C, 0x03) - Each data is composed of unsigned integer 2byte except the Start code, End code and Checksum - From the original data, the variables is used for each data byte, and the output are High and Low byte(2byte Data) - 2byte Data s output from the sensor is converted into original data with - 5 -

6 demodulations. - Acceleration 3 axis(acc_x, Acc_y, Acc_z), magnetometer 3 axis(mag_x, Mag_y, Mag_z), Rotation angle 3 axis(roll : ±180, Pitch : ±90, Yaw : ±180 ) data output - Temperature: P2-AHU-00-1 module s internal temperature data output D. Retrieved Data Demodulation Process - To send each 2byte data of Inertia Data(accelerometer 3 axis, magnetometer 3 axis), Euler Angle(Roll, Pitch, Yaw), Temperature, a demodulation process - certain conversion factor is added and multiplied to each data generates natural number and sends as [High][Low] 2byte. Dividing and subtracting 2byte Data with certain value(conversion factor) of data demodulation process is necessary in order to obtain each data value. [Data Demodulation Method] Demodulation Method X = ([High byte] x [Low byte]) / B - A [Demodulation Conversion Factor] Demodulation Conversion Factor Data A B Accelerometer(Acc_x, Acc_y, Acc_z) magnetometer(mag_x, Mag_y, Mag_z) Euler Angle(Roll) Euler Angle(Pitch) Euler Angle(Yaw) Temperature

7 Demodulation Example) [P2-AHU Output Data (HEX code view)] A: Sensor data Start code = [0x02] Acc_x [High byte] [Low byte] = [0x13] [0x93] Acc_y [High byte] [Low byte] = [0x13] [0x79] Acc_z [High byte] [Low byte] = [0x17] [0x7A] Mag_x [High byte] [Low byte] = [0x39] [0xD2] Mag_y [High byte] [Low byte] = [0x3F] [0xA1] Mag_z [High byte] [Low byte] = [0x21] [0x0E] Roll [High byte] [Low byte] = [0x45] [0xFC] Pitch [High byte] [Low byte] = [0x23] [0x6B] Yaw [High byte] [Low byte] = [0x5D] [0xFA] Temp [High byte] [Low byte] = [0x38] [0x5A] Checksum = [0x95] End code = [0x2C][0x03] B: Demodulation Conversion (Real Data) Acc_x High = 0x13 (HEX) = 19 (DEC) Low = 0x93 (HEX) = 147 (DEC) Acc_x = ([High byte] x [Low byte]) / B A Conversion Factor] = ( 19 x ) / = Acc_x = (g)... [Refer to Demodulation Mag_x High = 0x39 (HEX) = 57 (DEC) Low = 0xD2 (HEX) = 210 (DEC) mag_x = ([High byte] x [Low byte]) / B A Conversion Factor] = ( 57 x ) / = 8.02 mag_x = 8.02 (ut)... [Refer to Demodulation Factor] Roll High = 0x45 (HEX) = 69 (DEC) Low = 0xFC (HEX) = 252 (DEC) Roll = ([High byte] x [Low byte]) / B A... [Refer to Demodulation Conversion = ( 69 x ) / = Roll = (deg) - 7 -

8 Temp High = 0x38 (HEX) = 56 (DEC) Low = 0x5A (HEX) = 90 (DEC) temp = ([High byte] x [Low byte]) / B A Conversion Factor] = ( 56 x ) / = Temp = ( C)... [Refer to Demodulation E. Checksum - From a single dummy data output of the sensor except the start and end code data(accelerometer 3 axis, magnetometer 3 axis, rotation angle 3 axis, temperature), only the lowest 1byte is used from the sum of each high and low byte per 1byte data. Checksum Example) [P2-AHU Output Data (HEX code view)] A: Sensor data Start code = [0x02] Acc_x [High byte] [Low byte] = [0x13] [0x93] Acc_y [High byte] [Low byte] = [0x13] [0x79] Acc_z [High byte] [Low byte] = [0x17] [0x7A] Mag_x [High byte] [Low byte] = [0x39] [0xD2] Mag_y [High byte] [Low byte] = [0x3F] [0xA1] Mag_z [High byte] [Low byte] = [0x21] [0x0E] Roll [High byte] [Low byte] = [0x45] [0xFC] Pitch [High byte] [Low byte] = [0x23] [0x6B] Yaw [High byte] [Low byte] = [0x5D] [0xFA] Temp [High byte] [Low byte] = [0x38] [0x5A] Checksum = [0x95] End code = [0x2C][0x03] - 8 -

9 B: Checksum Calculation Checksum (Acc_x[High byte] ~ Temp[Low byte] per 1byte total, the lowest 1byte) = 0x13 + 0x93 + 0x13 + 0x79 + 0x17 + 0x7A...Accelerometer 3 axis + 0x39 + 0xD2 + 0x3F + 0xA1 + 0x21 + 0x0E...Magnetometer 3 axis + 0x45 + 0xFC + 0x23 + 0x6B + 0x5D + 0xFA...Rotation Angle 3 axis + 0x38 + 0x5A...Temperature = 0x0795 & 0x00FF...The lowest byte is used = 0x0095 Checksum = 0x95 8. Application Setup - Window PC based LabVIEW Program - Download this program on the Seller s or Manufacturer s Website. - Open setup.exe from the Application folder(compressed file format). [Application Folder Image] - After running setup.exe, Setup ready window pops up. - Install Application and DLL file to run successfully

10 - Click on 라이센스협약에동의합니다 (Click on Agree to License Agreement) - Application Process is completed, Click on 다음 (Next) to install

11 - Application installation is completed. - Windows Start Menu 2-AHU-00-01_Application Run P2-AHU exe or Run P2-AHU exe on Application Installation folder 9. Application Use - P2-AHU Module Operation Visualization Program - P2-AHU Module Data Log Saving Feature - COM PORT and 3D Path File Folder Location is fundamentally set - Use after customizing user setting of COM PORT and 3D Path File Folder s Location

12 [Application 화면구성 ] A. Communication Setting - VISA resource name: User COM PORT Setting (COM PORT Setting connected to Sensor) - Fundamental communication setting, user change not allowed (Baud rate:115200bps, Data bits:8bit, Parity:None, Stop bits:1bit, Flow Control:None) [Communication Setting] B. Output Data - P2-AHU data output - In the order of Acc_x, Acc_y, Acc_z, Mag_x, Mag_y, Mag_z, Roll, Pitch, Yaw, Temperature, Checksum data output - Checksum error : confirm receiving data checksum error, when LED lit, error occurence

13 [Output Data] C. 3D Path folder setting - 3D Path file setting which is necessary for Euler Angle 3D output - Use P2-AHU-00-01_3D_0.1.wrl file in the Application install file folder - Folder setting or P2-AHU-00-01_3D_0.1.wrl file, move to c:\ [3D Path folder setting] D. Data Save setting(save data log) - Setup output data storage location and file name - C:\ 실험데이터 \P2-AHU-00-01\test.lvm of basic setting - In the order of test001.lvm, test002.lvm..., test100.lvm file name automatic save - Save activation button : Save activated/deactivated mode change with pressing the button, LED light on : activated [Data Save setting] E. Application START/STOP - : application start button, located on the upper toolbar - : application stop buttom [Start Button] [Stop button]

14 10. Product < Top View > < Bottom View > 11. Application < Breadboard Attached > < Perfboard Attached >

15 12. Notes - Please read the manual carefully before using our product. - Please use this product after checking Output pin map. - If power supply is unstable, output data can be unreliable. - This product is equipped with magnetometer, so in the area under magnetic field influence, the data can be unreliable. - Please keep this product away from magnetic object while using or storing. Magnetic objects can be the cause of degradation or failure. - Be careful with electric shock. This product is equipped with precise sensor. - If a physical force is applied, it can be the case of the sensor data s error and degradation because of the change in Calibration value. Please handle with care. - There could be a little flaw on the product during Calibration process, but it is in normal condition. - When you are not using this product, please put it safely into the antistatic cover to protect it from damage. 13. Contact - Seller: Intellane Co., Ltd. - Address: #218 Byzantium 1st, 1318, Baekseok2-dong, Ilsandong-gu Goyang City, Gyeonggi-do, , SOUTH KOREA - Tel.: Fax.: Website : sales@intellane.com Intellane holds the copyright of this manual and infringe of copyright is prohibited

CMPS09 - Tilt Compensated Compass Module

CMPS09 - Tilt Compensated Compass Module Introduction The CMPS09 module is a tilt compensated compass. Employing a 3-axis magnetometer and a 3-axis accelerometer and a powerful 16-bit processor, the CMPS09 has been designed to remove the errors

More information

BW-IMU200 Serials. Low-cost Inertial Measurement Unit. Technical Manual

BW-IMU200 Serials. Low-cost Inertial Measurement Unit. Technical Manual Serials Low-cost Inertial Measurement Unit Technical Manual Introduction As a low-cost inertial measurement sensor, the BW-IMU200 measures the attitude parameters of the motion carrier (roll angle, pitch

More information

CMPS11 - Tilt Compensated Compass Module

CMPS11 - Tilt Compensated Compass Module CMPS11 - Tilt Compensated Compass Module Introduction The CMPS11 is our 3rd generation tilt compensated compass. Employing a 3-axis magnetometer, a 3-axis gyro and a 3-axis accelerometer. A Kalman filter

More information

MGA103 Single Axis MEMS Gyro with Triaxial Accelerometer

MGA103 Single Axis MEMS Gyro with Triaxial Accelerometer Cost Effective Z Axis MEMS Gyro with 3 Accelerometers Heading: diverging 0.1 /hour Range: acc ±2g, gyro ±300 /s, (ODM supported) Wide Input Power Range: 6~14VDC Compact and Lightweight - 50 x 45 x 21 (mm),

More information

IMU60 Inertial Measurement Unit

IMU60 Inertial Measurement Unit Precision 6 DoF MEMS Inertial Measurement Unit Range: acc ±2g, gyro ±300 /s, (ODM supported) Acc Bias Instability: ±70mg, Gyro Bias Instability: 24 /h Data Update Rate: 100Hz Wide Input Power Range: 5~18VDC

More information

MG100 Single Axis MEMS Gyro

MG100 Single Axis MEMS Gyro Cost Effective Z Axis MEMS Gyro Heading: diverging 0.1 /hour Range: gyro ±300 /s, (ODM supported) Wide Input Power Range: 6~14VDC Compact and Lightweight - 50 x 45 x 21 (mm), 70g Wide Working Temperature:

More information

USART Digital Compass Manual

USART Digital Compass Manual USART Digital Compass Manual General Description HMC1022-USART is a low cost plane digital compass module. The working principle is utilizing magnetoresistive sensor sensing the Earth's magnetic field

More information

INERTIAL LABS SUBMINIATURE 3D ORIENTATION SENSOR OS3DM

INERTIAL LABS SUBMINIATURE 3D ORIENTATION SENSOR OS3DM Datasheet Rev..5 INERTIAL LABS SUBMINIATURE D ORIENTATION SENSOR TM Inertial Labs, Inc Address: 9959 Catoctin Ridge Street, Paeonian Springs, VA 2029 U.S.A. Tel: + (70) 880-4222, Fax: + (70) 95-877 Website:

More information

AMS0805WAH. CATALOG No.: AMS0805WAH. Motion Sensor Data Sheet Ver Advanced Material on Technology

AMS0805WAH. CATALOG No.: AMS0805WAH. Motion Sensor Data Sheet Ver Advanced Material on Technology CATALOG No.: 2007.11 AMS0805WAH Motion Sensor Data Sheet Ver. 1.1 Advanced Material on Technology Overview Motion sensor is a 6-axis module consisting of 3-axis magnetic sensor and 3-axis accelerometer.

More information

OS3D-FG MINIATURE ATTITUDE & HEADING REFERENCE SYSTEM MINIATURE 3D ORIENTATION SENSOR OS3D-P. Datasheet Rev OS3D-FG Datasheet rev. 2.

OS3D-FG MINIATURE ATTITUDE & HEADING REFERENCE SYSTEM MINIATURE 3D ORIENTATION SENSOR OS3D-P. Datasheet Rev OS3D-FG Datasheet rev. 2. OS3D-FG OS3D-FG MINIATURE ATTITUDE & HEADING REFERENCE SYSTEM MINIATURE 3D ORIENTATION SENSOR OS3D-P Datasheet Rev. 2.0 1 The Inertial Labs OS3D-FG is a multi-purpose miniature 3D orientation sensor Attitude

More information

Attitude and Heading Reference Systems

Attitude and Heading Reference Systems Attitude and Heading Reference Systems FY-AHRS-2000B Installation Instructions V1.0 Guilin FeiYu Electronic Technology Co., Ltd Addr: Rm. B305,Innovation Building, Information Industry Park,ChaoYang Road,Qi

More information

TFmini Infrared Module Specification

TFmini Infrared Module Specification Version: A00 Document No.: SJ-GU-TFmini-01 Page 1 of 10 TFmini Infrared Module Specification www.benewake.com Version: A00 Document No.: SJ-GU-TFmini-01 Page 2 of 10 Dear users: Preface Hello! Thank you

More information

Technical Manual. CruizCore R1350N Rev Copyright Microinfinity Co., Ltd.

Technical Manual. CruizCore R1350N Rev Copyright Microinfinity Co., Ltd. Technical Manual CruizCore R1350N Rev1.0 2011. 12. 01 Copyright Microinfinity Co., Ltd. http://www.minfinity.com http://www.cruizcore.com Contact Info. EMAIL: supports@cruizcore.com, TEL: +82 31 546 7408

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

YDLIDAR G4 DATASHEET. Doc#: 文档编码 :

YDLIDAR G4 DATASHEET. Doc#: 文档编码 : YDLIDAR G4 DATASHEET Doc#:01.13.000007 文档编码 :01.13.000008 CONTENTS overview... 2 Product Features... 2 Applications... 2 Installation and dimensions... 2 Specifications... 3 Product parameters... 3 Electrical

More information

Carbon Dioxide (Tiny CO2) Gas Sensor. Rev TG400 User Manual

Carbon Dioxide (Tiny CO2) Gas Sensor. Rev TG400 User Manual Carbon Dioxide (Tiny CO2) Gas Sensor Rev. 1.2 TG400 User Manual The TG400 measuring carbon dioxide (chemical formula CO2) is a NDIR (Non-Dispersive Infrared) gas sensor. As it is contactless, it has high

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

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

RF7129 Ultra-low power Tranceiver module V2.0

RF7129 Ultra-low power Tranceiver module V2.0 1. General RF7129 series is a low cost, ultra-low power, high performance transparent two way semi-duplex GFSK transceiver with operation at 433/470/868/915 Mhz. It integrates with high speed MCU from

More information

AHRS400 Series User s Manual

AHRS400 Series User s Manual Models AHRS400CA- AHRS400CB- AHRS400CC- (DMU-HDX-AHRS) Revision A, March 2002 Document 7430-0004-01 Crossbow Technology, Inc., 41 E. Daggett Dr., San Jose, CA 95134 Tel: 408-965-3300, Fax: 408-324-4840

More information

Specifications Attitude and Heading Specifications. GP9 GPS-Aided AHRS Datasheet, Revision 1.3

Specifications Attitude and Heading Specifications. GP9 GPS-Aided AHRS Datasheet, Revision 1.3 Introduction The GP9 GPS-Aided AHRS combines MEMS inertial sensors and embedded GPS with an Extended Kalman Filter to produce attitude estimates that are immune to long-term angular drift and sustained

More information

SV-MESH Mesh network series Catalogue

SV-MESH Mesh network series Catalogue Catalogue 1. Description... 3 2. Features... 3 3. Applications... 3 4. Block Diagram... 4 5. Electrical Characteristics... 5 6. Operation... 5 Power on Reset... 5 Working mode... 6 Router mode... 8 Setting

More information

NRA24 millimeter wave radar User manual

NRA24 millimeter wave radar User manual NRA24 millimeter wave radar User manual (With check sum) Hunan Nanoradar Science and Technology Co., Ltd. Disclaimers Thanks to purchase this product. There is web pages about NRA24 altimeter in our official

More information

YDLIDAR F4PRO DATASHEET

YDLIDAR F4PRO DATASHEET YDLIDAR F4PRO DATASHEET Doc#:01.13.000031 文档编码 :01.13.000008 CONTENTS product overview... 2 Product Features... 2 Applications... 2 Installation and dimensions... 2 Specifications... 3 Performance parameters...

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

UNSTAR 传感与控制 TEL: FAX: szss AHRS300 Series User s Manual AHRS300CA- (DMU-AHRS) Revision 1.5

UNSTAR 传感与控制   TEL: FAX: szss AHRS300 Series User s Manual AHRS300CA- (DMU-AHRS) Revision 1.5 AHRS300CA- (DMU-AHRS) Revision 1.5, October 2001 Document 6001-0003 2000 Crossbow Technology, Inc. All rights reserved. Information in this document is subject to change without notice. Crossbow and SoftSensor

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

Serial Servo Controller

Serial Servo Controller Document : Datasheet Model # : ROB - 1185 Date : 16-Mar -07 Serial Servo Controller - USART/I 2 C with ADC Rhydo Technologies (P) Ltd. (An ISO 9001:2008 Certified R&D Company) Golden Plaza, Chitoor Road,

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

BW-VG525 Serials. High Precision CAN bus Dynamic Inclination Sensor. Technical Manual

BW-VG525 Serials. High Precision CAN bus Dynamic Inclination Sensor. Technical Manual Serials High Precision CAN bus Dynamic Inclination Sensor Technical Manual Introduction The Dynamic Inclination Sensor is a high precision inertial measurement device that measures the attitude parameters

More information

isma-b-w0202 Modbus User Manual GC5 Sp. z o.o. Poland, Warsaw

isma-b-w0202 Modbus User Manual GC5 Sp. z o.o. Poland, Warsaw isma-b-w0202 isma-b-w0202 Modbus User Manual GC5 Sp. z o.o. Poland, Warsaw www.gc5.com 1. Introduction... 4 2. Safety rules... 4 3. Technical specifications... 5 4. Dimension... 6 5. LED Indication...

More information

PM2.5 / PM1.0 Sensor Particulate Matter Sensing Solution

PM2.5 / PM1.0 Sensor Particulate Matter Sensing Solution PM2.5 / PM1.0 Sensor Particulate Matter Sensing Solution PSMU series FEATURES Detectable Particle Size - 0.3μm Real-time PM2.5/PM1.0 UART Output - μg / m3 Excellent Accuracy 1) High Linearity and Uniformity

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

im M o t i o n S e n s o r D a t a S h e e t Ver. 1.2

im M o t i o n S e n s o r D a t a S h e e t Ver. 1.2 im-3502 CATALOG No.: 2009.10 im - 3502 M o t i o n S e n s o r D a t a S h e e t Ver. 1.2 Advanced Material on Technology Specification Revision Page Revisions Description of Change Date Remark 1.0 Release

More information

UM7 DATASHEET INTRODUCTION FEATURES. Rev. 1.3 Released 10/27/2014

UM7 DATASHEET INTRODUCTION FEATURES. Rev. 1.3 Released 10/27/2014 INTRODUCTION The UM7 is a 3rd-generation Attitude and Heading Reference System (AHRS) that takes advantage of state-ofthe-art MEMS teschnology to improve performance and reduce costs. Like its predecessors,

More information

Intelligent Infrared CO2 Module (Model: MH-Z19)

Intelligent Infrared CO2 Module (Model: MH-Z19) Intelligent Infrared CO2 Module (Model: MH-Z19) User s Manual (Version: 1.0) Valid from: 2015.03.03 Zhengzhou Winsen Electronics Technology Co., Ltd ISO9001 certificated company Statement This manual s

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

Electrical Lens Driver 4

Electrical Lens Driver 4 Electrical Lens Driver 4 Lens Driver Manual Page 1 of 22 Table of Contents 1. Overview... 3 1.1 Integration Into OEM Systems... 3 1.2 System requirements... 4 2. Hardware Operation... 4 2.1 Connecting

More information

UART GPS NEO-6M User Manual

UART GPS NEO-6M User Manual UART GPS NEO-6M User Manual Features U-BLOX NEO-6M module with high-gain active antenna; TTL level, compatible with 3V/5V systems; Baud rate: 9600kbps (default), adjustable by u-center; Provided IPX interface

More information

URM37 V3.2 Ultrasonic Sensor (SKU:SEN0001)

URM37 V3.2 Ultrasonic Sensor (SKU:SEN0001) URM37 V3.2 Ultrasonic Sensor (SKU:SEN0001) From Robot Wiki Contents 1 Introduction 2 Specification 2.1 Compare with other ultrasonic sensor 3 Hardware requierments 4 Tools used 5 Software 6 Working Mode

More information

BLE 4.0 Module ZBModule User Manual 1 / 15

BLE 4.0 Module ZBModule User Manual 1 / 15 BLE 4.0 Module ZBModule User Manual 1 / 15 Bluetooth 4.0 BLE Introduction With only a ZBmodule module, you can make your products easily and conveniently interactive connect with the ipad, iphone and Android

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

9DoF Sensor Stick Hookup Guide

9DoF Sensor Stick Hookup Guide Page 1 of 5 9DoF Sensor Stick Hookup Guide Introduction The 9DoF Sensor Stick is an easy-to-use 9 degrees of freedom IMU. The sensor used is the LSM9DS1, the same sensor used in the SparkFun 9 Degrees

More information

EIG DNP V3.0 Protocol Assignments

EIG DNP V3.0 Protocol Assignments E Electro Industries/G augetech "The Leader in Web Accessed Power Monitoring" EIG DNP V3.0 Protocol Assignments For Futura+ and DM Series Power Monitors Version 1.14 July 15, 2003 Doc # E100-7-03 V1.14

More information

MX-64T / MX-64R / MX-64AT / MX-64AR

MX-64T / MX-64R / MX-64AT / MX-64AR Show Home > Product Information > Actuator > Dynamixel > MX Series > MX-64T / MX64-R / MX-64AT / MX-64AR ROBOTIS e-manual v1.29.00 MX-64T / MX-64R / MX-64AT / MX-64AR Parts Photo [MX-64AT] [MX-64AR] Control

More information

RF1276 Long Distance Transceiver module V2.0

RF1276 Long Distance Transceiver module V2.0 1. General RF1276 series is a low cost, ultra-low power, high performance transparent two way semi-duplex LoRa modulation transceiver with operation at 169/433/868/915 Mhz. It integrates with high speed

More information

SPECIFICATIONS. ACA2000 -High Accuracy Digital Type Dual-Axis Inclinometer with Full Temperature Compensation. Item No.:ACA2000

SPECIFICATIONS. ACA2000 -High Accuracy Digital Type Dual-Axis Inclinometer with Full Temperature Compensation. Item No.:ACA2000 SPECIFICATIONS Item No.:ACA2000 Description: High Accuracy Digital Type Dual-Axis Inclinometer Version:Ver.08 Production implementation standard reference Enterprise quality system standards: ISO9001:

More information

I-2533CS series User Manual

I-2533CS series User Manual I-2533CS series User Manual Version 1.0.0, Sep. 2013 Service and usage information for I 2533CS / I 2533CS 60 / I 2533CS A / I 2533CS B I-2533CS series CAN to Single Mode Fiber Bridge User Manual (version

More information

HG1120 INERTIAL MEASUREMENT UNIT (IMU) Installation and Interface Manual

HG1120 INERTIAL MEASUREMENT UNIT (IMU) Installation and Interface Manual HG1120 INERTIAL MEASUREMENT UNIT (IMU) Installation and Interface Manual HG1120 Installation and Interface Manual aerospace.honeywell.com/hg1120 2 Table of Contents 4 5 6 15 17 17 Honeywell Industrial

More information

ELT Sensor Data Sheet for S-300-3V

ELT Sensor Data Sheet for S-300-3V ELT SENSOR Corp. General Version 1.120 S-300 is one of smallest CO2 sensor modules in the world. Its Persistent Stability and Temperature Effect Resistance besides easy management are much favored by customers

More information

OrigamiSat-1. FM Down Link Data Format. (English version)

OrigamiSat-1. FM Down Link Data Format. (English version) OrigamiSat-1 FM Down Link Data Format (English version) Document# OP-S1-0115 Revision Ver. 1.3 Date 2019/01/11, revised on 2019/01/13 Name Tokyo Tech OrigamiSat-1 project team Revision history Date Version

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

PyroMiniUSB Series Operators Guide

PyroMiniUSB Series Operators Guide PyroMiniUSB Series Operators Guide The PyroMiniUSB is a simple, compact infrared temperature sensor with USB communications. It measures the surface temperature of a variety of materials without contact.

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

Catalog

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

More information

SC16A SERVO CONTROLLER

SC16A SERVO CONTROLLER SC16A SERVO CONTROLLER User s Manual V2.0 September 2008 Information contained in this publication regarding device applications and the like is intended through suggestion only and may be superseded by

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

User manual for LEMI-029 digital fluxgate sensor system with KMS820 USER MANUAL. for LEMI 029 DIGITAL FLUXGATE SENSOR SYSTEM

User manual for LEMI-029 digital fluxgate sensor system with KMS820 USER MANUAL. for LEMI 029 DIGITAL FLUXGATE SENSOR SYSTEM USER MANUAL ORIGINATED BY: REVISION DATE: DOCUMENT NUMBER: J. Jiang Nov 29 th, 2012 13-0008-800 SUBJECT: User manual for LEMI-029 digital fluxgate sensor system with KMS820 REVISION: 2.0 USER MANUAL for

More information

Date: January 16, 2003 Page 1 of 1

Date: January 16, 2003 Page 1 of 1 Date: January 16, 2003 Page 1 of 1 1. System Accuracy 1.1 Attitude Accuracy With GPS Active Without GPS PITCH 0.2 deg 3σ 0.3 deg/hr drift 1σ ROLL 0.2 deg 3σ 0.3 deg/hr drift 1σ YAW 0.2 deg 3σ 0.3 deg/hr

More information

Inertial Sensors. Ellipse Series MINIATURE HIGH PERFORMANCE. Navigation, Motion & Heave Sensing IMU AHRS MRU INS VG

Inertial Sensors. Ellipse Series MINIATURE HIGH PERFORMANCE. Navigation, Motion & Heave Sensing IMU AHRS MRU INS VG Ellipse Series MINIATURE HIGH PERFORMANCE Inertial Sensors IMU AHRS MRU INS VG ITAR Free 0.2 RMS Navigation, Motion & Heave Sensing ELLIPSE SERIES sets up new standard for miniature and cost-effective

More information

SP25 millimeter wave radar User manual

SP25 millimeter wave radar User manual SP25 millimeter wave radar User manual Hunan Nanoradar Science and Technology Co., Ltd. Disclaimers Thanks to purchase this product. There is web pages about SP25 radar sensor in our official website (

More information

Blue Bamboo P25 Device Manager Guide

Blue Bamboo P25 Device Manager Guide Blue Bamboo P25 Device Manager Guide Version of Device Manager: 1.1.28 Document version: 2.3 Document date: 2011-09-20 Products: P25 / P25-M / P25i / P25i-M BLUE BAMBOO Headquarters Blue Bamboo Transaction

More information

B3M Series Software Manual Command Reference. Kondo Kagaku Co., Ltd. Ver

B3M Series Software Manual Command Reference. Kondo Kagaku Co., Ltd. Ver B3M Series Software Manual Command Reference Kondo Kagaku Co., Ltd. Ver. 1.2.0.2 Disclaimer This manual is a reference manual of commands for communicating with the B3M Series. Copyrights and all other

More information

Ocean Controls KT-5221 Modbus IO Module

Ocean Controls KT-5221 Modbus IO Module Ocean Controls Modbus IO Module 8 Relay Outputs 4 Opto-Isolated Inputs 2 Analog Inputs (10 bit) 1 PWM Output (10 bit) 4 Input Counters Connections via Pluggable Screw Terminals 0-5V or 0-20mA Analog Inputs,

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

Analog Module D1-15P User Manual

Analog Module D1-15P User Manual D1-15P Manual Analog Module D1-15P User Manual Sielco Elettronica Srl Edison Street 209 20019 Settimo Milanese (MI) - Italy http://www.sielcoelettronica.com info @ sielcoelettronica.com Tel 02 48916252

More information

TLE5014 Programmer. About this document. Application Note

TLE5014 Programmer. About this document. Application Note Application Note About this document Scope and purpose This document describes the Evaluation Kit for the TLE5014 GMR based angle sensor. The purpose of this manual is to describe the software installation

More information

High Performance Advanced MEMS Industrial & Tactical Grade Inertial Measurement Units

High Performance Advanced MEMS Industrial & Tactical Grade Inertial Measurement Units High Performance Advanced MEMS Industrial & Tactical Grade Inertial Measurement Units ITAR-free Small size, low weight, low cost 1 deg/hr Gyro Bias in-run stability Datasheet Rev.2.0 5 μg Accelerometers

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

Installation Instructions for the Transportation Attitude Reference System (TARS Series) Ruggedized Inertial Measurement Unit (IMU)

Installation Instructions for the Transportation Attitude Reference System (TARS Series) Ruggedized Inertial Measurement Unit (IMU) Installation Instructions for the Transportation Attitude Reference System Ruggedized Inertial Measurement Unit (IMU) Issue B 32332897 1.0 GENERAL INFORMATION Honeywell s Transportation Attitude Reference

More information

Tel: Fax: OMESH Networks Inc. 2011

Tel: Fax: OMESH Networks Inc. 2011 Section 1: Purpose OPM15 is a large-scale cognitive wireless networking module, providing great flexibility for a wide range of applications. Powered by the OPM optimized radio design and networking stack,

More information

Accelerometer user manual

Accelerometer user manual Accelerometer user manual V1.5 COPY RIGHTS ECOTRONS LLC ALL RIGHTS RESERVED Note: If you are not sure about any specific details, please contact us at info@ecotrons.com. Index Page Revision Date Note 1

More information

Motion Reference Units

Motion Reference Units Motion Reference Units MRU Datasheet Rev. 1.3 IP-67 sealed 5% / 5 cm Heave accuracy 0.03 m/sec Velocity accuracy 0.05 deg Pitch and Roll accuracy 0.005 m/sec2 Acceleration accuracy 0.0002 deg/sec Angular

More information

InfraStruXure Manager v4.x Addendum: Building Management System Integration

InfraStruXure Manager v4.x Addendum: Building Management System Integration InfraStruXure Manager v4.x Addendum: Building Management System Integration Introduction This addendum explains the integration of the APC InfraStruXure Manager Appliance with a Building Management System

More information

Know your energy. Modbus Register Map EM etactica Power Meter

Know your energy. Modbus Register Map EM etactica Power Meter Know your energy Modbus Register Map EM etactica Power Meter Revision history Version Action Author Date 1.0 Initial document KP 25.08.2013 1.1 Document review, description and register update GP 26.08.2013

More information

HM-TR Series UHF Wireless Transparent Data Transceiver

HM-TR Series UHF Wireless Transparent Data Transceiver HM-TR Series UHF Wireless Transparent Data Transceiver General The HM-TR series UHF wireless transparent data transceiver, developed by Hope Microelectronics Co. Ltd, is designed for applications that

More information

Interface Control Document

Interface Control Document Version V1.0-20170609 For INS-T Inertial Navigation System 2017 Tersus GNSS Inc. All rights reserved. Sales & Technical Support: sales@tersus-gnss.com & support@tersus-gnss.com More details, please visit

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

Revision 1. March 21, ADC Operation Manual N 11 th St San Jose CA

Revision 1. March 21, ADC Operation Manual N 11 th St San Jose CA Revision 1 March 21, 2017 ADC Operation Manual www.mountztorque.com - 1080 N 11 th St San Jose CA 95112 408.292.2214 1 Index 1. Installation 3 1.1 Required PC specification 3 1.2 Software 3 2. Operation

More information

Parameter Value Unit Notes

Parameter Value Unit Notes Features Single axis measurement from ±5 to ±60 High resolution and accuracy. Low temperature drift, with optional temperature compensation to further improve temperature performance. RS232 and RS485 output

More information

Motus Reference Manual

Motus Reference Manual Page of Version. 7//6 Table of Contents 5 Revision History... Firmware Changelog... 9 Hardware Changelog... Introduction... Foundation Knowledge... 5. GNSS... 5. INS... 5. GNSS/INS... 5. AHRS... 5.5 The

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

USER MANUAL. Laser Particle Sensor Module PM fan series. Wuhan Cubic Optoelectronics Co.,Ltd. Ver.:

USER MANUAL. Laser Particle Sensor Module PM fan series. Wuhan Cubic Optoelectronics Co.,Ltd. Ver.: USER MANUAL Laser Particle Sensor Module PM2007 ---- fan series ADD:Fenghuang No. 3 Road, Fenghuang Industrial Park, Eastlake Hi-tech Development Zone, Wuhan 430205, China TEL:+86-27-81628831 FAX:+86-27-87405251

More information

Measurement Reference Unit MRU-P, MRU-PD

Measurement Reference Unit MRU-P, MRU-PD Measurement Reference Unit Revision 1.1 1 CHANGE STATUS LOG DOCUMENT: Inertial Labs TM MRU REVISION DATE AFFECTED PARAGRAPHS REMARKS 1.0 Oct. 10, 2016 All Released version. 6.2.4 Added MRU ORVTHSS output

More information

USB-UART RADIO MODULE(WM11TR_ L_02_USB)

USB-UART RADIO MODULE(WM11TR_ L_02_USB) Documents Version: 2.05 Document No. 2012-0046-E Copyright is reserved by Rping Group Limited (2008-2015) USB-UART RADIO MODULE(WM11TR_ L_02_USB) USER GUIDE 82469790 Index Documents Version: 2.05... 1

More information

3DM -CV5-10 LORD DATASHEET. Inertial Measurement Unit (IMU) Product Highlights. Features and Benefits. Applications. Best in Class Performance

3DM -CV5-10 LORD DATASHEET. Inertial Measurement Unit (IMU) Product Highlights. Features and Benefits. Applications. Best in Class Performance LORD DATASHEET 3DM -CV5-10 Inertial Measurement Unit (IMU) Product Highlights Triaxial accelerometer, gyroscope, and sensors achieve the optimal combination of measurement qualities Smallest, lightest,

More information

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

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

More information

MTi 100-series The most accurate and complete MEMS AHRS and GPS/INS

MTi 100-series The most accurate and complete MEMS AHRS and GPS/INS Orientation. Position. Xsens. MTi 100-series The most accurate and complete MEMS AHRS and GPS/INS The 4th generation MTi sets the new industry standard for reliable MEMS based INSs AHRSs, VRUs and IMUs.

More information

TETRIX Servo Motor Expansion Controller Technical Guide

TETRIX Servo Motor Expansion Controller Technical Guide TETRIX Servo Motor Expansion Controller Technical Guide 44560 Content advising by Paul Uttley. SolidWorks Composer and KeyShot renderings by Tim Lankford, Brian Eckelberry, and Jason Redd. Desktop publishing

More information

Catalogue

Catalogue - 1 - Catalogue 1. Description...- 3-2. Features...- 3-3. Application...- 3-4. Block Diagram...- 4-5. Typical Schematic Circuit...- 4-6. Electrical Characteristics... - 5-7. Interface specification...-

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

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

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

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

SPECIFICATIONS. DCM302B-High Accuracy 3D Electronic Compass(2D Calibration) Item No.:DCM302B

SPECIFICATIONS. DCM302B-High Accuracy 3D Electronic Compass(2D Calibration) Item No.:DCM302B SPECIFICATIONS Item No.:DCM302B Description:High Accuracy 3D Electronic Compass(2D Calibration) Version:Ver.07 Production implementation standard reference Enterprise quality system standards: ISO9001:

More information

Know your energy. Modbus Register Map EB etactica Power Bar

Know your energy. Modbus Register Map EB etactica Power Bar Know your energy Modbus Register Map EB etactica Power Bar Revision history Version Action Author Date 1.0 Initial document KP 25.08.2013 1.1 Document review, description and register update GP 26.08.2013

More information

DRF7020D20 20dBm ISM RF Transceiver Module V1.31

DRF7020D20 20dBm ISM RF Transceiver Module V1.31 DRF7020D20 20dBm ISM RF Transceiver Module V1.31 Features GFSK transceiver Module 433Mhz ISM frequency band 19.2K bps data rate Multiple channels 20dBm Max. output power Baud rate configurable 256 bytes

More information

CoolEx User Manual 2008 XDIMAX LTD. Revision 1.0

CoolEx User Manual 2008 XDIMAX LTD. Revision 1.0 CoolEx User Manual Revision 1.0 2 CoolEx User Manual Table of Contents Foreword 0 Part I Overview 3 Part II Configuration and Setup 4 1 Terminals Layout... 4 2 Modbus Address... Switch 4 Part III Functional

More information

Serial Bus Smart Control servo SCS15 Manual

Serial Bus Smart Control servo SCS15 Manual Serial Bus Smart Control servo SCS15 Manual Revision history date version Update content 2016.8.19 V1.01 1. Corrigendum amendment 2. add speed control parameters 2016.12.21 V1.02 Delete protocol content

More information

SIMPLY PRECISE PRELIMINARY. Preliminary product overview - LAK encoder. LAK 1 Absolute linear encoder with signal control

SIMPLY PRECISE PRELIMINARY. Preliminary product overview - LAK encoder. LAK 1 Absolute linear encoder with signal control PRELIMINARY Preliminary product overview - LAK encoder LAK 1 Absolute linear encoder with signal control 2 Index 1. Overview 3 2. Applications 3 3. Technical data 4 4. General specifications 5 5. Dimensions

More information