[UPDATES] Bicopter stabilization algorith (PLEASE HELP NEEDED!!!)

To implement rate mode you'll need the gyroscope X, Y and Z axes, as inputs to your rate roll, pitch and yaw PIDs.
[/quote]

Should i add this?

Wire.requestFrom(MPU, 6, true);
GyZ = Wire.read() << 8 | Wire.read();

OR this

mpu.getMotion6(& AcX, & AcY, & AcZ, &GyX, &GyY, &GyZ);

Thanks