MPU9255
MPU9255 Arduino Library
MPU9255.h
Go to the documentation of this file.
1 
6 // This file is a part of MPU9255 library.
7 // Copyright (c) 2017-2020 Krzysztof Adamkiewicz <kadamkiewicz835@gmail.com>
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining a copy of
10 // this software and associated documentation files (the “Software”), to deal in the
11 // Software without restriction, including without limitation the rights to use, copy,
12 // modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
13 // and to permit persons to whom the Software is furnished to do so, subject to the
14 // following conditions: THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND,
15 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
18 // OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
19 
20 #ifndef MPU9255_H
21 #define MPU9255_H
22 
23 #include <Arduino.h>
24 #include <Wire.h>
25 
27 enum modules
28 {
29  Acc_X,//accelerometer X axis
30  Acc_Y,//accelerometer Y axis
31  Acc_Z,//accelerometer Z axis
32  Gyro_X,//gyroscope X axis
33  Gyro_Y,//gyroscope Y axis
34  Gyro_Z,//gyroscope Z axis
35  magnetometer,//magnetometer
36  accelerometer,//accelerometer
37  gyroscope,//gyroscope
38  thermometer,//thermometer
39  signalPaths,//all signal paths
40 };
41 
42 //available scales
43 enum scales
44 {
45  scale_2g,//+-2g
46  scale_4g,//+-4g
47  scale_8g,//+-8g
48  scale_16g,//+-16g
49  scale_250dps,//+-250 degrees per second
50  scale_500dps,//+- 500 degrees per second
51  scale_1000dps,//+- 1000 degrees per second
52  scale_2000dps,//+- 2000 degrees per second
53 };
54 
55 //axis
56 enum axis
57 {
58  X_axis,
59  Y_axis,
60  Z_axis,
61 };
62 
63 //bandwidth
64 enum bandwidth
65 {
66  gyro_8800Hz,
67  gyro_3600Hz,
68  gyro_250Hz,
69  gyro_184Hz,
70  gyro_92Hz,
71  gyro_41Hz,
72  gyro_20Hz,
73  gyro_10Hz,
74  gyro_5Hz,
75  acc_1113Hz,
76  acc_460Hz,
77  acc_184Hz,
78  acc_92Hz,
79  acc_41Hz,
80  acc_20Hz,
81  acc_10Hz,
82  acc_5Hz,
83 };
84 
85 
86 //interrupt pin settings
87 enum interrupt_pin
88 {
89  active_low,//interrupt pin gets low when active
90  active_high,//interrupt pin gets high when active
91  open_drain,//open drain mode
92  push_pull,//push-pull mode
93  pulse_output,//pulse type output
94  latched_output,//latch type output
95 };
96 
97 //available interrupts
98 enum interrupts
99 {
100  motion_interrupt,//motion detection
101  FIFO_overflow_interrupt,//fifo overflow
102  Fsync_interrupt,//fsync interrupts
103  raw_rdy_interrupt,//raw readings ready
104 };
105 
106 class MPU9255
107 {
108 public:
109 
110  //acceleration raw data
111  int16_t ax=0;//X axis
112  int16_t ay=0;//Y axis
113  int16_t az=0;//Z axis
114 
115  //gyroscope raw data
116  int16_t gx=0;//X axis
117  int16_t gy=0;//Y axis
118  int16_t gz=0;//Z axis
119 
120  //magnetometer raw data
121  int16_t mx=0;//X axis
122  int16_t my=0;//Y axis
123  int16_t mz=0;//Z axis
124 
125  //general control
126  uint8_t init();//initialize MPU9255
127  void set_acc_scale(scales selected_scale);//set accelerometer scale
128  void set_gyro_scale(scales selected_scale);//set gyroscope scale
129  void set_acc_offset(axis selected_axis, int16_t offset);//set accelerometer offset
130  void set_gyro_offset(axis selected_axis, int16_t offset);//set gyroscope offset
131  void set_acc_bandwidth(bandwidth selected_bandwidth);//set accelerometer bandwidth
132  void set_gyro_bandwidth(bandwidth selected_bandwidth);//set gyroscope bandwidth
133  uint8_t testIMU();//test gyroscope and accelerometer
134  uint8_t testMag();//test magnetometer
135 
136  //interrupt configuration
137  void set_INT_active_state(interrupt_pin selected_mode);//set INT pin (interrupt pin) active state
138  void set_INT_pin_mode(interrupt_pin selected_mode);//set INT PIN operation mode (open drain or push-pull)
139  void set_INT_signal_mode(interrupt_pin selected_mode);//set INT pin signal type (pulse or latched)
140  void enable_interrupt_output(interrupts selected_interrupt);//enable interrupt output
141  void disable_interrupt_output(interrupts selected_interrupt);//disable interrupt output
142  void clear_interrupt();//clear interrupt flags
143 
144  //motion interrupt
145  void set_motion_threshold_level(uint8_t threshold);//set threshold level for motion detection
146  void enable_motion_interrupt();//enable motion interrupt
147  void disable_motion_interrput();//disable motion interrupt
148 
149  //reset
150  void Hreset();//hard reset
151  void reset(modules selected_module);//reset selected module
152 
153  //measurements
154  void read_acc();//read data from the accelerometer
155  void read_gyro();//read data from the gyroscope
156  void read_mag();//read data from the magnetometer
157  int16_t read_temp();//read temperature
158 
159  //power control
160  void sleep_enable();//enable sleep mode
161  void sleep_disable();//disable sleep mode
162  void disable(modules selected_module);//disable selected module
163  void enable(modules selected_module);//enable selected module
164 
165  //magnetometer sensitivity
166  double mx_sensitivity;//X axis
167  double my_sensitivity;//Y axis
168  double mz_sensitivity;//Z axis
169 
170  private:
171  void requestBytes(uint8_t address, uint8_t subAddress, uint8_t bytes);//request data
172  uint8_t read(uint8_t address, uint8_t subAddress);//read one byte from selected register
173  void readArray(uint8_t *output, char size);//read an array of bytes
174  void write(uint8_t address, uint8_t subAddress, uint8_t data);//write one byte of data to the register
175  void write_OR(uint8_t address, uint8_t subAddress, uint8_t data);//write one byte of data to the register (with OR operation)
176  void write_AND(uint8_t address, uint8_t subAddress, uint8_t data);//write one byte of data to the register (with AND operation)
177  uint8_t getScale(uint8_t current_state, scales selected_scale);//convert scale value into register value
178 
179  //accelerometer factory offset
180  int AX_offset;//X axis
181  int AY_offset;//Y axis
182  int AZ_offset;//Z axis
183 
184  //gyroscope factory offset
185  int GX_offset;//X axis
186  int GY_offset;//Y axis
187  int GZ_offset;//Z axis
188 
189  //registers map
190  enum registers
191  {
192  //sensor addresses
193  MAG_address = 0x0C,//magnetometer
194  MPU_address = 0x68,//main chip
195 
196  //main chip
197  USER_CTRL = 0x6A,
198  PWR_MGMT_1 = 0x6B,
199  PWR_MGMT_2 = 0x6C,
200  SIGNAL_PATH_RESET = 0x68,
201  INT_PIN_CFG = 0x37,
202  ST1 = 0x02,
203  ACCEL_CONFIG = 0x1C,
204  ACCEL_CONFIG_2 = 0x1D,
205  MOT_DETECT_CTRL = 0x69,
206  WOM_THR = 0x1F,
207  GYRO_CONFIG = 0x1B,
208  CONFIG = 0x1A,
209  SMPLRT_DIV = 0x19,
210  INT_ENABLE = 0x38,
211  INT_STATUS = 0x3A,
212  WHO_AM_I = 0x75,
213 
214  //gyroscope offset
215  XG_OFFSET_H = 0x13,
216  XG_OFFSET_L = 0x14,
217  YG_OFFSET_H = 0x15,
218  YG_OFFSET_L = 0x16,
219  ZG_OFFSET_H = 0x17,
220  ZG_OFFSET_L = 0x18,
221 
222  //accelerometer offset
223  XA_OFFSET_H = 0x77,
224  XA_OFFSET_L = 0x78,
225  YA_OFFSET_H = 0x7A,
226  YA_OFFSET_L = 0x7B,
227  ZA_OFFSET_H = 0x7D,
228  ZA_OFFSET_L = 0x7E,
229 
230  //magnetometer
231  MAG_ID = 0x00,
232  CNTL = 0x0A,
233  CNTL2 = 0x0B,
234  ASAX = 0x10,
235  ASAY = 0x11,
236  ASAZ = 0x12,
237 
239  MAG_XOUT_L = 0x03,//magnetometer
240  GYRO_XOUT_H = 0x43,//gyro
241  ACCEL_XOUT_H = 0x3B,//accelerometer
242  TEMP_OUT_H = 0x41,//thermometer
243 
244  };
245 };
246 
247 #endif
void disable_interrupt_output(interrupts selected_interrupt)
Disable interrupt.
void set_INT_signal_mode(interrupt_pin selected_mode)
Set interrupt signal mode.
void enable_motion_interrupt()
Enable motion detector interrupt.
void set_INT_active_state(interrupt_pin selected_mode)
Set interrupt pin active state.
void disable_motion_interrput()
Disable motion detector interrupt.
modules
modules (for enable / disable / reset functions)
Definition: MPU9255.h:27
void enable_interrupt_output(interrupts selected_interrupt)
Enable interrupt.
void set_acc_scale(scales selected_scale)
Set accelerometer scale.
Definition: MPU9255.cpp:289
void clear_interrupt()
Clear interrupt flag (this also clears interrupt pin).
void set_INT_pin_mode(interrupt_pin selected_mode)
Set interrupt pin mode.
void set_gyro_bandwidth(bandwidth selected_bandwidth)
Set gyroscope bandwidth.
Definition: MPU9255.cpp:187
void read_mag()
Read readings from magnetometer.
void read_acc()
Read readings from accelerometer.
uint8_t testMag()
Test if magnetometer is working.
Definition: MPU9255.cpp:324
uint8_t init()
Initialise MPU9255 module.
Definition: MPU9255.cpp:27
int16_t read_temp()
Take a reading of the temperature.
void set_acc_bandwidth(bandwidth selected_bandwidth)
Set accelerometer bandwidth.
Definition: MPU9255.cpp:126
void set_acc_offset(axis selected_axis, int16_t offset)
Set accelerometer offset.
Definition: MPU9255.cpp:97
void set_motion_threshold_level(uint8_t threshold)
Set motion detector threeshold level.
void read_gyro()
Read readings from gyroscope.
void set_gyro_scale(scales selected_scale)
Set gyroscope scale.
Definition: MPU9255.cpp:300
uint8_t testIMU()
Test if IMU (gyroscope and accelerometer) is working.
Definition: MPU9255.cpp:311
void set_gyro_offset(axis selected_axis, int16_t offset)
Set gyroscope offset.
Definition: MPU9255.cpp:68