Can't Get Advanced MPU6050 Example to work

I'm working with my MPU6050
The "Short Example Sketch" works fine.
When I try to run the advanced example using the I2C lib it is uploaded, however; the serial monitor only output nonsens.
Even the Serial.println doesn't shift to a new line. Nothing is recognizable.

The example I try to run is the MPU6050_raw

Could somebody please help?

Code like this does not show in the monitor:

Serial.println("Initializing I2C devices...");

the serial monitor only output nonsens.

Did you set the correct bit rate?

Probably not,
how go I do that? :slight_smile:

Spange:
Probably not,
how go I do that? :slight_smile:

In the Serial Monitor.... choose the 38400 bit per second data rate. There's a drop down menu for choosing it. This is for the RAW one.

The rate is found in the value in the code...... Serial.begin(xxxxx);

Thank you!
Problem solved!