#include "quaternionfilters.h" #include "MPU9250.h" data read #define SerialDebug true // Set to true to get Serial output for debugging

Size: px
Start display at page:

Download "#include "quaternionfilters.h" #include "MPU9250.h" data read #define SerialDebug true // Set to true to get Serial output for debugging"

Transcription

1 /*Hardware setup: MPU9250 Breakout Arduino VDD V VDDI V SDA A4 SCL A5 GND GND */ #include "quaternionfilters.h" #include "MPU9250.h" #define AHRS true Set to false for basic data read #define SerialDebug true Set to true to get Serial output for debugging beginning SD slot stuff

2 /* SD card datalogger This example shows how to log data from three analog sensors to an SD card using the SD library. The circuit: * analog sensors on analog ins 0, 1, and 2 * SD card attached to SPI bus as follows: ** MOSI - pin 11 ** MISO - pin 12 ** CLK - pin 13 ** CS - pin 4 (for MKRZero SD: SDCARD_SS_PIN) */ #include <SPI.h> #include <SD.h> const int chipselect = 4; void setup() Open serial communications and wait for port to open: Serial.begin(9600); while (!Serial) ; wait for serial port to connect. Needed for native USB port only }

3 Serial.print("Initializing SD card..."); see if the card is present and can be initialized: if (!SD.begin(chipSelect)) Serial.println("Card failed, or not present"); don't do anything more: return; } Serial.println("card initialized."); } void loop() make a string for assembling the data to log: String datastring = ""; read three sensors and append to the string: for (int analogpin = 0; analogpin < 3; analogpin++) int sensor = analogread(analogpin); datastring += String(sensor); if (analogpin < 2) datastring += ","; } } open the file. note that only one file can be open at a time, so you have to close this one before opening another.

4 File datafile = SD.open("datalog.txt", FILE_WRITE); if the file is available, write to it: if (datafile) datafile.println(datastring); datafile.close(); print to the serial port too: Serial.println(dataString); } if the file isn't open, pop up an error: else Serial.println("error opening datalog.txt"); } } end of SD slot stuff Pin definitions int intpin = 12; These can be changed, 2 and 3 are the Arduinos ext int pins int myled = 13; Set up pin 13 led for toggling MPU9250 myimu; MPU9250 myimu1;

5 void setup() TWBR = 12; 400 kbit/sec I2C speed Serial.begin(9600); Wire.begin(); Set up the interrupt pin, its set as active high, push-pull pinmode(intpin, INPUT); digitalwrite(intpin, LOW); pinmode(myled, OUTPUT); digitalwrite(myled, HIGH); Read the WHO_AM_I register, this is a good test of communication byte c = myimu.readbyte(0x68, WHO_AM_I_MPU9250); byte e = myimu1.readbyte(0x69, WHO_AM_I_MPU9250); Serial.print("MPU9250 "); Serial.print("I AM "); Serial.print(c, HEX); Serial.print(" I should be "); Serial.println(0x71, HEX); Serial.print("MPU9250 "); Serial.print("I AM "); Serial.print(e, HEX); Serial.print(" I should be "); Serial.println(0xFF, HEX); if ((c == 0x71)&&(e == 0xFF)) WHO_AM_I should

6 always be 0x68, OR (c == 0x71)&&(e == 0xFF) Serial.println("Both MPU9250's are online..."); Start by performing self test and reporting values myimu.mpu9250selftest(myimu.selftest); myimu1.mpu9250selftest(myimu1.selftest); Calibrate gyro and accelerometers, load biases in bias registers myimu.calibratempu9250(myimu.gyrobias, myimu. accelbias); myimu1.calibratempu9250(myimu1.gyrobias, myimu1. accelbias); myimu.initmpu9250(); myimu1.initmpu9250(); Initialize device for active mode read of acclerometer, gyroscope, and temperature Serial.println("MPU9250 initialized for active data mode..."); Read the WHO_AM_I register of the magnetometer, this is a good test of communication byte d = myimu.readbyte(ak8963_address,

7 WHO_AM_I_AK8963); Serial.print("AK8963 "); Serial.print("I AM "); Serial.print(d, HEX); Serial.print(" I should be "); Serial.println(0x48, HEX); possible redefinition of object Get magnetometer calibration from AK8963 ROM myimu.initak8963(myimu.magcalibration); myimu1.initak8963(myimu1.magcalibration); Initialize device for active mode read of magnetometer Serial.println("AK8963 initialized for active data mode..."); if (SerialDebug) Serial.println("Calibration values: "); Serial.print("X-Axis sensitivity adjustment value "); Serial.println(myIMU.magCalibration[0], 2); Serial.print("Y-Axis sensitivity adjustment value "); Serial.println(myIMU.magCalibration[1], 2); Serial.print("Z-Axis sensitivity adjustment value "); Serial.println(myIMU.magCalibration[2], 2); Serial.print("0x69: X-Axis sensitivity adjustment value "); Serial.println(myIMU1.magCalibration[0], 2);

8 Serial.print("0x69: Y-Axis sensitivity adjustment value "); Serial.println(myIMU1.magCalibration[1], 2); Serial.print("0x69: Z-Axis sensitivity adjustment value "); Serial.println(myIMU1.magCalibration[2], 2); } } if (c == 0x71) else Serial.print("Could not connect to MPU9250: 0x"); Serial.println(c, HEX); while(1) ; Loop forever if communication doesn't happen } } void loop() If intpin goes high, all data registers have new data On interrupt, check if data ready interrupt if (myimu.readbyte(mpu9250_address, INT_STATUS) & 0x01) myimu.readacceldata(myimu.accelcount); Read the x/y/z adc values myimu1.readacceldata(myimu1.accelcount);

9 myimu.getares(); myimu1.getares(); Now we'll calculate the accleration value into actual g's This depends on scale being set myimu.ax = (float)myimu.accelcount[0]*myimu.ares; - accelbias[0]; myimu1.ax = (float)myimu1.accelcount[0]*myimu1. ares; - accelbias[0]; myimu.ay = (float)myimu.accelcount[1]*myimu.ares; - accelbias[1]; myimu1.ay = (float)myimu1.accelcount[1]*myimu1. ares; - accelbias[1]; myimu.az = (float)myimu.accelcount[2]*myimu.ares; - accelbias[2]; myimu1.az = (float)myimu1.accelcount[2]*myimu1. ares; - accelbias[2]; myimu.readgyrodata(myimu.gyrocount); Read the x/y/z adc values myimu1.readgyrodata(myimu1.gyrocount); Read the x/y/z adc values myimu.getgres(); myimu1.getgres(); Calculate the gyro value into actual degrees per second This depends on scale being set myimu.gx = (float)myimu.gyrocount[0]*myimu.gres; myimu1.gx = (float)myimu1.gyrocount[0]*myimu1.gres;

10 myimu.gy = (float)myimu.gyrocount[1]*myimu.gres; myimu1.gy = (float)myimu1.gyrocount[1]*myimu1.gres; myimu.gz = (float)myimu.gyrocount[2]*myimu.gres; myimu1.gz = (float)myimu1.gyrocount[2]*myimu1.gres; myimu.readmagdata(myimu.magcount); Read the x/y/z adc values myimu1.readmagdata(myimu1.magcount); Read the x/y/z adc values myimu.getmres(); myimu1.getmres(); User environmental x-axis correction in milligauss, should be automatically calculated myimu.magbias[0] = +470.; myimu1.magbias[0] = +470.; User environmental x-axis correction in milligauss TODO axis?? myimu.magbias[1] = +120.; myimu1.magbias[1] = +120.; User environmental x-axis correction in milligauss myimu.magbias[2] = +125.; myimu1.magbias[2] = +125.; Calculate the magnetometer values in milligauss Include factory calibration per data sheet and user environmental corrections Get actual magnetometer value, this depends on scale being set myimu.mx =

11 (float)myimu.magcount[0]*myimu.mres*myimu. magcalibration[0] - myimu.magbias[0]; myimu1.mx = (float)myimu1.magcount[0]*myimu1.mres*myimu1. magcalibration[0] - myimu1.magbias[0]; myimu.my = (float)myimu.magcount[1]*myimu.mres*myimu. magcalibration[1] - myimu.magbias[1]; myimu1.my = (float)myimu1.magcount[1]*myimu1.mres*myimu1. magcalibration[1] - myimu1.magbias[1]; myimu.mz = (float)myimu.magcount[2]*myimu.mres*myimu. magcalibration[2] - myimu.magbias[2]; myimu1.mz = (float)myimu1.magcount[2]*myimu1.mres*myimu1. magcalibration[2] - myimu1.magbias[2]; } if (readbyte(mpu9250_address, INT_STATUS) & 0x01) Must be called before updating quaternions! myimu.updatetime(); myimu1.updatetime(); Sensors x (y)-axis of the accelerometer is aligned with the y (x)-axis of the magnetometer; the magnetometer z-axis (+ down)

12 is opposite to z-axis (+ up) of accelerometer and gyro! We have to make some allowance for this orientationmismatch in feeding the output to the quaternion filter. For the MPU-9250, we have chosen a magnetic rotation that keeps the sensor forward along the x-axis just like in the LSM9DS0 sensor. This rotation can be modified to allow any convenient orientation convention. This is ok by aircraft orientation standards! Pass gyro rate as rad/s MadgwickQuaternionUpdate(ax, ay, az, gx*pi/180.0f, gy*pi/180.0f, gz*pi/180.0f, my, mx, mz); MahonyQuaternionUpdate(myIMU.ax, myimu.ay, myimu.az, myimu.gx*deg_to_rad, myimu.gy*deg_to_rad, myimu. gz*deg_to_rad, myimu.my, myimu.mx, myimu.mz, myimu. deltat); MahonyQuaternionUpdate(myIMU1.ax, myimu1.ay, myimu1. az, myimu1.gx*deg_to_rad, myimu1.gy*deg_to_rad, myimu1. gz*deg_to_rad, myimu1.my, myimu1.mx, myimu1.mz, myimu1. deltat); if (!AHRS) myimu.delt_t = millis() - myimu.count;

13 myimu1.delt_t = millis() - myimu1.count; if ((myimu.delt_t > 500) && (myimu1.delt_t > 500)) if(serialdebug) Print acceleration values in milligs! Serial.print("X-acceleration: "); Serial.print(1000*myIMU.ax); Serial.print(" mg "); Serial.print("MPU1: X-acceleration: "); Serial.print(1000*myIMU1.ax); Serial.print(" mg "); Serial.print("Y-acceleration: "); Serial.print(1000*myIMU.ay); Serial.print(" mg "); Serial.print("MPU1: Y-acceleration: "); Serial.print(1000*myIMU1.ay); Serial.print(" mg "); Serial.print("Z-acceleration: "); Serial.print(1000*myIMU.az); Serial.println(" mg "); Serial.print("MPU1: Z-acceleration: "); Serial.print(1000*myIMU1.az); Serial.println(" mg "); Print gyro values in degree/sec Serial.print("X-gyro rate: "); Serial.print(myIMU.gx, 3); Serial.print(" degrees/sec "); Serial.print("MPU1: X-gyro rate: ");

14 Serial.print(myIMU1.gx, 3); Serial.print(" degrees/sec "); Serial.print("Y-gyro rate: "); Serial.print(myIMU.gy, 3); Serial.print(" degrees/sec "); Serial.print("MPU1: Y-gyro rate: "); Serial.print(myIMU1.gy, 3); Serial.print(" degrees/sec "); Serial.print("Z-gyro rate: "); Serial.print(myIMU.gz, 3); Serial.println(" degrees/sec"); Serial.print("MPU1: Z-gyro rate: "); Serial.print(myIMU1.gz, 3); Serial.println(" degrees/sec"); Print mag values in degree/sec Serial.print("X-mag field: "); Serial.print(myIMU.mx); Serial.print(" mg "); Serial.print("MPU1: X-mag field: "); Serial.print(myIMU1.mx); Serial.print(" mg "); Serial.print("Y-mag field: "); Serial.print(myIMU.my); Serial.print(" mg "); Serial.print("MPU1: Y-mag field: "); Serial.print(myIMU1.my); Serial.print(" mg "); Serial.print("Z-mag field: "); Serial.print(myIMU.mz); Serial.println(" mg");

15 Serial.print("MPU1: Z-mag field: "); Serial.print(myIMU.mz); Serial.println(" mg"); myimu.tempcount = myimu.readtempdata(); myimu1.tempcount = myimu1.readtempdata(); Read the adc values Temperature in degrees Centigrade myimu.temperature = ((float) myimu.tempcount) / ; myimu1.temperature = ((float) myimu1.tempcount) / ; Print temperature in degrees Centigrade Serial.print("Temperature is "); Serial.print(myIMU.temperature, 1); Serial.println(" degrees C"); Serial.print("MPU1: Temperature is "); Serial.print(myIMU1.temperature, 1); Serial.println(" degrees C"); } myimu.count = millis(); myimu1.count = millis(); digitalwrite(myled,!digitalread(myled)); toggle led } if (myimu.delt_t > 500) } if (!AHRS) else Serial print and/or display at 0.5 s rate

16 independent of data rates myimu.delt_t = millis() - myimu.count; myimu1.delt_t = millis() - myimu1.count; int arrayvalue = 0; float dataarray[arrayvalue]; ADDING THE TITLES & UNITS FOR 2 SENSORS char titlestr1[19] = 'ms ', '1-ax ', '1-ay ', '1-az ', '1-gx ', '1-gy ', '1-gz ', '1-mx ', '1-my ', '1-mz ', '2-ax ', '2-ay ', '2-az ', '2-gx ', '2-gy ', '2-gz ', '2-mx ', '2-my ', '2-mz '}; Serial.println(titleStr1[19]); update LCD once per 100ms independent of read rate if (myimu.delt_t > 100 && myimu1.delt_t > 100) if(serialdebug) UNCOMMENT THESE IF SIMPLE PRINTING IS DESIRED a,g,m for 0x68 Serial.print("ax = "); Serial.print((int)1000*myIMU.ax); Serial.print(" ay = "); Serial.print((int)1000*myIMU.ay); Serial.print(" az = "); Serial.print((int)1000*myIMU.az);

17 Serial.println(" mg"); Serial.print("gx = "); Serial.print( myimu. gx, 2); Serial.print(" gy = "); Serial.print( myimu. gy, 2); Serial.print(" gz = "); Serial.print( myimu. gz, 2); Serial.println(" deg/s"); Serial.print("mx = "); Serial.print( (int)myimu.mx ); Serial.print(" my = "); Serial.print( (int)myimu.my ); Serial.print(" mz = "); Serial.print( (int)myimu.mz ); Serial.println(" mg"); a,g,m for 0x69 Serial.print("MPU2: ax = "); Serial.print((int)1000*myIMU1.ax); Serial.print(" ay = "); Serial.print((int)1000*myIMU1.ay); Serial.print(" az = "); Serial.print((int)1000*myIMU1.az); Serial.println(" mg"); Serial.print("MPU2: gx = "); Serial.print(

18 myimu1.gx, 2); Serial.print(" gy = "); Serial.print( myimu1. gy, 2); Serial.print(" gz = "); Serial.print( myimu1. gz, 2); Serial.println(" deg/s"); Serial.print("MPU2: mx = "); Serial.print( (int)myimu1.mx ); Serial.print(" my = "); Serial.print( (int)myimu1.my ); Serial.print(" mz = "); Serial.print( (int)myimu1.mz ); Serial.println(" mg"); THIS PRINTS THE DATA INTO AN ARRAY WITH THE FIRST VALUE THE TIMESTAMP AND THEN THE VALUES FOR A,G, and M for IMUs a - 0x68 dataarray[arrayvalue] = myimu.count}; dataarray[arrayvalue] = (int)1000*myimu.ax};

19 dataarray[arrayvalue] = (int)1000*myimu.ay}; dataarray[arrayvalue] = (int)1000*myimu.az}; g's - 0x68 dataarray[arrayvalue] = myimu.gx}; dataarray[arrayvalue] = myimu.gy}; dataarray[arrayvalue] = myimu.gz}; m's - 0x68 dataarray[arrayvalue] = (int)myimu.mx};

20 dataarray[arrayvalue] = (int)myimu.my}; dataarray[arrayvalue] = (int)myimu.mz}; a's - 0x69 dataarray[arrayvalue] = (int)1000*myimu1.ax}; dataarray[arrayvalue] = (int)1000*myimu1.ay}; dataarray[arrayvalue] = (int)1000*myimu1.az}; g's - 0x69 dataarray[arrayvalue] = myimu1.gx};

21 dataarray[arrayvalue] = myimu1.gy}; dataarray[arrayvalue] = myimu1.gz}; m's - 0x69 dataarray[arrayvalue] = (int)myimu1.mx}; dataarray[arrayvalue] = (int)myimu1.my}; dataarray[arrayvalue] = (int)myimu1.mz}; Serial.println(" "); } myimu.count = millis(); myimu1.count = millis();

22 myimu.sumcount = 0; myimu1.sumcount = 0; myimu.sum = 0; myimu1.sum = 0; } if (myimu.delt_t > 500) } if (AHRS) }

Arduino Driver SD Card

Arduino Driver SD Card Arduino Driver SD Card The arduino driver SD car is for the file s reading and writing What requires special explanation is the SD library file. Currently, it can t support the card over 2G well, so I

More information

Sten-SLATE ESP. Accelerometer and I2C Bus

Sten-SLATE ESP. Accelerometer and I2C Bus Sten-SLATE ESP Accelerometer and I2C Bus Stensat Group LLC, Copyright 2016 I2C Bus I2C stands for Inter-Integrated Circuit. It is a serial type interface requiring only two signals, a clock signal and

More information

Application Note: ADC on Teensy and Biasing LNA. Lhawang Thaye

Application Note: ADC on Teensy and Biasing LNA. Lhawang Thaye Application Note: ADC on Teensy and Biasing LNA Introduction Lhawang Thaye Page 1 This application note will address how to implement an ADC using the Teensy 3.1, the procedure for Biasing the LNA for

More information

Grove - 6-Axis Accelerometer&Gyroscope(BMI088)

Grove - 6-Axis Accelerometer&Gyroscope(BMI088) Grove - 6-Axis Accelerometer&Gyroscope(BMI088) The Grove - 6-Axis Accelerometer&Gyroscope(BMI088) is a 6 DoF(degrees of freedom) Highperformance Inertial Measurement Unit(IMU).This sensor is based on BOSCH

More information

LIS3DH Hookup Guide. Introduction. SparkFun Triple Axis Accelerometer Breakout - LIS3DH SEN Required Materials

LIS3DH Hookup Guide. Introduction. SparkFun Triple Axis Accelerometer Breakout - LIS3DH SEN Required Materials Page 1 of 15 LIS3DH Hookup Guide Introduction The LIS3DH is a triple axis accelerometer you can use to add translation detection to your project. It would be classified as a 3DoF, or 3 Degrees of Freedom.

More information

Grove - 3 Axis Digital Accelerometer±16g Ultra-low Power (BMA400)

Grove - 3 Axis Digital Accelerometer±16g Ultra-low Power (BMA400) Grove - 3 Axis Digital Accelerometer±16g Ultra-low Power (BMA400) The Grove - 3-Axis Digital Accelerometer ±16g Ultra-low Power (BMA400) sensor is a 12 bit, digital, triaxial acceleration sensor with smart

More information

Application Note Operation of the Jameco and SD Card Data Storage on the Teensy Ferris Chu

Application Note Operation of the Jameco and SD Card Data Storage on the Teensy Ferris Chu Application Note Operation of the Jameco and SD Card Data Storage on the Teensy Ferris Chu Operation of the Jameco For our system, we used the Jameco XR 2206, a monolithic function generator, to produce

More information

Figure 2: Temperature Biosensor Housing Drawn in SolidWorks (Front View)

Figure 2: Temperature Biosensor Housing Drawn in SolidWorks (Front View) David Knoff Senior Design Weekly Report 3/15/2013 Overview and Completed Work: This week I focused on drawing the temperature biosensor housing in SolidWorks and getting the fall detection biosensor working

More information

Triple Axis Accelerometer FXLN83XX Series

Triple Axis Accelerometer FXLN83XX Series Triple Axis Accelerometer FXLN83XX Series Introduction 3-Axis acceleration sensor is an electronic equipment which could measure the acceleration during the object motion. It could help you to analyse

More information

SparkFun Blocks for Intel Edison - 9 Degrees of Freedom Block

SparkFun Blocks for Intel Edison - 9 Degrees of Freedom Block Page 1 of 8 SparkFun Blocks for Intel Edison - 9 Degrees of Freedom Block Introduction The 9 Degrees of Freedom Block for the Intel Edison uses the LSM9DS0 9DOF IMU for full-range motion sensing. Use this

More information

ADC to I 2 C. Data Sheet. 10 Channel Analog to Digital Converter. with output via I 2 C

ADC to I 2 C. Data Sheet. 10 Channel Analog to Digital Converter. with output via I 2 C Data Sheet 10 Channel Analog to Digital Converter with output via I 2 C Introduction Many microcontroller projects involve the use of sensors like Accelerometers, Gyroscopes, Temperature, Compass, Barometric,

More information

CONSTRUCTION GUIDE The pendulumrobot. Robobox. Level X

CONSTRUCTION GUIDE The pendulumrobot. Robobox. Level X CONSTRUCTION GUIDE The pendulumrobot Robobox Level X This box allows us to introduce a key element of modern robotics, the gyroscope accelerometer sensor. As its name suggests, this component has two parts,

More information

MMA axis digital accelerometer module

MMA axis digital accelerometer module MMA7455 3-axis digital accelerometer module Instruction The MMA7455L is a Digital Output (I2C/SPI), low power, low profile capacitive micromachined accelerometer featuring signal conditioning, a low pass

More information

#include "DHT.h" DHT dht(dhtpin, DHTTYPE); // Date and time functions using a DS1307 RTC connected via I2C and Wire lib

#include DHT.h DHT dht(dhtpin, DHTTYPE); // Date and time functions using a DS1307 RTC connected via I2C and Wire lib #include "DHT.h" #define DHTPIN 2 // what pin we're connected to // Uncomment whatever type you're using! #define DHTTYPE DHT11 // DHT 11 //#define DHTTYPE DHT22 // DHT 22 (AM2302) //#define DHTTYPE DHT21

More information

Lab 4: Determining temperature from a temperature sensor

Lab 4: Determining temperature from a temperature sensor Start on a fresh page and write your name and your partners names on the top right corner of the page. Write the title of the lab clearly. You may copy the objectives, introduction, equipment, safety and

More information

MPU 9250 C Library. Shivansh Singla

MPU 9250 C Library. Shivansh Singla MPU 9250 C Library Shivansh Singla PREFACE These application notes are used for communicating with MPU 9250 via I2C protocol based on the application notes [1] released by Daniel Fiske, Michael Lam and

More information

Gravity: BMI160 6-Axis Inertial Motion Sensor SKU: SEN0250

Gravity: BMI160 6-Axis Inertial Motion Sensor SKU: SEN0250 Gravity: BMI160 6-Axis Inertial Motion Sensor SKU: SEN0250 Introduction The BMI160 6-axis inertial motion sensor is a new product from DFRobot. It is based on Bosch BMI160 6-axis MEMS sensor which integrates

More information

Sensors III.... Awaiting... Jens Dalsgaard Nielsen - 1/25

Sensors III.... Awaiting... Jens Dalsgaard Nielsen - 1/25 Sensors III... Awaiting... Jens Dalsgaard Nielsen - 1/25 NTC resume which end of curve? Accuracy Selection of R, R ntc Jens Dalsgaard Nielsen - 2/25 NTC II - simple version http://www.control.aau.dk/~jdn/edu/doc/datasheets/ntccode/

More information

CHR-6dm Attitude and Heading Reference System Product datasheet - Rev. 1.0, Preliminary

CHR-6dm Attitude and Heading Reference System Product datasheet - Rev. 1.0, Preliminary Device Overview The CHR-6dm AHRS is a cost-effective orientation sensor providing yaw, pitch, and roll angle outputs at up to 300 Hz. An Extended Kalman Filter (EKF) combines data from onboard accelerometers,

More information

Application Information

Application Information Application Information D Linear or D Angle Sensing with the ALS00 Hall-Effect IC By Wade Bussing and Robert Bate, Abstract This application note describes the use of the ALS00 D Linear Hall-Effect Sensor

More information

#define CE_PIN 12 //wireless module CE pin #define CSN_PIN 13 //wireless module CSN pin. #define angleaveragenum 1

#define CE_PIN 12 //wireless module CE pin #define CSN_PIN 13 //wireless module CSN pin. #define angleaveragenum 1 /***************************************************************************************************** define statements *****************************************************************************************************/

More information

Arduino Uno Microcontroller Overview

Arduino Uno Microcontroller Overview Innovation Fellows Program Arduino Uno Microcontroller Overview, http://saliterman.umn.edu/ Department of Biomedical Engineering, University of Minnesota Arduino Uno Power & Interface Reset Button USB

More information

ITG-3200 Hookup Guide

ITG-3200 Hookup Guide Page 1 of 9 ITG-300 Hookup Guide Introduction This is a breakout board for InvenSense s ITG-300, a groundbreaking triple-axis, digital output gyroscope. The ITG-300 features three 16-bit analog-to-digital

More information

ADXL343 Breakout Learning Guide

ADXL343 Breakout Learning Guide ADXL343 Breakout Learning Guide Created by Kevin Townsend Last updated on 2019-02-19 07:38:05 PM UTC Guide Contents Guide Contents Overview Technical Characteristics Pinout Power Pins Digital Pins Assembly

More information

CISS Communication Protocol Bluetooth LE

CISS Communication Protocol Bluetooth LE CISS Communication Protocol Bluetooth LE BLE Communication Protocol - CISS 2 17 Table of contents 1 Change-log 3 2 General information & limitations 3 3 I40 Bluetooth Low Energy profile 4 3.1 Profile description

More information

MAG3110 Magnetometer Hookup Guide

MAG3110 Magnetometer Hookup Guide MAG3110 Magnetometer Hookup Guide CONTRIBUTORS: AGLASS0FMILK FAVORITE 0 Introduction The SparkFun MAG3110 Triple Axis Magnetometer is a breakout board for the 3-axis magnetometer from NXP/Freescale. It

More information

CyberAtom X-202 USER MANUAL. Copyrights Softexor 2015 All Rights Reserved.

CyberAtom X-202 USER MANUAL. Copyrights Softexor 2015 All Rights Reserved. CyberAtom X-202 USER MANUAL Copyrights Softexor 2015 All Rights Reserved. X-202 Contents ii Contents About...5 Block Diagram... 5 Axes Conventions...5 System Startup... 6 Hardware Reset...6 LED indicator...

More information

Arduino Uno. Power & Interface. Arduino Part 1. Introductory Medical Device Prototyping. Digital I/O Pins. Reset Button. USB Interface.

Arduino Uno. Power & Interface. Arduino Part 1. Introductory Medical Device Prototyping. Digital I/O Pins. Reset Button. USB Interface. Introductory Medical Device Prototyping Arduino Part 1, http://saliterman.umn.edu/ Department of Biomedical Engineering, University of Minnesota Arduino Uno Power & Interface Reset Button USB Interface

More information

CISS - Connected Industrial Sensor Solution

CISS - Connected Industrial Sensor Solution CISS - Connected Industrial Sensor Solution BLE Communication Protocol 1 Table of contents 1 Change-log 3 2 General information & limitations 3 3 I40 Bluetooth Low Energy profile 4 3.1 Profile description

More information

Arduino EEPROM module 512K for Sensor Shield

Arduino EEPROM module 512K for Sensor Shield Arduino EEPROM module 512K for Sensor Shield Experiment Steps This is a new designed for small data size storage. It can help to extend the EEPROM storage of Arduino. This module uses I2C to connect to

More information

Gyroscope Module 3-Axis L3G4200D (#27911)

Gyroscope Module 3-Axis L3G4200D (#27911) Web Site: www.parallax.com Forums: forums.parallax.com Sales: sales@parallax.com Technical: support@parallax.com Office: (916) 624-8333 Fax: (916) 624-8003 Sales: (888) 512-1024 Tech Support: (888) 997-8267

More information

CyberAtom X-200 USER MANUAL. Copyrights Softexor 2015 All Rights Reserved.

CyberAtom X-200 USER MANUAL. Copyrights Softexor 2015 All Rights Reserved. CyberAtom X-200 USER MANUAL Copyrights Softexor 2015 All Rights Reserved. X-200 Contents ii Contents About...6 Block Diagram... 6 Axes Conventions...6 System Startup... 7 Selecting Power Source...7 Hardware

More information

DriftLess Technology to improve inertial sensors

DriftLess Technology to improve inertial sensors Slide 1 of 19 DriftLess Technology to improve inertial sensors Marcel Ruizenaar, TNO marcel.ruizenaar@tno.nl Slide 2 of 19 Topics Problem, Drift in INS due to bias DriftLess technology What is it How it

More information

R&D Centre: GT Silicon Pvt Ltd 171, MIG, Awadhpuri, Block B, Lakhanpur, Kanpur (UP), India, PIN

R&D Centre: GT Silicon Pvt Ltd 171, MIG, Awadhpuri, Block B, Lakhanpur, Kanpur (UP), India, PIN MIMUscope Instruction Manual Revision 1.1 R&D Centre: GT Silicon Pvt Ltd 171, MIG, Awadhpuri, Block B, Lakhanpur, Kanpur (UP), India, PIN 208024 Tel: +91 512 258 0039 Fax: +91 512 259 6177 Email: hello@oblu.io

More information

CHIMU Micro AHRS User Manual

CHIMU Micro AHRS User Manual CHIMU Micro AHRS User Manual Table of Contents Contents 1. Introduction... 4 1.1 Limitations... 4 1.1.1 Rate limits... 4 1.1.2 Acceleration limits... 4 1.1.3 Magnetic field limits... 4 1.1.4 BIT and User

More information

BNO055 Quick start guide

BNO055 Quick start guide BNO055 Quick start guide Bosch Sensortec Application note: BNO055 Quick start guide Document revision 1.0 Document release date Document number Mar.2015 BST-BNO055-AN007-00 Technical reference code 0 273

More information

Me 3-Axis Accelerometer and Gyro Sensor

Me 3-Axis Accelerometer and Gyro Sensor Me 3-Axis Accelerometer and Gyro Sensor SKU: 11012 Weight: 20.00 Gram Description: Me 3-Axis Accelerometer and Gyro Sensor is a motion processing module. It can use to measure the angular rate and the

More information

MANUFACTURING MONITORING SYSTEM FOR TOOL STATUS SHITONG XIONG THESIS

MANUFACTURING MONITORING SYSTEM FOR TOOL STATUS SHITONG XIONG THESIS MANUFACTURING MONITORING SYSTEM FOR TOOL STATUS BY SHITONG XIONG THESIS Submitted in partial fulfillment of the requirements for the degree of Master of Science in Mechanical Engineering in the Graduate

More information

LSM303C 6DoF Hookup Guide

LSM303C 6DoF Hookup Guide Page 1 of 12 LSM303C 6DoF Hookup Guide Introduction The LSM303C is a 6 degrees of freedom (6DOF) inertial measurement unit (IMU) in a sigle package. It houses a 3-axis accelerometer, and a 3-axis magnetometer.

More information

Adafruit CAP1188 Breakout

Adafruit CAP1188 Breakout Adafruit CAP1188 Breakout Created by lady ada Last updated on 2014-05-14 12:00:10 PM EDT Guide Contents Guide Contents Overview Pinouts Power pins I2C interface pins SPI inteface pins Other interfacing

More information

Memo on development of the car-rangefinder device/data logger for crosswalk study

Memo on development of the car-rangefinder device/data logger for crosswalk study Memo on development of the car-rangefinder device/data logger for crosswalk study -Alex Bigazzi; abigazzi@pdx.edu; alexbigazzi.com; Sept. 16 th -19 th, 2013 The device is supposed to measure distances

More information

Technical Manual Rev1.1

Technical Manual Rev1.1 Technical Manual Rev1.1 CruizCore R1070P Digital Gyroscope 2015. 06 Copyright Microinfinity Co., Ltd. http://www.minfinity.com Contact Info. EMAIL: support@minfinity.com TEL: +82 31 546 7408 FAX: +82 31

More information

Using Sensors with the RoboRIO

Using Sensors with the RoboRIO Using Sensors with the RoboRIO Jeff Bernardis jeff.bernardis@gmail.com David Zhang david.chao.zhang@gmail.com A copy of this presentation is available at: https://drive.google.com/file/d/1sjlpsrm8wbguehgyblcopmrnw2qsmxkf/view?usp=sharing

More information

V ARIENSE SENSE Y O UR W ORLD. Inertial Measurement Unit VMU931. User Guide. Version 1.3. March VARIENSE INC.

V ARIENSE SENSE Y O UR W ORLD. Inertial Measurement Unit VMU931. User Guide. Version 1.3. March VARIENSE INC. V ARIENSE SENSE Y O UR W ORLD Inertial Measurement Unit VMU931 Version 1.3 March 2018 2017 VARIENSE INC. Contents 1 Product Overview 1 2 Safety 2 3 Setup 3 3.1 Mounting the sensor...........................................

More information

Gamma sensor module GDK101

Gamma sensor module GDK101 Application Note: Interfacing with Arduino over I 2 C The Arduino makes an ideal platform for prototyping and data collection with the Gamma sensors. Electrical Connections Interfacing with the sensor

More information

MAG3110 Frequently Asked Questions

MAG3110 Frequently Asked Questions Freescale Semiconductor Frequently Asked Questions Document Number: Rev 1, 05/2012 MAG3110 Frequently Asked Questions Applications Collateral for the MAG3110 to Aid Customer Questions Data Sheet, Fact

More information

AN055. Replacing KX023, KX123, KX124 with KXG07. Introduction

AN055. Replacing KX023, KX123, KX124 with KXG07. Introduction Replacing KX023, KX123, KX124 with KXG07 Introduction The purpose of this application note is to illustrate how the Kionix KXG07 accelerometergyroscope can replace an existing Kionix KX023, KX123, or KX124

More information

Adafruit LSM9DS1 Accelerometer + Gyro + Magnetometer 9-DOF Breakout

Adafruit LSM9DS1 Accelerometer + Gyro + Magnetometer 9-DOF Breakout Adafruit LSM9DS1 Accelerometer + Gyro + Magnetometer 9-DOF Breakout Created by lady ada Last updated on 2018-08-17 09:59:41 PM UTC Guide Contents Guide Contents Overview Pinouts Power Pins I2C Pins SPI

More information

CrossWorks Device Library

CrossWorks Device Library Version: 3.3 2014 Rowley Associates Limited 2 Contents Contents... 15 Protocol API Reference... 17 ... 17 CTL_PARALLEL_BUS_t... 18 ctl_bus_lock... 19 ctl_bus_lock_ex... 20 ctl_bus_read... 21

More information

Bluno M0 Mainboard SKU: DFR0416

Bluno M0 Mainboard SKU: DFR0416 Bluno M0 Mainboard SKU: DFR0416 Bluno M0 is the only ARM Cortex-M0 Arduino Microcontroller that supports 5V standard logic level. With built-in Bluetooth chip, Bluno M0 supports multi-functions such as

More information

17. I 2 C communication channel

17. I 2 C communication channel 17. I 2 C communication channel Sometimes sensors are distant to the microcontroller. In such case it might be impractical to send analog signal from the sensor to the ADC included in the microcontroller

More information

Pedometer 3 Click. PID: MIKROE 3259 Weight: 24 g

Pedometer 3 Click. PID: MIKROE 3259 Weight: 24 g Pedometer 3 Click PID: MIKROE 3259 Weight: 24 g The Pedometer 3 click is a tri-axis acceleration sensing Click board utilizing the KX126-1063. An advanced three-axis acceleration sensor, the KX126-1063

More information

Serial Peripheral Interface Bus SPI

Serial Peripheral Interface Bus SPI Serial Peripheral Interface Bus SPI SPI Bus Developed by Motorola in the mid 1980 s Full-duplex, master-slave serial bus suited to data streaming applications for embedded systems Existing peripheral busses

More information

EP486 Microcontroller Applications

EP486 Microcontroller Applications EP486 Microcontroller Applications Topic 6 Step & Servo Motors Joystick & Water Sensors Department of Engineering Physics University of Gaziantep Nov 2013 Sayfa 1 Step Motor http://en.wikipedia.org/wiki/stepper_motor

More information

UM6 Ultra-Miniature Orientation Sensor Datasheet

UM6 Ultra-Miniature Orientation Sensor Datasheet 1. Introduction Device Overview The UM6 Ultra-Miniature Orientation Sensor combines sensor measurements from rate gyros, accelerometers, and magnetic sensors to measure orientation at 1000 Hz. Angle estimates

More information

CHAPTER V IMPLEMENTATION AND TESTING

CHAPTER V IMPLEMENTATION AND TESTING CHAPTER V IMPLEMENTATION AND TESTING 5.1 Implementation 5.1.1 Arduino IDE This project uses the arduino IDE application. This application used to compile and to upload the program. The program can be seen

More information

Sanguino TSB. Introduction: Features:

Sanguino TSB. Introduction: Features: Sanguino TSB Introduction: Atmega644 is being used as CNC machine driver for a while. In 2012, Kristian Sloth Lauszus from Denmark developed a hardware add-on of Atmega644 for the popular Arduino IDE and

More information

Parallax LSM9DS1 9-axis IMU Module (#28065)

Parallax LSM9DS1 9-axis IMU Module (#28065) Web Site: www.parallax.com Forums: forums.parallax.com Sales: sales@parallax.com Technical:support@parallax.com Office: (916) 624-8333 Fax: (916) 624-8003 Sales: (888) 512-1024 Tech Support: (888) 997-8267

More information

SD Card shield V4.0. Introduction. Application Ideas. Music Player with LinkIt One

SD Card shield V4.0. Introduction. Application Ideas. Music Player with LinkIt One SD Card shield V4.0 Introduction This is the newly released SD card V4.0 shield. It provides a storage space for your Arduino. Users can read/write SD card via Arduino s built-in SD library. It supports

More information

CHIMU Micro AHRS User Manual

CHIMU Micro AHRS User Manual CHIMU Micro AHRS User Manual Table of Contents Contents 1. Introduction... 5 1.1 Limitations... 5 1.1.1 Rate limits... 5 1.1.2 Acceleration limits... 5 1.1.3 Magnetic field limits... 5 1.1.4 BIT and User

More information

MPU Hardware Offset Registers Application Note

MPU Hardware Offset Registers Application Note InvenSense Inc. 1745 Technology Drive, San Jose, CA, 95110 U.S.A. Tel: +1 (408) 501-2200 Fax: +1 (408) 988-7339 Website: www.invensense.com Document Number: AN-XX-XXXX-XX Revision: 1.0 MPU Hardware Offset

More information

EXPERIMENT 7 Please visit https://www.arduino.cc/en/reference/homepage to learn all features of arduino before you start the experiments

EXPERIMENT 7 Please visit https://www.arduino.cc/en/reference/homepage to learn all features of arduino before you start the experiments EXPERIMENT 7 Please visit https://www.arduino.cc/en/reference/homepage to learn all features of arduino before you start the experiments TEMPERATURE MEASUREMENT AND CONTROL USING LM35 Purpose: To measure

More information

Fully Integrated Thermal Accelerometer MXC6225XU

Fully Integrated Thermal Accelerometer MXC6225XU Powerful Sensing Solutions for a Better Life Fully Integrated Thermal Accelerometer MXC6225XU Document Version 1.0 page 1 Features General Description Fully Integrated Thermal Accelerometer X/Y Axis, 8

More information

ZX Distance and Gesture Sensor SMD Hookup Guide

ZX Distance and Gesture Sensor SMD Hookup Guide Page 1 of 16 ZX Distance and Gesture Sensor SMD Hookup Guide Introduction The ZX Distance and Gesture Sensor is a collaboration product with XYZ Interactive. The innovative people at XYZ Interactive have

More information

1.6inch SPI Module user manual

1.6inch SPI Module user manual 1.6inch SPI Module user manual www.lcdwiki.com 1 / 10 Rev1.0 Product Description The 1.6 module is tested using the ESP8266MOD D1 Mini development board, Both the test program and the dependent libraries

More information

Microcontrollers and Interfacing

Microcontrollers and Interfacing Microcontrollers and Interfacing Week 10 Serial communication with devices: Serial Peripheral Interconnect (SPI) and Inter-Integrated Circuit (I 2 C) protocols College of Information Science and Engineering

More information

How Tall Is It? Created by Carter Nelson. Last updated on :56:46 PM UTC

How Tall Is It? Created by Carter Nelson. Last updated on :56:46 PM UTC How Tall Is It? Created by Carter Nelson Last updated on 2018-08-22 03:56:46 PM UTC Guide Contents Guide Contents Overview Required Parts Other Items Before Starting Circuit Playground Classic Circuit

More information

Arduino notes IDE. Serial commands. Arduino C language. Program structure. Arduino web site:

Arduino notes IDE. Serial commands. Arduino C language. Program structure. Arduino web site: 1 Arduino notes This is not a tutorial, but a collection of personal notes to remember the essentials of Arduino programming. The program fragments are snippets that represent the essential pieces of code,

More information

Rotary Encoder Basics

Rotary Encoder Basics Rotary Encoder Basics A rotary encoder has a fixed number of positions per revolution. These positions are easily felt as small clicks you turn the encoder. The Keyes module that I have has thirty of these

More information

Inertial Measurement Units I!

Inertial Measurement Units I! ! Inertial Measurement Units I! Gordon Wetzstein! Stanford University! EE 267 Virtual Reality! Lecture 9! stanford.edu/class/ee267/!! Lecture Overview! coordinate systems (world, body/sensor, inertial,

More information

FUNCTIONS USED IN CODING pinmode()

FUNCTIONS USED IN CODING pinmode() FUNCTIONS USED IN CODING pinmode() Configures the specified pin to behave either as an input or an output. See the description of digital pins for details on the functionality of the pins. As of Arduino

More information

Digital Design W/S Arduino 101 Bluetooth Interfacing

Digital Design W/S Arduino 101 Bluetooth Interfacing Digital Design W/S Arduino 101 Bluetooth Interfacing Tom Moxon @PatternAgents Instructions on Hackster.Io https://www.hackster.io/moxbox/arduino101bluetooth-interfacing-3fc2bc source: PatternAgents Arduino101

More information

Sensor Toolbox (Part 2): Inertial Sensors

Sensor Toolbox (Part 2): Inertial Sensors November 2010 Sensor Toolbox (Part 2): Inertial Sensors AMF-ENT-T1118 Michael Steffen MCU & Sensor Field Application Engineer Expert Reg. U.S. Pat. & Tm. Off. BeeKit, BeeStack, CoreNet, the Energy Efficient

More information

Micro SD Card Breakout Board Tutorial

Micro SD Card Breakout Board Tutorial Micro SD Card Breakout Board Tutorial Created by lady ada Last updated on 2016-09-21 05:58:46 PM UTC Guide Contents Guide Contents Introduction Look out! What to watch for! Formatting notes Wiring Library

More information

Skill Level: Beginner

Skill Level: Beginner ADXL345 Quickstart Guide by zaggrad January 10, 2011 Skill Level: Beginner Description: The ADXL345 is a small, thin, low power, 3-axis accelerometer with high resolution (13-bit) measurement at up to

More information

IOX-16 User s Manual. Version 1.00 April Overview

IOX-16 User s Manual. Version 1.00 April Overview UM Unified Microsystems IOX-16 User s Manual Version 1.00 April 2013 Overview The IOX-16 Arduino compatible shield is an easy way to add 16 additional digital Input/Output (I/O) lines to your Arduino system.

More information

UM LPC General Purpose Shield (OM13082) Rev November Document information. Keywords

UM LPC General Purpose Shield (OM13082) Rev November Document information. Keywords Rev. 1.0 17 November 2015 User manual Document information Info Content Keywords LPCXpresso, LPC General Purpose Shield, OM13082 Abstract LPC General Purpose Shield User Manual Revision history Rev Date

More information

IMU Axis Gyro Evaluation Board Application Note

IMU Axis Gyro Evaluation Board Application Note IMU-3000 3-Axis Gyro Evaluation Board Application Note A printed copy of this document is NOT UNDER REVISION CONTROL unless it is dated and stamped in red ink as, REVISION CONTROLLED COPY. InvenSense,

More information

Adafruit LSM9DS0 Accelerometer + Gyro + Magnetometer 9-DOF Breakouts

Adafruit LSM9DS0 Accelerometer + Gyro + Magnetometer 9-DOF Breakouts Adafruit LSM9DS0 Accelerometer + Gyro + Magnetometer 9-DOF Breakouts Created by lady ada Last updated on 2018-08-11 09:54:22 PM UTC Guide Contents Guide Contents Overview Pinouts Flora Sewable Version

More information

Package RAHRS. July 18, 2015

Package RAHRS. July 18, 2015 Package RAHRS July 18, 2015 Type Package Title Data Fusion Filters for Attitude Heading Reference System (AHRS) with Several Variants of the Kalman Filter and the Mahoney and Madgwick Filters Version 1.0.2

More information

Digital Design W/S Arduino 101 Bluetooth Interfacing

Digital Design W/S Arduino 101 Bluetooth Interfacing Digital Design W/S Arduino 101 Bluetooth Interfacing Tom Moxon @PatternAgents Intros PDX Hackerspace Jon and Melinda Please donate to help support the Hackerspace, and ask them if you are interested in

More information

Sten-SLATE ESP Kit. Description and Programming

Sten-SLATE ESP Kit. Description and Programming Sten-SLATE ESP Kit Description and Programming Stensat Group LLC, Copyright 2016 Overview In this section, you will be introduced to the processor board electronics and the arduino software. At the end

More information

EM SENtral Motion Coprocessor

EM SENtral Motion Coprocessor EM7180 - SENtral Motion Coprocessor Register Map 1 SENTRAL REGISTER MAP... 2 2 UPLOAD REGISTERS... 5 2.1 UploadAddress (0x95& 0x96)... 5 2.2 UploadData (0x96)... 6 2.3 CRC_Host (0x97 0x9A)... 6 3 CONTROL

More information

RAMPS V1.4 Tutorial. 1. Mount the board onto arduono mega 2560, and plug in 5 A4988 driver board, as shown in the picture:

RAMPS V1.4 Tutorial. 1. Mount the board onto arduono mega 2560, and plug in 5 A4988 driver board, as shown in the picture: RAMPS V1.4 Tutorial 1. Mount the board onto arduono mega 2560, and plug in 5 A4988 driver board, as shown in the picture: 2. Add 12V power supply to the green port according to the label on the board 3.

More information

Accelerometer board. EB068

Accelerometer board.   EB068 Accelerometer board www.matrixtsl.com EB0 Contents About this document Board layout General information Testing this product Circuit description 5 Circuit diagram Copyright 0 Matrix TSL About this document

More information

micro:bit Lesson 1. Using the Built-in Sensors

micro:bit Lesson 1. Using the Built-in Sensors micro:bit Lesson 1. Using the Built-in Sensors Created by Simon Monk Last updated on 2018-03-02 05:46:13 PM UTC Guide Contents Guide Contents Overview Magnetometer Magnet Detector High-strength 'rare earth'

More information

Sensors and Actuators

Sensors and Actuators Sensors and Actuators March 07, 2015 Stephen Wilkerson The Army Research Laboratory, Aberdeen Proving Grounds and Frank Wattenberg, United States Military Academy, West Point Abstract In this paper we

More information

Mio- x AHRS. Attitude and Heading Reference System. Engineering Specifications

Mio- x AHRS. Attitude and Heading Reference System. Engineering Specifications General Description Mio- x AHRS Attitude and Heading Reference System Engineering Specifications Rev. G 2012-05-29 Mio-x AHRS is a tiny sensormodule consists of 9 degree of freedom motion sensors (3 accelerometers,

More information

Schedule. Sanford Bernhardt, Sangster, Kumfer, Michalaka. 3:10-5:00 Workshop: Build a speedometer 5:15-7:30 Dinner and Symposium: Group 2

Schedule. Sanford Bernhardt, Sangster, Kumfer, Michalaka. 3:10-5:00 Workshop: Build a speedometer 5:15-7:30 Dinner and Symposium: Group 2 Schedule 8:00-11:00 Workshop: Arduino Fundamentals 11:00-12:00 Workshop: Build a follower robot 1:30-3:00 Symposium: Group 1 Sanford Bernhardt, Sangster, Kumfer, Michalaka 3:10-5:00 Workshop: Build a speedometer

More information

MPU-6000/MPU Axis Evaluation Board User Guide

MPU-6000/MPU Axis Evaluation Board User Guide MPU-6000/MPU-6050 9-Axis Evaluation Board User Guide InvenSense, Inc., 1197 Borregas Ave., Sunnyvale, Ca 94089, USA 1 AN-MPU-6000EVB-00 Table of Contents 1. REVISION HISTORY... 3 2. PURPOSE... 4 2.1 USAGE...

More information

Modern Robotics Inc. Sensor Documentation

Modern Robotics Inc. Sensor Documentation Sensor Documentation Version 1.0.1 September 9, 2016 Contents 1. Document Control... 3 2. Introduction... 4 3. Three-Wire Analog & Digital Sensors... 5 3.1. Program Control Button (45-2002)... 6 3.2. Optical

More information

YOU WILL NOT BE ALLOWED INTO YOUR LAB SECTION WITHOUT THE REQUIRED PRE-LAB.

YOU WILL NOT BE ALLOWED INTO YOUR LAB SECTION WITHOUT THE REQUIRED PRE-LAB. Page 1/5 Revision 2 OBJECTIVES Learn how to use SPI communication to interact with an external IMU sensor package. Stream and plot real-time XYZ acceleration data with USART to Atmel Studio s data visualizer.

More information

Compass Module 3-Axis HMC5883L (#29133)

Compass Module 3-Axis HMC5883L (#29133) Web Site: www.parallax.com Forums: forums.parallax.com Sales: sales@parallax.com Technical: support@parallax.com Office: (916) 6248333 Fax: (916) 6248003 Sales: (888) 5121024 Tech Support: (888) 9978267

More information

Grove - Thumb Joystick

Grove - Thumb Joystick Grove - Thumb Joystick Introduction 3.3V 5.0V Analog Grove - Thumb Joystick is a Grove compatible module which is very similar to the analog joystick on PS2 (PlayStation 2) controllers. The X and Y axes

More information

Grove - CO2 Sensor. Introduction

Grove - CO2 Sensor. Introduction Grove - CO2 Sensor Introduction 3.3V 5.0V UART The Grove - CO2 Sensor module is infrared CO2 sensor high sensitivity and high resolution. Infrared CO2 sensor MH-Z16 Is a general-purpose, small sensors,

More information

OPERATING MANUAL AND TECHNICAL REFERENCE

OPERATING MANUAL AND TECHNICAL REFERENCE MODEL WFG-D-130 HIGH SPEED DIGITAL 3 AXIS FLUXGATE MAGNETOMETER OPERATING MANUAL AND TECHNICAL REFERENCE December, 2012 Table of Contents I. Description of the System 1 II. System Specifications.. 2 III.

More information

I2GPS v1. An easy to use RTC, GPS and SD memory card interface brought to you by

I2GPS v1. An easy to use RTC, GPS and SD memory card interface brought to you by I2GPS v1 An easy to use RTC, GPS and SD memory card interface brought to you by www.wyolum.com Page 1 / 14 info@wyolum.com Features micro SD card reader Temperature controlled, precision Real Time clock,

More information

Arduino Prof. Dr. Magdy M. Abdelhameed

Arduino Prof. Dr. Magdy M. Abdelhameed Course Code: MDP 454, Course Name:, Second Semester 2014 Arduino What is Arduino? Microcontroller Platform Okay but what s a Microcontroller? Tiny, self-contained computers in an IC Often contain peripherals

More information

LSM303 Tilt Compensated Compass(SEN0079)

LSM303 Tilt Compensated Compass(SEN0079) LSM303 Tilt Compensated Compass(SEN0079) Contents 1 Introduction 2 Specifications 3 Applications 4 Connection Diagram 5 Download library 6 Sample Code(Read Navigation Angle) 7 Sample Code(Read Raw Data)

More information

MoveaTV RF4CE Remote User Guide

MoveaTV RF4CE Remote User Guide INTRODUCTION MoveaTV RF4CE Remote User Guide MoveaTV remote user guide is a reference document for developers to help them evaluating the use of our motion technology for interactive TV applications, and

More information