> **Source:** Core Electronics is an Australian maker-electronics retailer and manufacturer based in Newcastle, NSW, run by a team of makers and educators. We design and manufacture our own product lines (PiicoDev, CE originals) and are official retailers for iconic maker and industrial brands including Raspberry Pi, Arduino, Adafruit, SparkFun and DFRobot. Orders ship Australia-wide from our Newcastle warehouse. Prices are in AUD and include GST. Pricing, stock and dispatch on this page are generated from the store's live catalog. Full machine-readable index: https://core-electronics.com.au/llms.txt

# Adafruit Precision NXP 9-DOF Breakout Board - FXOS8700 + FXAS21002

**Type:** Product page · **SKU:** ADA3463 · **Brand:** [Adafruit](https://core-electronics.com.au/brands/adafruit-australia)
**Page:** https://core-electronics.com.au/adafruit-precision-nxp-9-dof-breakout-board-fxos8700-fxas21002.html ([markdown](https://core-electronics.com.au/adafruit-precision-nxp-9-dof-breakout-board-fxos8700-fxas21002.html.md))

The NXP Precision 9DoF breakout combines two of the best motion sensors Adafruit have tested here at Adafruit: The FXOS8700 3-Axis accelerometer and magnetometer, and the...

## Pricing

- **Price:** $25.85 (inc GST) — $23.50 AUD, exc GST
- **Quantity discounts:** 10+ $22.79 (exc GST) · 50+ $22.33 (exc GST)

## Availability & dispatch

- Out of stock — the product page offers email notification when it returns.

## How to buy

- **Build a cart:** compose `https://core-electronics.com.au/cart/link?items=ADA3463:1` (comma-separated SKU:qty pairs) and share the link. Opening it shows a confirmation page with live pricing and stock before anything is added to the cart.
- **Verify the cart first:** fetch `https://core-electronics.com.au/cart/link/ADA3463:1.md` for live line prices (inc & exc GST, quantity discounts applied), stock and dispatch estimates, and totals. Append `/to/{AU-postcode}` (or `/to/{country-code}:{postcode}`) before `.md` for delivery options and prices to that destination. Unknown, retired, or out-of-stock SKUs are flagged. (Query form `cart/link.md?items=...` also works but some robots parsers refuse query strings here.)
- **Checkout** is completed on-site and includes a captcha at the payment step. Share the cart link; checkout takes it from there.
- **Search the catalogue:** `https://core-electronics.com.au/search/{query}.md` (URL-encode the query; pages 2-3 at `search/{query}/{page}.md`; `search.md?q=` also works)
- **Payment methods, purchase orders, policies and contact details:** https://core-electronics.com.au/llms.txt
## Description

The NXP Precision 9DoF breakout combines two of the best motion sensors Adafruit have tested here at Adafruit: The **FXOS8700** 3-Axis accelerometer and magnetometer, and the **FXAS21002** 3-axis gyroscope.

**Note - at the time of writing [Python &amp; CircuitPython](https://learn.adafruit.com/nxp-precision-9dof-breakout/python-circuitpython) does not support the advanced sensor fusion algorithm, you can only read the raw sensor accelerometer, magnetometer, and gyroscope values. There are more supported features [for Arduino](https://learn.adafruit.com/nxp-precision-9dof-breakout?view=all#arduino-code), refer to [Adafruit's tutorial](https://learn.adafruit.com/nxp-precision-9dof-breakout/overview) for more information.**

These two sensors combine to make a nice 9-DoF kit, that can be used for motion and orientation sensing. In particular, we think this sensor set is ideal for AHRS-based orientation calculations: the gyro stability performance is superior to the [LSM9DS0](https://core-electronics.com.au/adafruit-9-dof-accel-mag-gyro-temp-breakout-board-lsm9ds0.html), [LSM9DS1](https://core-electronics.com.au/adafruit-9-dof-accel-mag-gyro-temp-breakout-board-lsm9ds1.html), [L3GD20H + LSM303, ](https://core-electronics.com.au/adafruit-9-dof-imu-breakout-l3gd20-lsm303.html)MPU-9250, and even the [BNO-055](https://core-electronics.com.au/adafruit-9-dof-absolute-orientation-imu-fusion-breakout-bno055.html) (see Adafruit's [Gyro comparison tutorial for more details](https://core-electronics.com.au/comparing-gyroscope-datasheets))

Compared to the BNO055, this sensor will get you similar orientation performance but at a lower price because the calculations are done on your microcontroller, not in the sensor itself. The trade off is you will sacrifice about 15KB of Flash space, and computing cycles, to do the math 'in house'

To make it fast and easy for you to get started, Adafruit have a version of AHRS that Adafruit have adapted to work over USB or Bluetooth LE. Load the code onto your Arduino-compatible board and you will get orientation data in the form of Euler angles or quaternions! It will work on a ATmega328 (the fusion code is 15KB of flash) but faster/larger chips such as M0 or ESP8266 will give you more breathing room.

Each board comes with the two chips soldered onto a breakout with 4 mounting holes. While the chips support SPI, they don't tri-state the MISO pin, so they decided to go with plain I2C which works well and is supported by every modern microcontroller and computer chip set. There's a 3.3V regulator and level shifting on the I2C and Reset lines, so you can use the breakout safely with 3.3V or 5V power/logic. Each order comes with a fully assembled and tested breakout and a small strip of header. Some light soldering is required to attach the header if you want to use in a breadboard.

[Adafruit's tutorial will get you started with wiring diagrams, pinouts, assembly instructions and library code with examples!](https://learn.adafruit.com/nxp-precision-9dof-breakout/overview)

**So what makes this so 'Precision'-y, eh?**

Glad you asked! This particular sensor combination jumped out at Adafruit writing the [Comparing Gyroscopes](https://learn.adafruit.com/comparing-gyroscope-datasheets/overview) learning guide since the FXAS21002 exhibited the lowest **zero-rate level** off any of the gyroscopes Adafruit have tested, with the the following documented levels (converted to degrees per second for convenience sake):

- At +/- 2000 dps **3.125 dps**
- At +/- 250 dps **0.3906 dps**
 
The zero-rate level is important in orientation since it represents the amount of angular velocity a gyroscope will report when the device is immobile. High zero-rate levels can cause all kinds of problems in orientation systems if the data isn't properly compensated out, and distinguishing zero-rate errors from actual angular velocity can be non-trivial. This is particularly important in sensor fusion algorithms where the gyroscope plays an important part in predicting orientation adjustments over time. A high zero-rate level will cause constant rotation even when the device is immobile!

By comparison, most other sensors tested have 10-20 times these zero-rate levels, which is why Adafruit consider this particular part very **precise**. There is little work to do out of the box to get useful, actionable data out of it.

## Technical Details

The NXP Precision 9DoF board consists of two separate ICs, described in detail below:

**FXOS8700 3-Axis Accelerometer/Magnetometer**

- 2-3.6V Supply
- ±2 g/±4 g/±8 g adjustable acceleration range
- ±1200 µT magnetic sensor range
- Output data rates (ODR) from 1.563 Hz to 800 Hz
- 14-bit ADC resolution for acceleration measurements
- 16-bit ADC resolution for magnetic measurements
 
**FXAS21002 3-Axis Gyroscope**

- 2-3.6V Supply
- ±250/500/1000/2000°/s configurable range
- Output Data Rates (ODR) from 12.5 to 800 Hz
- 16-bit digital output resolution
- 192 bytes FIFO buffer (32 X/Y/Z samples)
 
[Datasheets, PCB CAD files, and Fritzing objects available in tutorial](https://learn.adafruit.com/nxp-precision-9dof-breakout/downloads)

Product Dimensions: 28.3mm x 20.5mm x 3.0mm / 1.1" x 0.8" x 0.1"

Product Weight: 2.1g / 0.1oz

## Images

- [Product image 1](https://core-electronics.com.au/media/catalog/product/3/4/3463-02.jpg)
