MPU9255
MPU9255 Arduino Library
MPU9255_Data.cpp
Go to the documentation of this file.
1 
7 // This file is a part of MPU9255 library.
8 // Copyright (c) 2017-2020 Krzysztof Adamkiewicz <kadamkiewicz835@gmail.com>
9 //
10 // Permission is hereby granted, free of charge, to any person obtaining a copy of
11 // this software and associated documentation files (the “Software”), to deal in the
12 // Software without restriction, including without limitation the rights to use, copy,
13 // modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
14 // and to permit persons to whom the Software is furnished to do so, subject to the
15 // following conditions: THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND,
16 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
19 // OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20 
21 #include "MPU9255.h"
22 #include "Arduino.h"
23 
28 {
29  requestBytes(MPU_address, ACCEL_XOUT_H, 6);//request data from the accelerometer
30 
31  //read data
32  uint8_t rawData[6];
33  readArray(rawData,6);
34 
35  //store data in raw data variables
36  ax = ((int16_t)rawData[0] << 8) | rawData[1];
37  ay = ((int16_t)rawData[2] << 8) | rawData[3];
38  az = ((int16_t)rawData[4] << 8) | rawData[5];
39 }
40 
45 {
46  requestBytes(MPU_address, GYRO_XOUT_H, 6);
47 
48  uint8_t rawData[6];
49  readArray(rawData,6);
50 
51  gx = ((int16_t)rawData[0] << 8) | rawData[1];
52  gy = ((int16_t)rawData[2] << 8) | rawData[3];
53  gz = ((int16_t)rawData[4] << 8) | rawData[5];
54 }
55 
60 {
61  requestBytes(MAG_address, MAG_XOUT_L, 8);//note we must request 8 bytes of data because otherwise it does not work
62 
63  uint8_t rawData[6];
64  readArray(rawData,6);
65 
66  mx = ((int16_t)rawData[0] << 8) | rawData[1];
67  my = ((int16_t)rawData[2] << 8) | rawData[3];
68  mz = ((int16_t)rawData[4] << 8) | rawData[5];
69 }
70 
76 {
77  requestBytes(MPU_address, TEMP_OUT_H, 2);
78 
79  uint8_t rawData[2];
80  readArray(rawData,2);
81 
82  return ((int16_t)rawData[0] << 8) | rawData[1];
83 }
void read_mag()
Read readings from magnetometer.
void read_acc()
Read readings from accelerometer.
int16_t read_temp()
Take a reading of the temperature.
void read_gyro()
Read readings from gyroscope.
Main header of the library.