-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOBR_Gyro.cpp
54 lines (35 loc) · 1.23 KB
/
OBR_Gyro.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*
OBR_Gyro.cpp - Gyro control class definition.
Created by Rafael Piacsek, June 24, 2018.
Private code, for OBR use only.
*/
#include "Arduino.h"
#include "OBR_Gyro.h"
OBR_Gyro::OBR_Gyro() {
bno.begin();
bno.setExtCrystalUse(true);
}
// ##################################################################################################################################
int OBR_Gyro::getSensorAngle() {
imu::Vector<3> euler = bno.getVector(Adafruit_BNO055::VECTOR_EULER);
return (int)euler.x();
}
// ##################################################################################################################################
void OBR_Gyro::resetAngle() {
_lastAngle = getSensorAngle();
}
// ##################################################################################################################################
int OBR_Gyro::getAngle(int targetAngle) {
int finalAngle;
if (targetAngle >= 0) {
finalAngle = getSensorAngle() + (360-_lastAngle);
finalAngle = finalAngle % 360;
}
else if (targetAngle < 0) {
finalAngle = getSensorAngle() + (360-_lastAngle);
finalAngle = finalAngle % 360;
finalAngle = finalAngle - 360;
finalAngle = finalAngle % 360;
}
return finalAngle;
}