IMU etiketine sahip kayıtlar gösteriliyor. Tüm kayıtları göster
IMU etiketine sahip kayıtlar gösteriliyor. Tüm kayıtları göster

2014-08-07

Accelerometer + Gyroscope on Ultrasound Probe Used to Create Perfect Panoramic Image

Panoramic Ultrasound


Accelerometer + gyroscope on an ultrasound probe can be used to create panoramic image. Sensors like MPU-6050 with software stitching can be uses to stitch multiple images to final image however imperfect the motions of transducer.

Imperfections in probe motion can be due to imperfections in XYZ speed or variation in XYZ angle. Probe angle can vary due to surface irregularities of patients skin or variations in wrist motion of ultrasound operator. Whatever the source of imperfection gyroscope and accelerometer also can be used to align the plane of the images.

All acquired images should be placed in a 3D volume and stitched after selecting an imaginary ideal mid plane.



2014-07-08

Arduino UNO + MPU-6050 Pitch - Roll Code for 2 Servo motors

The following code uses Arduino UNO alongside GY-521 breakout board with MPU-6050 Accelerometer and Gyroscope to control two servo motors. I couldn't find an alternative good code. Just managed to modify the below code from original Jeff Rowberg version to do the motion simulation task. Currently the two axis servo motors follow MPU-6050 breakout motions. To make a gimbal I think I would need to modify the code so that servo angles become "180-current" value. I tried this code a few minutes ago. Good news is that it is smooth and it does not jitter. I wonder if it can be made faster. I have some doubts whether if I can use this code as gimbal to stablize GoPro. Reaction time and mechanical power would be important in Gimbal setting usage. The code is dirty looking but it works fine. I will have to do some clean-up to get rid of unnecessary lines or do a complete rewrite. I just share it because I could not find a better code.

With a radio remote transmitter the sensor can be used as DIY camera head tracking for FPV cameras. You turn your head and camera would look at the direction you turned your head. You can find "Head Tracker FPV" - project's on Youtube but most would not say how they managed to do it.






// I2C device class (I2Cdev) demonstration Arduino sketch for MPU6050 class using DMP (MotionApps v2.0)
// 6/21/2012 by Jeff Rowberg <jeff@rowberg.net>
// Updates should (hopefully) always be available at https://github.com/jrowberg/i2cdevlib
//
// Changelog:
//      2013-07-08 - Nevit Dilmen Modified for use with 2 axis Roll-Pitch servos as X&Y angle changes
//                   http://nevit.blogspot.com.tr/search/label/MPU-6050
//                   It should be simpler hopefully. 
//      2013-05-08 - added seamless Fastwire support
//                 - added note about gyro calibration
//      2012-06-21 - added note about Arduino 1.0.1 + Leonardo compatibility error
//      2012-06-20 - improved FIFO overflow handling and simplified read process
//      2012-06-19 - completely rearranged DMP initialization code and simplification
//      2012-06-13 - pull gyro and accel data from FIFO packet instead of reading directly
//      2012-06-09 - fix broken FIFO read sequence and change interrupt detection to RISING
//      2012-06-05 - add gravity-compensated initial reference frame acceleration output
//                 - add 3D math helper file to DMP6 example sketch
//                 - add Euler output and Yaw/Pitch/Roll output formats
//      2012-06-04 - remove accel offset clearing for better results (thanks Sungon Lee)
//      2012-06-01 - fixed gyro sensitivity to be 2000 deg/sec instead of 250
//      2012-05-30 - basic DMP initialization working

/* ============================================
I2Cdev device library code is placed under the MIT license
Copyright (c) 2012 Jeff Rowberg

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
===============================================
*/

//Servo 
#include <Servo.h>

Servo myservoY; // Roll
Servo myservoX; // Pitch

// I2Cdev and MPU6050 must be installed as libraries, or else the .cpp/.h files
// for both classes must be in the include path of your project
#include "I2Cdev.h"

#include "MPU6050_6Axis_MotionApps20.h"
//#include "MPU6050.h" // not necessary if using MotionApps include file

// Arduino Wire library is required if I2Cdev I2CDEV_ARDUINO_WIRE implementation
// is used in I2Cdev.h
#if I2CDEV_IMPLEMENTATION == I2CDEV_ARDUINO_WIRE
    #include "Wire.h"
#endif

// class default I2C address is 0x68
// specific I2C addresses may be passed as a parameter here
// AD0 low = 0x68 (default for SparkFun breakout and InvenSense evaluation board)
// AD0 high = 0x69
MPU6050 mpu;
//MPU6050 mpu(0x69); // <-- use for AD0 high

/* =========================================================================
   NOTE: In addition to connection 3.3v, GND, SDA, and SCL, this sketch
   depends on the MPU-6050's INT pin being connected to the Arduino's
   external interrupt #0 pin. On the Arduino Uno and Mega 2560, this is
   digital I/O pin 2.
 * ========================================================================= */

/* =========================================================================
   NOTE: Arduino v1.0.1 with the Leonardo board generates a compile error
   when using Serial.write(buf, len). The Teapot output uses this method.
   The solution requires a modification to the Arduino USBAPI.h file, which
   is fortunately simple, but annoying. This will be fixed in the next IDE
   release. For more info, see these links:

   http://arduino.cc/forum/index.php/topic,109987.0.html
   http://code.google.com/p/arduino/issues/detail?id=958
 * ========================================================================= */



// uncomment "OUTPUT_READABLE_YAWPITCHROLL" if you want to see the yaw/
// pitch/roll angles (in degrees) calculated from the quaternions coming
// from the FIFO. Note this also requires gravity vector calculations.
// Also note that yaw/pitch/roll angles suffer from gimbal lock (for
// more info, see: http://en.wikipedia.org/wiki/Gimbal_lock)
#define OUTPUT_READABLE_YAWPITCHROLL

#define LED_PIN 13 // (Arduino is 13, Teensy is 11, Teensy++ is 6)
bool blinkState = false;

// MPU control/status vars
bool dmpReady = false;  // set true if DMP init was successful
uint8_t mpuIntStatus;   // holds actual interrupt status byte from MPU
uint8_t devStatus;      // return status after each device operation (0 = success, !0 = error)
uint16_t packetSize;    // expected DMP packet size (default is 42 bytes)
uint16_t fifoCount;     // count of all bytes currently in FIFO
uint8_t fifoBuffer[64]; // FIFO storage buffer

// orientation/motion vars
Quaternion q;           // [w, x, y, z]         quaternion container
VectorInt16 aa;         // [x, y, z]            accel sensor measurements
VectorInt16 aaReal;     // [x, y, z]            gravity-free accel sensor measurements
VectorInt16 aaWorld;    // [x, y, z]            world-frame accel sensor measurements
VectorFloat gravity;    // [x, y, z]            gravity vector
float euler[3];         // [psi, theta, phi]    Euler angle container
float ypr[3];           // [yaw, pitch, roll]   yaw/pitch/roll container and gravity vector

// packet structure for InvenSense teapot demo
uint8_t teapotPacket[14] = { '$', 0x02, 0,0, 0,0, 0,0, 0,0, 0x00, 0x00, '\r', '\n' };



// ================================================================
// ===               INTERRUPT DETECTION ROUTINE                ===
// ================================================================

volatile bool mpuInterrupt = false;     // indicates whether MPU interrupt pin has gone high
void dmpDataReady() {
    mpuInterrupt = true;
}



// ================================================================
// ===                      INITIAL SETUP                       ===
// ================================================================

void setup() {
    // join I2C bus (I2Cdev library doesn't do this automatically)
    #if I2CDEV_IMPLEMENTATION == I2CDEV_ARDUINO_WIRE
        Wire.begin();
        TWBR = 24; // 400kHz I2C clock (200kHz if CPU is 8MHz)
    #elif I2CDEV_IMPLEMENTATION == I2CDEV_BUILTIN_FASTWIRE
        Fastwire::setup(400, true);
    #endif

//Attach servo

  myservoY.attach(9); // Attach Y servo to pin 9
  myservoX.attach(10);// Attach X servo to pin 10

    // initialize serial communication
    // (115200 chosen because it is required for Teapot Demo output, but it's
    // really up to you depending on your project)
    Serial.begin(115200);
    while (!Serial); // wait for Leonardo enumeration, others continue immediately

    // NOTE: 8MHz or slower host processors, like the Teensy @ 3.3v or Ardunio
    // Pro Mini running at 3.3v, cannot handle this baud rate reliably due to
    // the baud timing being too misaligned with processor ticks. You must use
    // 38400 or slower in these cases, or use some kind of external separate
    // crystal solution for the UART timer.

    // initialize device
    Serial.println(F("Initializing I2C devices..."));
    mpu.initialize();

    // verify connection
    Serial.println(F("Testing device connections..."));
    Serial.println(mpu.testConnection() ? F("MPU6050 connection successful") : F("MPU6050 connection failed"));
/*
    // wait for ready
    Serial.println(F("\nSend any character to begin DMP programming and demo: "));
    while (Serial.available() && Serial.read()); // empty buffer
    while (!Serial.available());                 // wait for data
    while (Serial.available() && Serial.read()); // empty buffer again
*/
    // load and configure the DMP
    Serial.println(F("Initializing DMP..."));
    devStatus = mpu.dmpInitialize();

    // supply your own gyro offsets here, scaled for min sensitivity
    mpu.setXGyroOffset(220);
    mpu.setYGyroOffset(76);
    mpu.setZGyroOffset(-85);
    mpu.setZAccelOffset(1788); // 1688 factory default for my test chip

    // make sure it worked (returns 0 if so)
    if (devStatus == 0) {
        // turn on the DMP, now that it's ready
        Serial.println(F("Enabling DMP..."));
        mpu.setDMPEnabled(true);

        // enable Arduino interrupt detection
        Serial.println(F("Enabling interrupt detection (Arduino external interrupt 0)..."));
        attachInterrupt(0, dmpDataReady, RISING);
        mpuIntStatus = mpu.getIntStatus();

        // set our DMP Ready flag so the main loop() function knows it's okay to use it
        Serial.println(F("DMP ready! Waiting for first interrupt..."));
        dmpReady = true;

        // get expected DMP packet size for later comparison
        packetSize = mpu.dmpGetFIFOPacketSize();
    } else {
        // ERROR!
        // 1 = initial memory load failed
        // 2 = DMP configuration updates failed
        // (if it's going to break, usually the code will be 1)
        Serial.print(F("DMP Initialization failed (code "));
        Serial.print(devStatus);
        Serial.println(F(")"));
    }

    // configure LED for output
    pinMode(LED_PIN, OUTPUT);
}



// ================================================================
// ===                    MAIN PROGRAM LOOP                     ===
// ================================================================

void loop() {
    // if programming failed, don't try to do anything
    if (!dmpReady) return;

    // wait for MPU interrupt or extra packet(s) available
    while (!mpuInterrupt && fifoCount < packetSize) {
        // other program behavior stuff here
        // .
        // .
        // .
        // if you are really paranoid you can frequently test in between other
        // stuff to see if mpuInterrupt is true, and if so, "break;" from the
        // while() loop to immediately process the MPU data
        // .
        // .
        // .
    }

    // reset interrupt flag and get INT_STATUS byte
    mpuInterrupt = false;
    mpuIntStatus = mpu.getIntStatus();

    // get current FIFO count
    fifoCount = mpu.getFIFOCount();

    // check for overflow (this should never happen unless our code is too inefficient)
    if ((mpuIntStatus & 0x10) || fifoCount == 1024) {
        // reset so we can continue cleanly
        mpu.resetFIFO();
        Serial.println(F("FIFO overflow!"));

    // otherwise, check for DMP data ready interrupt (this should happen frequently)
    } else if (mpuIntStatus & 0x02) {
        // wait for correct available data length, should be a VERY short wait
        while (fifoCount < packetSize) fifoCount = mpu.getFIFOCount();

        // read a packet from FIFO
        mpu.getFIFOBytes(fifoBuffer, packetSize);
        
        // track FIFO count here in case there is > 1 packet available
        // (this lets us immediately read more without waiting for an interrupt)
        fifoCount -= packetSize;

        #ifdef OUTPUT_READABLE_YAWPITCHROLL
            // display Euler angles in degrees
            mpu.dmpGetQuaternion(&q, fifoBuffer);
            mpu.dmpGetGravity(&gravity, &q);
            mpu.dmpGetYawPitchRoll(ypr, &q, &gravity);
            Serial.print("ypr\t");
            Serial.print(ypr[0] * 180/M_PI);
            Serial.print("\t");
            Serial.print(ypr[1] * 180/M_PI);
            myservoY.write(int(ypr[1] * -180/M_PI)+90);   // Rotation around Y
            Serial.print("\t");
            Serial.println(ypr[2] * 180/M_PI);
            myservoX.write(int(ypr[2] * 180/M_PI)+90);   // Rotation around X
        #endif


        // blink LED to indicate activity
        blinkState = !blinkState;
        digitalWrite(LED_PIN, blinkState);
    }
    
}











GY521 Arduino connections
--------------------------

  • VCC 3.3v or 5v depending on your GY-521
  • GND Ground
  • SCL A5
  • SDA A4
  • INT D2
  • Servo X D9
  • Servo Y D10
I2C and MPU-6050 libraries should be downloaded and placed according to directions given in the site below: http://www.i2cdevlib.com/devices/mpu6050



2014-06-12

Arduino + MPU-6050 (Gyroscope + Acelerometer) - GY-521 + 2 Servo motors (Simple Code)

As a novice I am trying to put thing together. I am happy that I just made it work.

Arduino Uno as processor
GY-521 / MPU-6050 as accelerometer and Gyroscope.
Breadboard
2 9G Servos Bracket Sensor Mount Pan / Tilt Kit for Gyro - Translucent Blue http://www.dx.com/p/214081

http://playground.arduino.cc/Main/MPU-6050 has starting info on MPU-6050

I used two libraries from I2CDevLib: I2Cdev.h and MPU6050.h
https://github.com/jrowberg/i2cdevlib/

Wire and Servo libraries are already included with Arduino

http://playground.arduino.cc/Learning/I2C
http://www.arduino.cc/en/Reference/Wire
http://www.arduino.cc/en/Reference/Servo

MPU-6050 chip communicates with Arduino using I2C or (read as I square C) communication protocol. I2C bus one of the most common method of communication between varies microcontrollers, sensors etc. All I2C communication is handled by Arduino wire library.

Servo library is needed to control the servo motors.



The code below only uses values from accelerometer. The axis paralel to gravity will have additional 1g force. But shakings from hand will also effect accelerometer. You can see the effect as a shaky servo. I will try to correct it in next version. I am trying to be patient when looking for ways to fix it.
//MPU 6050 2 axis Servo kontrol 

#include <Servo.h>
#include <Wire.h>
#include <I2Cdev.h>
#include <MPU6050.h>

MPU6050 mpu;

int16_t ax, ay, az;
int16_t gx, gy, gz;

Servo myservoY;
Servo myservoX;

int valY;
int prevValY;

int valX;
int prevValX;

void setup() 
{
  Wire.begin();
  Serial.begin(38400);
  Serial.println("Initialize MPU");
  mpu.initialize();
  Serial.println(mpu.testConnection() ? "Connected" : "Connection failed");
  myservoY.attach(9);
  myservoX.attach(10);
}
void loop() 
{
  mpu.getMotion6(&ax, &ay, &az, &gx, &gy, &gz);
  valY = map(ay, -17000, 17000, 0, 179);
  valX = map(ax, -17000, 17000, 0, 179);
  if (valY != prevValY)
  {
    myservoY.write(valY);
    prevValY = valY;
  }

  if (valX != prevValX)
  {
    myservoX.write(valX);
    prevValX = valX;
  }
  delay(50);
}


The connection scheme is
  • Arduino’s +5V to Vcc of MPU6050
  • Arduino’s GND to GND of MPU6050
  • Arduino’s SCL (AN5 in UNO board) to SCL of MPU6050
  • Arduino’s SDA (AN4 in UNO board) to SCK of MPU6050
  • Arduino’s digital pin 2 (INT0) to INT of MPU6050
I improved the design a month later:
Improvements: 
  • Faster time response
  • Fewer unwanted vibrations.
  • No change needed in cable connetctions


2014-04-29

Next good ideas in Ultrasound probe techonology?

Next ideas in Ultrasound probe techonology? Here you are:
  1. Wireless charging for wireless probes. Just put them in place and they will be charged when not in use.
  2. 3 Axis IMU orientation, gyroscope and accelerometer. Just a few $$$'s hardware investment needed. a. Would help with 3D Orientation tagging of images. b. Stitching and volume rendering of panoramic and volume acquisition images. c. Measuring hand made movement and pressure with elastography . d. Biopsy guidance. e. Cheap hardware, but needs work on software side. (MPU-6050 shown) 



Current methods of elastography include automated pressure waves generated with piezoelectric effect and hand made pressure waves which are unquantified. Sensing / Sending the acceleration info aquired from transducer will help quantification of pressure. Small pressure sensors on transducers will help even more.

2014-04-19

Akselerometre, Jiroskop ve IMU

AKSELOMETRE JİROSKOP VE İMU ÜZERİNE 

Akselerometreler ve jiroskoplar tüketici elektroniğinde giderek daha popüler hale gelen ürünlerdir. Belkide onları projelerinize ekleme zamanı gelmiştir. Bu ürünlerden birini seçerken kafanız karışabilir. O yüzden bu yazıda bazı özellikleri hakkında bilgi vermeye çalıştım. Özellikle sensörlerin bilgi kitapçıklarında bulunan ve her biri onlarca sayfa tutan kafa karıştıran konular hakkında bazı bilgiler aktararak başlangıç bilgisi vermeye çalışacağım.

AKSELEROMETRE

Akselerometre neyi ölçer? İvmeölçer veya akselerometre, bir kütleye uygulanan ivmeyi ölçen cihazlardır. Nesne durabilir, bazen nesne hızlanıp yavaşlayabilir. Akselerometrenin tam olarak yaptığı işlem nesnelerin bu özelliğini ölçmek. Akselerasyonun birimi metre/sn2 veya G kuvveti olarak ifade edilebilir. G kuvvetti de 9.8 metre/sn2 olarak ifade edilir. G kuvveti rakım ve üzerinde bulunduğumuz gezegenin boyutuna göre değişiklik gösterir.  Uygulanan ivmenin ölçümünde, koordinat ivmesi (referans ivme) bilinmesine gerek yoktur. Bunun yerine ivmeölçer, içindeki test kütlesine referans eksenindeki, kütleden kaynaklı olan uygulanan kuvvetlere bakar. Örneğin, dünya üzerinde deniz seviyesine yakın bir bölgede düz bir yüzey üzerinde ivmeölçerin gösterdiği değer 9.81 m/s2 olurken, serbest düşen bir cisim üzerinde veya boş uzayda göstereceği değer 0 m/s2 olacaktır.

Akselerometreler statik veya dinamik kuvvetleri bize gösterebilirler. En çok kullanılan akselerometreler tilt yani eğim sensörleridir. Dünya yüzeyine göre ölçüm cihazının ne zaman, nasıl, ne kadar eğildiğini gösterebilirler. Akselerometreler ayrıca hareket sensörü olarak da kullanılabilirler. Örneğin Nintendo Wii’nin el kumandasında bir adet akselerometre bulunmaktadır. Pekçok raket hareketi, yumruk hareketi gibi hareketi gibi hareketi Wii’nin konsolu içindeki akselerometre algılamaktadır. Akselerometrelerin, ivmeölçerler, sanayide ve bilimsel çalışmalarda birçok uygulama alanında kullanılmaktadır. Yüksek hassasiyete sahip ivmeölçerler füzelerde, uçaklarda, gemilerde ve denizaltılarda navigasyon sistemlerinde kullanılan en önemli parçalardan biridir. Bunun yanı sıra, döner makinelerde titreşimi tespit edip, bu titreşimin hangi sınırlar içinde gerçekleştiğini gözler. Günümüzde tablet bilgisayarlar ve dijital kameralarda titreşim engelleyici sistemlerin devreye girmesinde, görüntü netleştirmede ve kullanıcı duyarlı sistemlerin etkinleşmesinde kullanılmaktadır. İvmeölçerin verdiği bilgiler içinden bir cismin serbest düşüşte olup olmadığı, hızlanıp hızlanmadığı gibi ikincil bilgiler hesaplanabilir. Örneğin bu özelliğe bakarak düşmekte olan bir uçanın motorunu tekrar çalıştırmak veya düşmekte olan bir donanımın zarar görmemesi için otomatik kapatmak, paraşüt açtırmak gibi özellikler eklenebilir. Akselerometre seçerken bazı donanım parametrelerine dikkati etmemiz gerekir. Şimdi akselerometre seçerken dikkate edilecek parametrelere bir bakalım.

Range veya aralık diyebileceğimiz ölçümün alt ve üst sınırları dikkat etmemiz gereken parametrelerden bir tanesidir. Her akselerometrenin üst ve alt algı sınır aralığı aynı olmamaktadır. Örneğin bir akselerometrenin üst sınırı 1g iken başka bir akselerometrenin üst sınırı 250g olabilmektedir. Kullanım alanına göre sizin için ne tür bir akselerometre gerektiğini zamanla öğreneceksiniz. Satın alma sırasında bu aralık +/- g şeklinde ifade edilmektedir. Bazı akselerometrelerin değişken aralıkları bulunmaktadır. Buda satın alma sırasında değil kullanım sırasında aralığın belirlenmesine kolaylık sağlamaktadır.

Ara birim akselerometrelerin başka bir özelliğidir. Akselerometrelerin çıktısı analog, (pulse-wave) dalga modülasyonu (PWM) veya dijital olabilmektedir. Analog akselerometreler özelliklerine göre pin üzerinde 0-3.3 volt veya 0-5 volt arasında bir voltaj / gerilim üreterek değerleri diğer cihaza bildirirler. Bu ara birimle çalışmak kolaydır. Ancak hassasiyeti çok yüksek değildir. En kolay bilgi analog olarak alınabilir. Pek çok akselerometrede ara birim olarak analog çıktı bulunmaktadır.

Dalga modülasyonu (PWM) yapan akselerometreler kare dalga şeklinde sabit bir frekansta bir dalga üretirler ancak dalganın şekli ölçülen akselerasyonla değişmektedir. Bu dalga modülasyonlu akselerometreler oldukça nadirdir ve kolay bulunmazlar. Onlarla çalışmak ise zordur.

Dijital akselerometreler seri bir ara birimle başka bir cihaza bağlanabilirler. Bu seri ara birim SPI veya I2C olabilir. Deneyiminize göre SPI veya I2C ara birimini tercih edebilirsiniz. Bu akselerometreler oldukça popülerdir. Çünkü daha çok özelliği daha az kablo bağlantısı ile aktarabilirler. Gürültüye oranları daha azdır. Dezavantajları ise programlamak için biraz daha fazla programlama bilgisi gerektirmesidir.

Ölçülen eksenlerin sayısı başka bir parametredir. Akselerometreniz, ölçülebilen 3 eksenden X, Y ve Z’den kaçını ölçebilmektedir. Satın alacağımız akselerometrede bakmanız gereken parametrelerden biri kaç eksen ölçtüğüdür. En pahalı olanlar en fazla eksende ölçüm yapar şeklinde bir kural yok. Alım esnasında bilgi formalarına, kitapçıklarına bakarak kaç eksende ölçüm yaptıklarını öğrenebilirsiniz.

Güç tüketimi. Eğer kullanacağınız proje pil beslemeli olacak ise, gücünü pilden alacaksa akselerometrenizin ne kadar güç tüketeceği sizin için önemli olacaktır. Genelde çoğu cihazın güç tüketimi mikroamper cinsinden belirtilir. Bazı cihazlarda kullanılmadığı durumlar için uyku modu devreye girebilmektedir.

Çalışma gerilimi satılan akselerometrelerin bir kısmı sabit voltajla çalışabilir. Giriş voltajı sabit şekilde 3.3 ile 5 volt arasında değişir. Bazı akselerometrelerde giriş gerilimi esnekliği sağlayan gerilim regülatörü bulunmaktadır.

Ek özellikler. Yeni cihazlarda bazı ek özellikler bulunabilmektedir. Bunların bir kısmı termometre, uyku modu, 0g tanıma, hareketsizlik tanıma ve vuruş/darbe tanıma şeklinde özetlenebilir.

JİROSKOP

Jiroskop, (İngilizce: Gyroscope, Gyro) veya Yalpalık, Cayroskop, Cayro, jiroskoplar açısal hızı ölçen cihazlardır. Yön ölçümü veya ayarlamasında kullanılan, açısal dengenin korunması ilkesiyle çalışırlar. Jiroskopik hareketin temeli fizik kurallarına ve açısal momentumun korunumu ilkesine dayalıdır.
Jiroskop olarak bilinen alet ilk olarak 1817’de J. Bohnenberger tarafından icat edilmiştir ve jiroskop adı 1852’de Dünya'nın dönüş hareketini incelemek üzere yaptığı deneyler sırasında J. Foucault tarafından verilmiştir. Bir jiroskop presesyon ve nutasyon olarak bilinen hareketleri de içine alan çeşitli hareketler yapar. Günlük hayatta, uçak ve gemilerde yön bulmak için, uzay teleskoplarında yörünge kararlılığını sağlayabilmek için yaygın olarak jiroskoplardan yararlanılmaktadır.

Bisiklete binen herkes, bir bisiklet hızlı gittiği vakit dengeyi sağlamanın, yavaş gittiği vaktinkine göre çok daha kolay olduğunu bilir. Bir topaç, dönme hızı büyükse, dik kalarak dönmeye devam eder, fakat yavaşladıkça yana yatmaya başlar ve sonunda devrilir. Bu örneklerin her ikisinde de, kararsız olan (yani kolayca düşebilecek olan) cisimler, yeterli hızla hareket halinde oldukları vakit sabit eksende  durabilmektedir.
Bunlarda gördüğümüz, bir defa bir düzlemde dönmeye başlatılan bir cismin o düzlemde dönmeye devam etmesi özelliğinden kombine bir cihaz olan jiropusulalarda ve denizcilik ile havacılıkta kullanılan başka çeşitli seyir yardımcılarında faydalanılır. Bu özellik, ağırlığının büyük bir kısmı çevresine yakın toplanmış bulunan tekerleklerde daha açıktır. Bu cins ağır tekerleklerin hepsine jiroskop denir.

Jiroskoplar nesnenin tanımlanan eksen etrafında dönüş hızını vermektedir. Eğer dönen bir cismin duruş açısını ölçmek istiyorsanız tek başına jiroskop yeterli bir cihaz olmayabilir. Jiroskoplar akselerometrelerden farklı olarak yer çekimi tarafından etkilenmezler. Jiroskoplar ve akselerometreleri birbirlerini tamamlayıcı cihazlar olarak düşünebilirsiniz. Dönüş hızı farklı birimlerle ifade edilebilir. Örneğin dönüş hızı dönüş/dakika (RPM) veya derece°-açı/saniye şeklinde ifade edilebilir. X, Y, Z esenleri etrafında dönüş rol, pitch ve yaw kelimeleri ile ifade edilir. Pitch:  uçan araç burnunun aşağı yukarı hareketi, yaw: araç burnunun sola sağa dönüşü, roll ise kokpit’ten bakınca sağa sola yuvarlanma hareketini ifade eder. Geçmişte jiroskoplar uzayda navigasyon, füze kontrolü, su altında navigasyon ve uçuş navigasyonu için kullanıldılar. Şimdi jiroskoplar hareket kaydı, robotlar ve araç navigasyonu gibi cihazlarda kullanımlarına tanık olmaktayız. Bir jiroskop seçerken dikkat etmemiz gereken parametrelerin pek çoğu akselerometre seçerken kullandığımız parametrelere benzerdir.
Range veya aralık seçmek istediğimiz, beklediğimiz açısal hıza uygun olmalıdır. Özellikle jiroskopun maksimum açısal hızı sizin ölçmek istediğiniz beklediğiniz maksimum açısal hızdan çok fazla olmamalıdır.
Jiroskoplarda ara birimler yine akselerometrelere benzer şekildedir. Jiroskopların büyük bir çoğunluğu analog çıktı ile çalışmaktadır. Ancak jiroskop ara birimleri akselerometreler gibi dalga modülasyonu, analog, veya dijital ara yüze sahip olabilirler.

Analog ara yüze sahip olan jiroskoplar  0-5 veya 0-3.3 volt arasında bir gerilim üreterek ölçüm değerlerini diğer cihaza bildirirler. Analog ara birimle çalışmak kolaydır. Ancak hassasiyeti çok yüksek değildir. Pek çok jiroskopta analog ara birim bulunmaktadır.

Dalga modülasyonu yapan akselerometreler kare dalga şeklinde sabit bir frekansta bir dalga üretirler. Ancak dalganın şekli hissedilen akselerasyonla değişmektedir. Bu dalga modülasyonlu akselerometreler oldukça nadirdir ve kolay bulunmazlar. Bunlarda çalışmak ise oldukça zordur.

Magnetometre

Magentometreler dünyanın manyetik alanı ve çevrede bulunan nesnelerin manyetizmasından etkilenir. X, Y, Z ekesininde manyetik alan ölçümü yapılabilir. Hassas bir ölçüm için her bölge için ayrı kalibrasyon önerilir.

IMU

İvmeölçerler ve jiroskoplar harika cihazlardır ancak tek başlarına oryantasyon, pozisyon ve hız hakkında yeterli bilgi sağlamazlar. Bu ve benzeri değişkenleri hesaplamak için iki cihazdan gelen bilgiler birleştirilir. IMU (Inertial Measurment Unit) ile 6 serbestlik derecesinde (DOF, Degree Of Freedom) hesaplar yapılır. Robot kolları gibi cihazlarda IMU yaygın olarak kullanılır.

IMU’lar basit ve kompleks olarak ikiye ayrılır. Basit IMU’lar iki cihazı aynı kart üzerinde sunan devrelerdir. Hesap işlerinin tamamı kullanıcı tarafından yapılır.

Kompleks IMU’lar üzerinde hesaplamaları yapan ufak devreler bulunmakta olup, seri port üzerinden pek çok parametre çıktısı alınabilmektedir.

IMU’ların yaptığı hesaplamalarda zaman ile kaymalar gerçekleşmektedir. Bu kaymalar ölçüm, sıklığı, hassasiyeti ve ölçümlerin başladığı andan itibaren geçen zaman ile ilgilidir.