fbpx

GY-271 (HMC5883L) 3-Axis Magnetic Electronics Compass Module

Out of stock
EGP125.00
Out of stock
Category:

Description

GY-271 Compass Module Features

Magnetic current and field have directly relation with each other. When current flows in a wire (electrons start travelling in one direction), a magnetic field is created. The main idea of compass sensors is based on this relationship. The direction of the earth’s magnetic field affects the flow of electrons in the sensor. By measuring these changes in current, the sensor will be able to detect direction.
The GY-271 module uses the QMC5883L chip to detect magnetic fields and its directions. The communication protocol of this module is I2C and you can connect it to different processors such as Arduino boards using two SCL and SDA pins.

You can download the QMC5883L chip datasheet here.

GY-271 Compass Module Pinout

GY-271 Module has 5 pins. The application of them is as follows:

  • VCC: Module power supply – 3 to 5 volts
  • GND: Ground
  • SCL: I2C Clock pin
  • SDA: I2C Data pin
  • DRDY (DataReady)When the output value of the sensor is ready, an interrupt occurs in this pin. This pin is pulled up inside the module by default. When the output value of the module is ready, the pin is “0” for 250 microseconds.

You can see the pinout of this module in the followugn figure.

GY271-HMC5883L-Pinout

Required Materials

Hardware Components

Arduino UNO R3 × 1
GY-271 HMC5883L 3-Axis Compass × 1
Male to Female jumper wire × 1

Software Apps

Arduino IDE

Interfacing GY-271 (QMC5883L) Compass with Arduino

Step 1: Circuit

Connect the module to Arduino according to the following diagram

Step 2: Installing the library

Download the module library from this link and install it.

Note
If you do not know how to install a library, visit this guide.

This library has a variety of examples for interfacing a compass module. You can also use those examples.

Tip

If you have HMC5883L chip, you should use this library to interface your compass with Arduino.

Step 3: Code

After installing the library, upload the following code to your Arduino board. Then open the serial monitor to display the compass output.


/*
  GY-271 Compass
  modified on 02 Sep 2020
  by Mohammad Reza Akbari @ Electropeak
  Home
*/

// I2C Library
#include <Wire.h>
// QMC5883L Compass Library
#include <QMC5883LCompass.h>

QMC5883LCompass compass;

void setup() {
  // Initialize the serial port.
  Serial.begin(9600);
  // Initialize I2C.
  Wire.begin();
  // Initialize the Compass.
  compass.init();
}

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

Reviews

There are no reviews yet.

Only logged in customers who have purchased this product may leave a review.

Select the fields to be shown. Others will be hidden. Drag and drop to rearrange the order.
  • Image
  • SKU
  • Rating
  • Price
  • Stock
  • Availability
  • Add to cart
  • Description
  • Content
  • Weight
  • Dimensions
  • Additional information
Click outside to hide the comparison bar
Compare