I would like to activate the low pass filter of 94 Hz bandwidth on my MPU 6050. By reading the documentation (PAGE 13), it says that you activate the appropriate bandwidth by writing the selected number into address 1A (PAGE 6).
Would this inside the void setup be okay to do so?
Wire.beginTransmission(0x68);
Wire.write(0x1A); //
Wire.write(2); //
Wire.endTransmission(true);
Kind regards,
L