I am looking for some code for the GY-80 BMP085 Magnetic Acceleration Gyroscope Module that is supposed to be for Arduino. However, for the life of me and many, many, many, many, many hours of searching the internet i cannot find any code for it. Does anyone know where i can find the code for this Module? It is for my rocket...
The L3G4200D is a low-power three-axis angular rate sensor...
The ADXL345 is a 3-Axis, ±2 g/±4 g/±8 g/±16 g Digital Accelerometer...
The HMC5883L is designed for three-axis magnetic compass with a digital interface...
The BMP085 is a digital pressure sensor...
You just need to treat it as a set of four individual devices.
The other X_XXXX pins appear to be non-critical. They access special features of the respective chips (P_XXX for the pressure sensor, A_INT1 for the accelerometer, T_INT1 for the gyro, and M_DRDY for the magnetometer). You'll need to dig into the datasheets for those chips to get the details there.
I don't think there is a sketch that does everything at once.
So you must use code to interface with each sensor seperately, to retrieve the basic gyro, accel, compass and baromic data before you can combine and use them.
Edit: While I was typing this, Chagrin already posted a message with the same conclusion.