MPU9250 9-axis motion sensor with high-resolution MS5637 pressure sensor in two small breakout boards
Designed by Pesky Products in United States of AmericaThis product is no longer available for sale.
The seller may be offering an improved version or it may be hanging out on the beach, enjoying the retired life.
$59.00
Free Shipping!
$15.00 $18.00
Free Shipping!
$41.95
Free Shipping!
$25.00
Free Shipping!
Wondering which motion sensor is right for you? Take a look here. MPU9250 micro add-on now on 0.8-mm-thick PCB for easier flush mounting! What is it? The MPU9250 is a 9-axis motion sensor by Invensen…
Read More…Wondering which motion sensor is right for you? Take a look here.
MPU9250 micro add-on now on 0.8-mm-thick PCB for easier flush mounting!
The MPU9250 is a 9-axis motion sensor by Invensense with 16-bit resolution for the accelerometer, gyroscope, and magnetometer in a small 3 mm x 3 mm package. Coupled with the similarly small (3 mm x 3 mm) Measurement Specialties MS5637 24-bit pressure sensor/altimeter, and open-source Madgwick and Mahony sensor fusion filtering, this sensor solution offers 10 degrees of freedom, absolute orientation with quaternion, rotation matrix, and pitch/roll/yaw output. I have created two small pc boards as add-ons to the Teensy 3.1 microcontroller, whose powerful Cortex M4 processor running at 24/48/96 MHz can easily deliver 9 DoF sensor fusion filter update rates above 1000 Hz. There are two sizes of board for mounting on different pins of the Teensy 3.1. The Mini board can be soldered to pins 8 - 17 and utilize power and ground at the end of the Teensy 3.1. The Micro board can be soldered to the pads on the bottom of the Teensy 3.1 which are rarely used, or at least are out of the way. This allows sophisticated sensor fusion with plenty of pins left over on the microcontroller for power management, RF radio or bluetooth smart, or motor control shields, etc.
There are only pins broken out for 3.3 V and GND, SDA and SCL, and one interrupt. On the Micro Add-On there is additionally a pin for toggling the device address (ADO) in case a second MPU9250 is to be added to the Teensy 3.1 I2C line. The boards are hardwired for I2C; even though the MPU9250 can use SPI communication, I purposely chose to hardwire the MPU9250 for I2C and chose an I2C-only pressure sensor because I wanted to minimize the number of pins taken up by this 9 DoF sensor solution. Also, there are no hardware SPI pins on the bottom pads, and I wanted some commonality between the two boards. Lastly, I designed the Mini Add-On so as to leave the hardware SPI pins free so other boards that absolutely require hardware SPI like RF radios or bluetooth smart could make use of them. With fast I2C (400 kHz), the sensor fusion filter rates are well above 1 KHz; this is plenty fast for all but the most demanding motion sensing and control applications.
Note: The micro board has the 4K7 pullups in the circuit by default whereas the mini (larger) board has solder jumpers for selecting whether to connect the 4K7 pullup resistors to the circuit. The solder jumper is useful if the mini breakout board will be used with other I2C devices that already have a pullup resistor in place, or if using with a microcontroller with internal pullups (the Teensy 3.1 has none). For I2C, one pullup on each of the SDA/SCL lines is enough; more than one is too much. The reason there is no choice on the micro is because there is no room for a solder jumper. So if you don't want pullups on the micro you are going to have to remove the two resistors with a soldering iron; a feat much easier to accomplish than manually placing them there in the first place. If you are using the mini breakout board decide how to configure the pullups before you solder it into place!
I have added an option for a MPU9250+MS5637 board that mounts to the back pads of the Teensy 3.5 or 3.6. Teensy 3.1/2 has a different pin patter on the back pads than the Teensy 3.5/6. The add-on boards for the Teensy 3.1/2 and Teensy 3.5/6 are not interchangeable so make sure you order the right ones for your Teensy!
This is another example of the modular Teensy 3.1 concept with small, special-purpose add-on boards or shields that can be mixed and matched for specific applications. I originally began the project because I got interested in 9 DoF sensor fusion and my studies showed that ARM processors are the minimum required to get the full potential from open-source sensor fusion filters. Additionally, I wanted to create a small, portable, and lightweight device for motor control with robotics and quadcopters in mind as the application. The Teensy 3.1 has powerful ARM M4 Cortex processing capability with an Arduino-like programming environment. That means it is powerful, easy to use, and relatively cheap; you can buy them from OSHPark.com for $17. That's a bargain.
These are small boards specially designed to fit on the Teensy 3.1. I designed, built, and tested them myself, and I use them for all kind of motion sensing and motor control projects. My plan is to add additional capability as I can. In addition to a variety of motion sensor solutions (this, for example), there is a modular Teensy add-on LiPo battery charger/power management board that connects to the first pair of three pins of the Teensy 3.1. There is an add-on board with dc motor control, one for gesture recognition, and will soon be boards with bluetooth smart (nRF51822), and RF radio (nRF24L01+). My goal is a small, portable (wearable), low-power device that can sense, communicate with, and control other devices in it's environment and last for weeks on a single battery charge. These small, high-resolution, low-power sensors make such a dream possible!
Order the board from OSHPark and build one yourself, or buy one from me and see how it works for you. Open source means you have options; I provided everything you need to do it yourself. I even wrote a well-commented sketch that runs on the Teensy 3.1 that uses many of the capabilities of the motion sensor and all capabilities of the pressure sensor, does 9-axis sensor fusion, returns yaw, pitch, and roll, and quaternion absolute orientation, and is ready for your use here.
Teensy 3.1 is NOT included with your purchase, but you can buy one here.
Some tips for using the Micro Version well: The Micro version of the MPU9250+MS5637 breakout board is intended to be soldered on the back smd pads of the Teensy 3.x. Before you do, try to verify function using spring-loaded test probes (metal hooks) to verify I2C ACK using pins 16/17 or 18/19 on the Teensy. In order to use the bottom-side I2C port on pins 29 and 30, you must use Brian Knox's i2c_t3.h library. This port is different from the ones on the "topside" of the Teensy in that all wire calls must use wire1 instead. This means the wire.begin statement looks like this:
Wire1.begin(I2C_MASTER, 0x00, I2C_PINS_29_30, I2C_PULLUP_EXT, I2C_RATE_400);
and the readByte function looks like this:
uint8_t readByte(uint8_t address, uint8_t subAddress) {
uint8_t data; // data
will store the register data
Wire1.beginTransmission(address); // Initialize the Tx buffer
Wire1.write(subAddress); // Put slave register address in Tx buffer
Wire1.endTransmission(I2C_NOSTOP); // Send the Tx buffer, but send a restart to keep connection alive
Wire1.requestFrom(address, (size_t) 1); // Read one byte from slave register address
data = Wire1.read(); // Fill Rx buffer with result
return data; // Return data read from slave register }
Change all wire to wire1 in the github-reposited sketches and the micro board should work the same as the mini board does.
The micro board also breaks out I2C address ADO so you should either pull this pin LOW (recommended) to get I2C address 0x68 or HIGH to get 0x69. But you ought to choose one. Most of the time the device defaults to 0x68 but if left floating this can change unexpectedly!
Lastly, do not solder pin 33! It isn't connected to anything on the board but it is best left unmolested lest you find your Teensy unresponsive because it has somehow entered the EZ boot mode.
As always, contact me if you are still having trouble.
One last thing, don't expect accurate heading with the open-source sensor fusion unless you take the trouble to calibrate the sensors, especially the magnetometer. See here for an explanation.
Product: (4.92)
Documentation: (4.75)
Shipping: (4.92)
Communication: (4.75)
Michael | March 30, 2018
Keith | July 3, 2017
Kirill | June 17, 2016
Simon | April 30, 2016
David | Feb. 15, 2016
Sylvain | June 17, 2015
Kevin | May 22, 2015
Eric | March 27, 2015
Jb | Feb. 1, 2015
Bob | Jan. 31, 2015
Tisham | Dec. 16, 2014
Anthony | Oct. 9, 2014
Danville, CA, United States of America
Ships from United States of America.
179 Reviews | 5,399 Orders
$49.95
Free Shipping!
$11.95
Free Shipping!
$35.95
Free Shipping!
$35.95
Free Shipping!
$49.95
Free Shipping!
$29.95
Free Shipping!
$19.95
Free Shipping!
$12.95
Free Shipping!
By clicking Register, you confirm that you accept our Terms & Conditions
We recognize our top users by making them a Tindarian. Tindarians have access to secret & unreleased features.
We look for the most active & best members of the Tindie community, and invite them to join. There isn't a selection process or form to fill out. The only way to become a Tindarian is by being a nice & active member of the Tindie community!