Tutorial dan Sample Code Penggunaan Sensor GY-87 pada Arduino
Sensor GY-87 sebuah device i2C gabungan dari 3 buah Sensor, yaitu :
MPU6050 : Accelerometer Sensor (Address is 0x68) HMC5883L : Digital Compass Sensor (Address is 0x1E) BMP180 : Barometer & Temperature Sensor (Address is 0x77)
Dari sebuah sensor GY-87 kita dapat memperoleh Out data berupa :
*3 Axis Accelerometer and rotation (x,y,z) -> from MPU6050 device *Compass Data/Dirrection (angle) -> from HMC5883L device *Air Pressure, Altimeter and Temperature -> from BMP180 device
Berikut adalah Library yang dibutuhkan Sensor GY-87 pada sistem Arduino
Library "I2Cdev.h" Download Library "MPU6050.h" Download Library BMP180.h Download Library "Wire.h" -> Sudah include di Arduino IDE
Berikut adalah Contoh Source Code untuk menampilkan data dari Sensor GY-87 ke Serial Monitor Arduino IDE
Pasang Sensor GY-87 pada Arduino sesuai Wiring yang ada diatas, Pada Arduino Uno/Nano/Pro mini, pin SDA berada pada pin A4 dan SCL pada pin A5
Download semua library yang dibutuhkan pada tombol download di atas kemudian copy paste source code dibawah ini dan Upload ke dalam Arduino anda.
Setelah selesai upload buka Serial Monitor pada Arduino IDE pada baudrate 9600 dan pastikan semua data meampilkan value/nilai.
Source Code:
/* GY87_Readerv0.ino This sketch is based on various sketches and libraries by Jeff Rowberg <jeff@rowberg.net> and discussion thread by pistolero992000 on the Arduino forum https://forum.arduino.cc/index.php?topic=223345.0. The BMP180 pressure Senor library is from Love Electronics Ltd (loveelectronics.com) http://embedded-lab.com/blog/bmp180/bmp180_11/
It gets all sensors on a GY87 IMU board reporting (something) to the Serial. The challenge is the Digital Compass which is nromally blocked by the Accelerometer. This is remedied by using an I2C bypass command. Thanks to pistolero992000 for this solution.
Sensors on board the GY87 are: MPU6050 Accelerometer. Address is 0x68 HMC5883L Digital Compass. Address is 0x1E BMP180 Barometer and Temperature Sensor. Address is 0x77
Connections are through the i2c bus.
SCL to Arduino Pin A5 SDA to Arduino Pin A4 GND, 5V and 3.3V connections also present.
All sensors report sensible values. The tab seperated data covers a lot of screen space so you will need to stretch your Serial monitor window to accommodate it.
*/
#include "I2Cdev.h" #include "MPU6050.h" #include "Wire.h" #include <BMP180.h> //Library for the BMP180 barometer.
//MPU6050 Accelerometer MPU6050accelgyro;
int16_tax,ay,az; int16_tgx,gy,gz;
//HMC5883L Digital Compass constinthmc5883Address=0x1E;//0011110b, I2C 7bit address for compass constbytehmc5883ModeRegister=0x02; constbytehmcContinuousMode=0x00; constbytehmcDataOutputXMSBAddress=0x03;
//The BMP180 Digital Barometer BMP180barometer; // Store the current sea level pressure at your location in Pascals. floatseaLevelPressure=101325;
// verify connection Serial.println("Testing device connections..."); Serial.println(accelgyro.testConnection()?"MPU6050 connection successful":"MPU6050 connection failed"); accelgyro.setI2CBypassEnabled(true);//This sets the bypass so the HMC5883L gets a look in.
//Initialise the Digital Compass Wire.beginTransmission(hmc5883Address);//Begin communication with compass Wire.write(hmc5883ModeRegister);//select the mode register Wire.write(hmcContinuousMode);//continuous measurement mode Wire.endTransmission();
//Initialise the BMP180 Barometer (and Temperature Sensor) barometer=BMP180(); // We check to see if we can connect to the BMP180 sensor. if(barometer.EnsureConnected()) { Serial.println("Connected to BMP180."); // When we have connected, we reset the device to ensure a clean start. barometer.SoftReset(); // Now we initialize the sensor and pull the calibration data. barometer.Initialize(); } else { Serial.println("No BMP180 sensor found."); }
// configure Arduino LED for pinMode(LEDPin,OUTPUT); delay(10000); }
voidloop(){
// read raw accel/gyro measurements from device accelgyro.getMotion6(&ax,&ay,&az,&gx,&gy,&gz);
// these methods (and a few others) are also available //accelgyro.getAcceleration(&ax, &ay, &az); //accelgyro.getRotation(&gx, &gy, &gz);
// blink LED to indicate activity blinkState=!blinkState; digitalWrite(LEDPin,blinkState);
//Accessing the HMC5883L Digital Compass //Tell the HMC5883L where to begin reading the data Wire.beginTransmission(hmc5883Address); Wire.write(hmcDataOutputXMSBAddress);//Select register 3, X MSB register Wire.endTransmission();
//Read data from each axis of the Digital Compass Wire.requestFrom(hmc5883Address,6); if(6<=Wire.available()) { x=Wire.read()<<8;//X msb x|=Wire.read();//X lsb z=Wire.read()<<8;//Z msb z|=Wire.read();//Z lsb y=Wire.read()<<8;//Y msb y|=Wire.read();//Y lsb }
//Reporting the Compass data to the Serial port //Serial.print("Compass XYZ:\t"); //Serial.print(x,y,z);Serial.print("\t"); Serial.print("Dir(deg):\t"); Serial.print(angle);Serial.print("\t");
No comments: