2018-07-28 02:53:51 +01:00
|
|
|
/*
|
2019-10-27 10:13:24 +00:00
|
|
|
xsns_32_mpu6050.ino - MPU6050 gyroscope and temperature sensor support for Tasmota
|
2018-07-28 02:53:51 +01:00
|
|
|
|
2021-01-01 12:44:04 +00:00
|
|
|
Copyright (C) 2021 Oliver Welter
|
2018-07-28 02:53:51 +01:00
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef USE_I2C
|
2018-07-28 15:16:53 +01:00
|
|
|
#ifdef USE_MPU6050
|
2018-07-28 02:53:51 +01:00
|
|
|
/*********************************************************************************************\
|
2018-11-06 16:33:51 +00:00
|
|
|
* MPU6050 3 axis gyroscope and temperature sensor
|
2018-07-28 02:53:51 +01:00
|
|
|
*
|
|
|
|
* Source: Oliver Welter, with special thanks to Jeff Rowberg
|
|
|
|
*
|
|
|
|
* I2C Address: 0x68 or 0x69 with AD0 HIGH
|
|
|
|
\*********************************************************************************************/
|
|
|
|
|
2018-11-06 16:33:51 +00:00
|
|
|
#define XSNS_32 32
|
2019-11-03 16:54:39 +00:00
|
|
|
#define XI2C_25 25 // See I2CDEVICES.md
|
2018-11-06 16:33:51 +00:00
|
|
|
|
|
|
|
#define D_SENSOR_MPU6050 "MPU6050"
|
2018-07-28 15:16:53 +01:00
|
|
|
|
2018-07-28 02:53:51 +01:00
|
|
|
#define MPU_6050_ADDR_AD0_LOW 0x68
|
|
|
|
#define MPU_6050_ADDR_AD0_HIGH 0x69
|
|
|
|
|
|
|
|
uint8_t MPU_6050_address;
|
|
|
|
uint8_t MPU_6050_addresses[] = { MPU_6050_ADDR_AD0_LOW, MPU_6050_ADDR_AD0_HIGH };
|
|
|
|
uint8_t MPU_6050_found;
|
|
|
|
|
|
|
|
int16_t MPU_6050_ax = 0, MPU_6050_ay = 0, MPU_6050_az = 0;
|
|
|
|
int16_t MPU_6050_gx = 0, MPU_6050_gy = 0, MPU_6050_gz = 0;
|
|
|
|
int16_t MPU_6050_temperature = 0;
|
|
|
|
|
2018-12-09 08:34:22 +00:00
|
|
|
#ifdef USE_MPU6050_DMP
|
|
|
|
#include "MPU6050_6Axis_MotionApps20.h"
|
|
|
|
#include "I2Cdev.h"
|
|
|
|
#include <helper_3dmath.h>
|
|
|
|
typedef struct MPU6050_DMP{
|
|
|
|
uint8_t devStatus; // return status after each device operation (0 = success, !0 = error)
|
|
|
|
uint16_t packetSize; // expected DMP packet size (default is 42 bytes)
|
|
|
|
uint16_t fifoCount; // count of all bytes currently in FIFO
|
|
|
|
uint8_t fifoBuffer[64]; // FIFO storage buffer
|
|
|
|
Quaternion q; // [w, x, y, z] quaternion container
|
|
|
|
VectorInt16 aa; // [x, y, z] accel sensor measurements
|
|
|
|
VectorInt16 aaReal; // [x, y, z] gravity-free accel sensor measurements
|
|
|
|
VectorFloat gravity; // [x, y, z] gravity vector
|
|
|
|
float euler[3]; // [psi, theta, phi] Euler angle container
|
2019-11-18 06:10:45 +00:00
|
|
|
float yawPitchRoll[3]; // [yaw, pitch roll] Yaw-pitch-roll container
|
2018-12-09 08:34:22 +00:00
|
|
|
} MPU6050_DMP;
|
|
|
|
|
|
|
|
MPU6050_DMP MPU6050_dmp;
|
|
|
|
#else
|
|
|
|
#include <MPU6050.h>
|
|
|
|
#endif //USE_MPU6050_DMP
|
2018-07-28 02:53:51 +01:00
|
|
|
MPU6050 mpu6050;
|
|
|
|
|
2018-11-14 13:32:09 +00:00
|
|
|
void MPU_6050PerformReading(void)
|
2018-07-28 02:53:51 +01:00
|
|
|
{
|
2018-12-09 08:34:22 +00:00
|
|
|
#ifdef USE_MPU6050_DMP
|
2019-11-18 08:33:34 +00:00
|
|
|
mpu6050.resetFIFO(); // with a default sampling rate of 200Hz, we create a delay of approx. 5ms with a complete read cycle
|
2018-12-09 08:34:22 +00:00
|
|
|
MPU6050_dmp.fifoCount = mpu6050.getFIFOCount();
|
|
|
|
while (MPU6050_dmp.fifoCount < MPU6050_dmp.packetSize) MPU6050_dmp.fifoCount = mpu6050.getFIFOCount();
|
|
|
|
mpu6050.getFIFOBytes(MPU6050_dmp.fifoBuffer, MPU6050_dmp.packetSize);
|
|
|
|
MPU6050_dmp.fifoCount -= MPU6050_dmp.packetSize;
|
|
|
|
// calculate euler and acceleration with the DMP
|
|
|
|
mpu6050.dmpGetQuaternion(&MPU6050_dmp.q, MPU6050_dmp.fifoBuffer);
|
|
|
|
mpu6050.dmpGetEuler(MPU6050_dmp.euler, &MPU6050_dmp.q);
|
|
|
|
mpu6050.dmpGetAccel(&MPU6050_dmp.aa, MPU6050_dmp.fifoBuffer);
|
|
|
|
mpu6050.dmpGetGravity(&MPU6050_dmp.gravity, &MPU6050_dmp.q);
|
|
|
|
mpu6050.dmpGetLinearAccel(&MPU6050_dmp.aaReal, &MPU6050_dmp.aa, &MPU6050_dmp.gravity);
|
2019-11-18 06:10:45 +00:00
|
|
|
mpu6050.dmpGetYawPitchRoll(MPU6050_dmp.yawPitchRoll, &MPU6050_dmp.q, &MPU6050_dmp.gravity);
|
2018-12-09 08:34:22 +00:00
|
|
|
MPU_6050_gx = MPU6050_dmp.euler[0] * 180/M_PI;
|
|
|
|
MPU_6050_gy = MPU6050_dmp.euler[1] * 180/M_PI;
|
|
|
|
MPU_6050_gz = MPU6050_dmp.euler[2] * 180/M_PI;
|
|
|
|
MPU_6050_ax = MPU6050_dmp.aaReal.x;
|
|
|
|
MPU_6050_ay = MPU6050_dmp.aaReal.y;
|
|
|
|
MPU_6050_az = MPU6050_dmp.aaReal.z;
|
|
|
|
#else
|
2018-07-28 02:53:51 +01:00
|
|
|
mpu6050.getMotion6(
|
|
|
|
&MPU_6050_ax,
|
|
|
|
&MPU_6050_ay,
|
|
|
|
&MPU_6050_az,
|
|
|
|
&MPU_6050_gx,
|
|
|
|
&MPU_6050_gy,
|
|
|
|
&MPU_6050_gz
|
|
|
|
);
|
2018-12-09 08:34:22 +00:00
|
|
|
#endif //USE_MPU6050_DMP
|
2018-07-28 02:53:51 +01:00
|
|
|
MPU_6050_temperature = mpu6050.getTemperature();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Work in progress - not yet fully functional
|
|
|
|
void MPU_6050SetGyroOffsets(int x, int y, int z)
|
|
|
|
{
|
|
|
|
mpu050.setXGyroOffset(x);
|
|
|
|
mpu6050.setYGyroOffset(y);
|
|
|
|
mpu6050.setZGyroOffset(z);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MPU_6050SetAccelOffsets(int x, int y, int z)
|
|
|
|
{
|
|
|
|
mpu6050.setXAccelOffset(x);
|
|
|
|
mpu6050.setYAccelOffset(y);
|
|
|
|
mpu6050.setZAccelOffset(z);
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
2018-11-14 13:32:09 +00:00
|
|
|
void MPU_6050Detect(void)
|
2018-07-28 02:53:51 +01:00
|
|
|
{
|
2019-06-30 15:44:36 +01:00
|
|
|
for (uint32_t i = 0; i < sizeof(MPU_6050_addresses); i++)
|
2018-07-28 02:53:51 +01:00
|
|
|
{
|
|
|
|
MPU_6050_address = MPU_6050_addresses[i];
|
2019-11-07 15:56:05 +00:00
|
|
|
if (!I2cSetDevice(MPU_6050_address)) { break; }
|
2018-12-09 08:34:22 +00:00
|
|
|
mpu6050.setAddr(MPU_6050_addresses[i]);
|
|
|
|
|
|
|
|
#ifdef USE_MPU6050_DMP
|
|
|
|
MPU6050_dmp.devStatus = mpu6050.dmpInitialize();
|
|
|
|
mpu6050.setXGyroOffset(220);
|
|
|
|
mpu6050.setYGyroOffset(76);
|
|
|
|
mpu6050.setZGyroOffset(-85);
|
2019-03-08 14:15:42 +00:00
|
|
|
mpu6050.setZAccelOffset(1788);
|
2018-12-09 08:34:22 +00:00
|
|
|
if (MPU6050_dmp.devStatus == 0) {
|
|
|
|
mpu6050.setDMPEnabled(true);
|
|
|
|
MPU6050_dmp.packetSize = mpu6050.dmpGetFIFOPacketSize();
|
|
|
|
MPU_6050_found = true;
|
2019-03-08 14:15:42 +00:00
|
|
|
}
|
2018-12-09 08:34:22 +00:00
|
|
|
#else
|
2018-07-28 02:53:51 +01:00
|
|
|
mpu6050.initialize();
|
2018-12-09 08:34:22 +00:00
|
|
|
MPU_6050_found = mpu6050.testConnection();
|
|
|
|
#endif //USE_MPU6050_DMP
|
2021-06-11 17:14:12 +01:00
|
|
|
Settings->flag2.axis_resolution = 2; // Need to be services by command Sensor32
|
2018-07-28 02:53:51 +01:00
|
|
|
}
|
|
|
|
|
2019-11-11 17:36:13 +00:00
|
|
|
if (MPU_6050_found) {
|
2019-11-10 16:02:02 +00:00
|
|
|
I2cSetActiveFound(MPU_6050_address, D_SENSOR_MPU6050);
|
2018-07-28 02:53:51 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-18 08:33:34 +00:00
|
|
|
#define D_YAW "Yaw"
|
|
|
|
#define D_PITCH "Pitch"
|
|
|
|
#define D_ROLL "Roll"
|
|
|
|
|
2018-07-28 15:16:53 +01:00
|
|
|
#ifdef USE_WEBSERVER
|
2019-03-19 16:31:43 +00:00
|
|
|
const char HTTP_SNS_AXIS[] PROGMEM =
|
|
|
|
"{s}" D_SENSOR_MPU6050 " " D_AX_AXIS "{m}%s{e}" // {s} = <tr><th>, {m} = </th><td>, {e} = </td></tr>
|
|
|
|
"{s}" D_SENSOR_MPU6050 " " D_AY_AXIS "{m}%s{e}" // {s} = <tr><th>, {m} = </th><td>, {e} = </td></tr>
|
|
|
|
"{s}" D_SENSOR_MPU6050 " " D_AZ_AXIS "{m}%s{e}" // {s} = <tr><th>, {m} = </th><td>, {e} = </td></tr>
|
|
|
|
"{s}" D_SENSOR_MPU6050 " " D_GX_AXIS "{m}%s{e}" // {s} = <tr><th>, {m} = </th><td>, {e} = </td></tr>
|
|
|
|
"{s}" D_SENSOR_MPU6050 " " D_GY_AXIS "{m}%s{e}" // {s} = <tr><th>, {m} = </th><td>, {e} = </td></tr>
|
2019-11-18 08:33:34 +00:00
|
|
|
"{s}" D_SENSOR_MPU6050 " " D_GZ_AXIS "{m}%s{e}"; // {s} = <tr><th>, {m} = </th><td>, {e} = </td></tr>
|
2019-11-18 06:10:45 +00:00
|
|
|
#ifdef USE_MPU6050_DMP
|
2019-11-18 08:33:34 +00:00
|
|
|
const char HTTP_SNS_YPR[] PROGMEM =
|
2019-11-18 06:10:45 +00:00
|
|
|
"{s}" D_SENSOR_MPU6050 " " D_YAW "{m}%s{e}" // {s} = <tr><th>, {m} = </th><td>, {e} = </td></tr>
|
2019-11-18 08:33:34 +00:00
|
|
|
"{s}" D_SENSOR_MPU6050 " " D_PITCH "{m}%s{e}" // {s} = <tr><th>, {m} = </th><td>, {e} = </td></tr>
|
|
|
|
"{s}" D_SENSOR_MPU6050 " " D_ROLL "{m}%s{e}"; // {s} = <tr><th>, {m} = </th><td>, {e} = </td></tr>
|
|
|
|
#endif // USE_MPU6050_DMP
|
2018-07-28 15:16:53 +01:00
|
|
|
#endif // USE_WEBSERVER
|
|
|
|
|
|
|
|
#define D_JSON_AXIS_AX "AccelXAxis"
|
|
|
|
#define D_JSON_AXIS_AY "AccelYAxis"
|
|
|
|
#define D_JSON_AXIS_AZ "AccelZAxis"
|
|
|
|
#define D_JSON_AXIS_GX "GyroXAxis"
|
|
|
|
#define D_JSON_AXIS_GY "GyroYAxis"
|
|
|
|
#define D_JSON_AXIS_GZ "GyroZAxis"
|
2019-11-18 08:33:34 +00:00
|
|
|
#define D_JSON_YAW "Yaw"
|
|
|
|
#define D_JSON_PITCH "Pitch"
|
|
|
|
#define D_JSON_ROLL "Roll"
|
2018-07-28 15:16:53 +01:00
|
|
|
|
2019-01-28 13:08:33 +00:00
|
|
|
void MPU_6050Show(bool json)
|
2018-07-28 02:53:51 +01:00
|
|
|
{
|
2019-11-10 16:02:02 +00:00
|
|
|
MPU_6050PerformReading();
|
|
|
|
|
2020-07-23 12:06:07 +01:00
|
|
|
float tempConv = ConvertTemp(MPU_6050_temperature / 340.0 + 35.53);
|
2019-11-10 16:02:02 +00:00
|
|
|
char axis_ax[33];
|
2021-06-11 17:14:12 +01:00
|
|
|
dtostrfd(MPU_6050_ax, Settings->flag2.axis_resolution, axis_ax);
|
2019-11-10 16:02:02 +00:00
|
|
|
char axis_ay[33];
|
2021-06-11 17:14:12 +01:00
|
|
|
dtostrfd(MPU_6050_ay, Settings->flag2.axis_resolution, axis_ay);
|
2019-11-10 16:02:02 +00:00
|
|
|
char axis_az[33];
|
2021-06-11 17:14:12 +01:00
|
|
|
dtostrfd(MPU_6050_az, Settings->flag2.axis_resolution, axis_az);
|
2019-11-10 16:02:02 +00:00
|
|
|
char axis_gx[33];
|
2021-06-11 17:14:12 +01:00
|
|
|
dtostrfd(MPU_6050_gx, Settings->flag2.axis_resolution, axis_gx);
|
2019-11-10 16:02:02 +00:00
|
|
|
char axis_gy[33];
|
2021-06-11 17:14:12 +01:00
|
|
|
dtostrfd(MPU_6050_gy, Settings->flag2.axis_resolution, axis_gy);
|
2019-11-10 16:02:02 +00:00
|
|
|
char axis_gz[33];
|
2021-06-11 17:14:12 +01:00
|
|
|
dtostrfd(MPU_6050_gz, Settings->flag2.axis_resolution, axis_gz);
|
2019-11-29 08:07:39 +00:00
|
|
|
#ifdef USE_MPU6050_DMP
|
|
|
|
char axis_yaw[33];
|
2021-06-11 17:14:12 +01:00
|
|
|
dtostrfd(MPU6050_dmp.yawPitchRoll[0] / PI * 180.0, Settings->flag2.axis_resolution, axis_yaw);
|
2019-11-29 08:07:39 +00:00
|
|
|
char axis_pitch[33];
|
2021-06-11 17:14:12 +01:00
|
|
|
dtostrfd(MPU6050_dmp.yawPitchRoll[1] / PI * 180.0, Settings->flag2.axis_resolution, axis_pitch);
|
2019-11-29 08:07:39 +00:00
|
|
|
char axis_roll[33];
|
2021-06-11 17:14:12 +01:00
|
|
|
dtostrfd(MPU6050_dmp.yawPitchRoll[2] / PI * 180.0, Settings->flag2.axis_resolution, axis_roll);
|
2019-11-29 08:07:39 +00:00
|
|
|
#endif // USE_MPU6050_DMP
|
2019-11-10 16:02:02 +00:00
|
|
|
|
|
|
|
if (json) {
|
|
|
|
char json_axis_ax[25];
|
|
|
|
snprintf_P(json_axis_ax, sizeof(json_axis_ax), PSTR(",\"" D_JSON_AXIS_AX "\":%s"), axis_ax);
|
|
|
|
char json_axis_ay[25];
|
|
|
|
snprintf_P(json_axis_ay, sizeof(json_axis_ay), PSTR(",\"" D_JSON_AXIS_AY "\":%s"), axis_ay);
|
|
|
|
char json_axis_az[25];
|
|
|
|
snprintf_P(json_axis_az, sizeof(json_axis_az), PSTR(",\"" D_JSON_AXIS_AZ "\":%s"), axis_az);
|
|
|
|
char json_axis_gx[25];
|
|
|
|
snprintf_P(json_axis_gx, sizeof(json_axis_gx), PSTR(",\"" D_JSON_AXIS_GX "\":%s"), axis_gx);
|
|
|
|
char json_axis_gy[25];
|
|
|
|
snprintf_P(json_axis_gy, sizeof(json_axis_gy), PSTR(",\"" D_JSON_AXIS_GY "\":%s"), axis_gy);
|
|
|
|
char json_axis_gz[25];
|
|
|
|
snprintf_P(json_axis_gz, sizeof(json_axis_gz), PSTR(",\"" D_JSON_AXIS_GZ "\":%s"), axis_gz);
|
2019-11-18 08:33:34 +00:00
|
|
|
#ifdef USE_MPU6050_DMP
|
|
|
|
char json_ypr_y[25];
|
2019-11-29 08:07:39 +00:00
|
|
|
snprintf_P(json_ypr_y, sizeof(json_ypr_y), PSTR(",\"" D_JSON_YAW "\":%s"), axis_yaw);
|
2019-11-18 08:33:34 +00:00
|
|
|
char json_ypr_p[25];
|
2019-11-29 08:07:39 +00:00
|
|
|
snprintf_P(json_ypr_p, sizeof(json_ypr_p), PSTR(",\"" D_JSON_PITCH "\":%s"), axis_pitch);
|
2019-11-18 08:33:34 +00:00
|
|
|
char json_ypr_r[25];
|
2019-11-29 08:07:39 +00:00
|
|
|
snprintf_P(json_ypr_r, sizeof(json_ypr_r), PSTR(",\"" D_JSON_ROLL "\":%s"), axis_roll);
|
2021-01-26 15:26:00 +00:00
|
|
|
ResponseAppend_P(PSTR(",\"%s\":{\"" D_JSON_TEMPERATURE "\":%*_f%s%s%s%s%s%s%s%s%s}"),
|
2021-06-11 17:14:12 +01:00
|
|
|
D_SENSOR_MPU6050, Settings->flag2.temperature_resolution, &tempConv, json_axis_ax, json_axis_ay, json_axis_az, json_axis_gx, json_axis_gy, json_axis_gz,
|
2019-11-18 08:33:34 +00:00
|
|
|
json_ypr_y, json_ypr_p, json_ypr_r);
|
|
|
|
#else
|
2021-01-26 15:26:00 +00:00
|
|
|
ResponseAppend_P(PSTR(",\"%s\":{\"" D_JSON_TEMPERATURE "\":%*_f%s%s%s%s%s%s}"),
|
2021-06-11 17:14:12 +01:00
|
|
|
D_SENSOR_MPU6050, Settings->flag2.temperature_resolution, &tempConv, json_axis_ax, json_axis_ay, json_axis_az, json_axis_gx, json_axis_gy, json_axis_gz);
|
2019-11-18 08:33:34 +00:00
|
|
|
#endif // USE_MPU6050_DMP
|
2018-07-28 02:53:51 +01:00
|
|
|
#ifdef USE_DOMOTICZ
|
2021-01-26 15:26:00 +00:00
|
|
|
DomoticzFloatSensor(DZ_TEMP, tempConv);
|
2018-07-28 02:53:51 +01:00
|
|
|
#endif // USE_DOMOTICZ
|
|
|
|
#ifdef USE_WEBSERVER
|
2019-11-10 16:02:02 +00:00
|
|
|
} else {
|
2021-01-26 15:26:00 +00:00
|
|
|
WSContentSend_Temp(D_SENSOR_MPU6050, tempConv);
|
2019-11-10 16:02:02 +00:00
|
|
|
WSContentSend_PD(HTTP_SNS_AXIS, axis_ax, axis_ay, axis_az, axis_gx, axis_gy, axis_gz);
|
2019-11-29 08:07:39 +00:00
|
|
|
#ifdef USE_MPU6050_DMP
|
|
|
|
WSContentSend_PD(HTTP_SNS_YPR, axis_yaw, axis_pitch, axis_roll);
|
|
|
|
#endif // USE_MPU6050_DMP
|
2018-07-28 02:53:51 +01:00
|
|
|
#endif // USE_WEBSERVER
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*********************************************************************************************\
|
|
|
|
* Interface
|
|
|
|
\*********************************************************************************************/
|
|
|
|
|
2019-01-28 13:08:33 +00:00
|
|
|
bool Xsns32(uint8_t function)
|
2018-07-28 02:53:51 +01:00
|
|
|
{
|
2019-11-04 09:38:05 +00:00
|
|
|
if (!I2cEnabled(XI2C_25)) { return false; }
|
2019-11-03 16:54:39 +00:00
|
|
|
|
2019-01-28 13:08:33 +00:00
|
|
|
bool result = false;
|
2018-07-28 02:53:51 +01:00
|
|
|
|
2019-11-11 17:36:13 +00:00
|
|
|
if (FUNC_INIT == function) {
|
|
|
|
MPU_6050Detect();
|
|
|
|
}
|
|
|
|
else if (MPU_6050_found) {
|
2018-07-28 02:53:51 +01:00
|
|
|
switch (function) {
|
|
|
|
case FUNC_EVERY_SECOND:
|
2021-06-11 17:14:12 +01:00
|
|
|
if (TasmotaGlobal.tele_period == Settings->tele_period -3) {
|
2018-07-28 02:53:51 +01:00
|
|
|
MPU_6050PerformReading();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case FUNC_JSON_APPEND:
|
|
|
|
MPU_6050Show(1);
|
|
|
|
break;
|
|
|
|
#ifdef USE_WEBSERVER
|
2019-03-19 16:31:43 +00:00
|
|
|
case FUNC_WEB_SENSOR:
|
2018-07-28 02:53:51 +01:00
|
|
|
MPU_6050Show(0);
|
|
|
|
MPU_6050PerformReading();
|
|
|
|
break;
|
|
|
|
#endif // USE_WEBSERVER
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2018-07-28 15:16:53 +01:00
|
|
|
#endif // USE_MPU6050
|
2018-07-28 02:53:51 +01:00
|
|
|
#endif // USE_I2C
|