In this article we look at the BMM150 digital geomagnetic sensor
BMM150 is a low power and low noise 3-axis digital geomagnetic sensor to be used in compass applications. The 12-pin wafer level chip scale package (WLCSP) with a footprint of 1.56 x 1.56 mm² and 0.60 mm height provides highest design flexibility to the developer of mobile devices. Applications like virtual reality or gaming on mobile devices such as mobile phones, tablet PCs or portable media players require 9-axis inertial sensing including magnetic heading information. Due to the stable performance over a large temperature range, the BMM150 is also especially suited for supporting drones in accurate heading.
BMM150 can be used with an inertial measurement unit (IMU) consisting of a 3-axis accelerometer and a 3-axis gyroscope like Bosch Sensortec’s BMI055.
Features
Parameter | Technical data |
---|---|
Package | CSWLP- (12 pin) 1.56×1.56×0.6 mm³ 0.4 mm diagonal ball pitch |
Temperature range | -40°C … +85°C |
Digital interfaces | I²C and SPI (2 interrupt pins) |
Resolution | 0.3μT |
Supply voltage | VDD: 1.62V to 3.6V VDDIO: 1.2V to 3.6V |
Zero-B offset | ±50μT |
Non-linearity | <1% FS |
Magnetic range typ. | ±1300μT (x,y-axis) ±2500μT (z-axis) |
Average current consumption | 170 μA (low power preset) 500 μA (normal mode) |
Interrupts | New data, magnetic threshold high / low |
Parts Required
Schematic/Connection
STM32 Nucleo | Sensor |
3v3 | Vcc |
Gnd | Gnd |
I2C1_SCL | SCL |
I2C1_SDA | SDA |
Code Example
This uses the library from https://github.com/Seeed-Studio/Grove_3_Axis_Compass_V2.0_BMM150
#include <Arduino.h> #include <Wire.h> // libraries #include "bmm150.h" #include "bmm150_defs.h" BMM150 bmm = BMM150(); void setup() { Serial.begin(9600); if(bmm.initialize() == BMM150_E_ID_NOT_CONFORM) { Serial.println("Chip ID can not read!"); while(1); } else { Serial.println("Initialize done!"); } } void loop() { bmm150_mag_data value; bmm.read_mag_data(); value.x = bmm.raw_mag_data.raw_datax; value.y = bmm.raw_mag_data.raw_datay; value.z = bmm.raw_mag_data.raw_dataz; float xyHeading = atan2(value.x, value.y); float zxHeading = atan2(value.z, value.x); float heading = xyHeading; if(heading < 0) heading += 2*PI; if(heading > 2*PI) heading -= 2*PI; float headingDegrees = heading * 180/M_PI; float xyHeadingDegrees = xyHeading * 180 / M_PI; float zxHeadingDegrees = zxHeading * 180 / M_PI; Serial.print("Heading: "); Serial.println(headingDegrees); delay(100); }
Output
Open the serial monitor and you should see something like this
Heading: 336.04
Heading: 343.22
Heading: 4.57
Heading: 16.11
Heading: 52.82
Heading: 119.54
Heading: 174.52
Heading: 183.81
Heading: 190.16
Links
https://ae-bst.resource.bosch.com/media/_tech/media/datasheets/BST-BMM150-DS001.pdf
https://github.com/BoschSensortec/BMM150-Sensor-API