Compas moduke HMC5883L - Arduino Leonardo

Hello,

I've got a problem with connecting module HMC5883L (model GY-273) to Arduino Leonardo board. I've tested so much code from many websites but still can't found my answer.

The thing is, after proper (I hope) connection, on my serial port I receive still the same x,y,z values. For example, with this code:

#include <Wire.h>

#define Addr 0x1E               // 7-bit address of HMC5883 compass

void setup() {
  Serial.begin(9600);
  delay(100);                   // Power up delay
  Wire.begin();
  
  // Set operating mode to continuous
  Wire.beginTransmission(Addr); 
  Wire.write(byte(0x02));
  Wire.write(byte(0x00));
  Wire.endTransmission();
}

void loop() {
  int x, y, z;

  // Initiate communications with compass
  Wire.beginTransmission(Addr);
  Wire.write(byte(0x03));       // Send request to X MSB register
  Wire.endTransmission();

  Wire.requestFrom(Addr, 6);    // Request 6 bytes; 2 bytes per axis
  if(Wire.available() <=6) {    // If 6 bytes available
    x = Wire.read() << 8 | Wire.read();
    z = Wire.read() << 8 | Wire.read();
    y = Wire.read() << 8 | Wire.read();
  }
  
  // Print raw values
  Serial.print("X=");
  Serial.print(x);
  Serial.print(", Y=");
  Serial.print(y);
  Serial.print(", Z=");
  Serial.println(z);
  
  delay(500);
}

what I get:

connection scheme:

If anyone can solve this problem, please let me know. I'm getting near to deadline of my project, so any advice will be helpful.

Does the sensor board have I2C pullups?

AWOL:
Does the sensor board have I2C pullups?

Yes, it''s should have. Here is a scheme for prove:

if(Wire.available() <=6) {    // If 6 bytes available ?

In other words, if there's nothing to read, read it anyway?

Also, what's the compass' operating voltage?

AWOL:
if(Wire.available() <=6) {    // If 6 bytes available ?

In other words, if there's nothing to read, read it anyway?

Yea, that's kinda wierd, Operating voltage of the compass is 5V.

I also tested module with other arduino leonardo and I received same results. Besides I even brought a new module, because I was afraid that maybe previous one is broken, but there is no changes at all.