MPU6050 GY521 Cheap 6DOF IMU (Accelerometer & Gyro)

Product Code: MPU6050
6.95 USD

Quantity

Stock: In stock (84 Pieces)

Add to Favorites
  • Features
  • Dimensions
  • Comments (0)
  • Payment Options
  • How Will We Ship To You?
  • The MPU-6050 is cheap IMU sensor, it combines both an accelerometer, temprature and a gyro in very smal board.

    The InvenSense MPU-6050 sensor contains a MEMS accelerometer and a MEMS gyro in a single chip. It is very accurate, as it contains 16-bits analog to digital conversion hardware for each channel. Therefor it captures the x, y, and z channel at the same time. The sensor uses the I2C-bus to interface with the Arduino.

    The sensor uses the I2C-bus to interface with the Arduino.

    MPU-6050 modules (three-axis gyroscope + three-axis accelerometer and one data for temprature too!)

    • Power supply : 5V
    • Communication modes: standard IIC communications protocol
    • Chip built-in 16bit AD converter, 16-bit data output
    • Gyroscope range:  250 500 1000 2000 ° / s
    • Acceleration range:   2   4   8  16g
    • Temprature: In celcius data
    • Pin pitch 2.54mm

    For working code which tooks raw datas from sensor please examine that code below.

    // MPU-6050 Short Example Sketch
    // By Arduino User JohnChi
    // August 17, 2014
    // Public Domain
    #include
    const int MPU=0x68; // I2C address of the MPU-6050
    int AcX,AcY,AcZ,Tmp,GyX,GyY,GyZ;
    void setup(){
    Wire.begin();
    Wire.beginTransmission(MPU);
    Wire.write(0x6B); // PWR_MGMT_1 register
    Wire.write(0); // set to zero (wakes up the MPU-6050)
    Wire.endTransmission(true);
    Serial.begin(9600);
    }
    void loop(){
    Wire.beginTransmission(MPU);
    Wire.write(0x3B); // starting with register 0x3B (ACCEL_XOUT_H)
    Wire.endTransmission(false);
    Wire.requestFrom(MPU,14,true); // request a total of 14 registers
    AcX=Wire.read()<<8|Wire.read(); // 0x3B (ACCEL_XOUT_H) & 0x3C (ACCEL_XOUT_L)
    AcY=Wire.read()<<8|Wire.read(); // 0x3D (ACCEL_YOUT_H) & 0x3E (ACCEL_YOUT_L)
    AcZ=Wire.read()<<8|Wire.read(); // 0x3F (ACCEL_ZOUT_H) & 0x40 (ACCEL_ZOUT_L)
    Tmp=Wire.read()<<8|Wire.read(); // 0x41 (TEMP_OUT_H) & 0x42 (TEMP_OUT_L)
    GyX=Wire.read()<<8|Wire.read(); // 0x43 (GYRO_XOUT_H) & 0x44 (GYRO_XOUT_L)
    GyY=Wire.read()<<8|Wire.read(); // 0x45 (GYRO_YOUT_H) & 0x46 (GYRO_YOUT_L)
    GyZ=Wire.read()<<8|Wire.read(); // 0x47 (GYRO_ZOUT_H) & 0x48 (GYRO_ZOUT_L)
    Serial.print(“AcX = “); Serial.print(AcX);
    Serial.print(” | AcY = “); Serial.print(AcY);
    Serial.print(” | AcZ = “); Serial.print(AcZ);
    Serial.print(” | Tmp = “); Serial.print(Tmp/340.00+36.53); //equation for temperature in degrees C from datasheet
    Serial.print(” | GyX = “); Serial.print(GyX);
    Serial.print(” | GyY = “); Serial.print(GyY);
    Serial.print(” | GyZ = “); Serial.println(GyZ);
    delay(333);
    }

    Delivery Information
    :
    Same Day shipping from stock.
  • All products shipped with sealed in box. All products packaged carefully. Before shipment, we test all electronics and control the mechanics of all products. So you will never be disappointed when you open our JSumo shipment box.

    We have 2 Shipment Options:

    • Registered Air Mail ( Fixed Price 9,95 USD, Free On Orders Over 199 USD)
      DHL Worldwide Express Shipment (Based on weight)

    TIME TABLE FOR INTERNATIONAL REGISTERED AIR MAIL

    Below, these countries are the only examples. If your country is not in the list, don't be afraid. We are shipping to all over the world including your country too:)

    *Colombia, Paraguay, Peru shipments are sent over Brazil Postal Service. ( Turkey >> Brasil >> Colombia, Paraguay or Peru) Because of that delays can happen. We are sending shipment code.

    What is your return policy?

    You may return a product for refund or exchange (if due to our error) within 30 days of the order shipment date. (The order shipment date and order notification are provided to you by email). All returns must be accompanied with a Return Merchandise Authorisation number (order number #).

    If we shipped you the wrong product, or it arrived defective or damaged

    No problem. Just contact us within 30 days of the item's original shipping date to arrange for the return of your purchase. Send us photo of wrong product. And we will send a replacement or refund you for your purchase, provided the returned item(s) are received back in their original packaging, along with all accessories, warranty cards, manuals, software, etc., where applicable.

  • All products shipped with sealed in box and packaged carefully. Before shipment, we test all electronics and control the mechanics of all products. So you will never be disappointed when you open our JSumo shipment box.

    We have 2 Shipment Options:

    • Registered Air Mail ( Fixed Price 9,95 USD, Free On Orders Over 199 USD)
      DHL Worldwide Express Shipment (Based on weight)

    TIME TABLE FOR INTERNATIONAL REGISTERED AIR MAIL

    Below, these countries are the only examples. If your country is not in the list, don't be afraid. We are shipping to all over the world including your country too:)

    *Colombia, Paraguay, Peru shipments are sent over Brazil Postal Service. ( Turkey >> Brasil >> Colombia, Paraguay or Peru) Because of that delays can happen. We are sending shipment code.

    What is your return policy?

    You may return a product for refund or exchange (if due to our error) within 30 days of the order shipment date. (The order shipment date and order notification are provided to you by email). All returns must be accompanied with a Return Merchandise Authorisation number (order number #).

    If we shipped you the wrong product, or it arrived defective or damaged

    No problem. Just contact us within 30 days of the item's original shipping date to arrange for the return of your purchase. Send us photo of wrong product. And we will send a replacement or refund you for your purchase, provided the returned item(s) are received back in their original packaging, along with all accessories, warranty cards, manuals, software, etc., where applicable.

Prepared by  T-Soft E-Commerce.