-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmasterCode.ino
174 lines (148 loc) · 4.7 KB
/
masterCode.ino
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
#define COMPL_K 0.07
#include "Wire.h"
// получаем углы при помощи DMP
#include "I2Cdev.h"
#include "MPU6050_6Axis_MotionApps_V6_12.h"
#include "Wire.h"
#include <SoftwareSerial.h>
SoftwareSerial btSerial(2, 3);
unsigned long lastSendTime;
int sendDelay = 500;
MPU6050 mpu;
float angleX = 0;
float angleY = 0;
float angleZ = 0;
float angleX1 = 0;
float angleY1 = 0;
float angleZ1 = 0;
float angleX2 = 0;
float angleY2 = 0;
float angleZ2 = 0;
boolean b = false;
int flex1pin = A0;
int flex2pin = A1;
int flex1min, flex1max, flex2min, flex2max;
int flex1value, flex2value;
void setup() {
pinMode(13, OUTPUT);
pinMode(flex1pin, INPUT);
pinMode(flex2pin, INPUT);
digitalWrite(13, HIGH);
delay(2000);
flex1max = analogRead(flex1pin);
flex2max = analogRead(flex2pin);
digitalWrite(13, LOW);
delay(100);
digitalWrite(13, HIGH);
delay(100);
digitalWrite(13, LOW);
delay(100);
digitalWrite(13, HIGH);
delay(2000);
flex1min = analogRead(flex1pin);
flex2min = analogRead(flex2pin);
digitalWrite(13, LOW);
delay(100);
digitalWrite(13, HIGH);
delay(100);
digitalWrite(13, LOW);
Wire.begin();
Wire.setClock(400000ul);
Serial.begin(38400);
mpu.initialize();
initDMP();
pinMode(12, OUTPUT);
pinMode(8, OUTPUT);
btSerial.begin(38400);
}
void loop()
{
if (b == true)
{
// смена адреса модуля
digitalWrite(12, HIGH);
digitalWrite(8, LOW);
getAngles();
Serial.print("MPU pin12: ");
Serial.print(angleX); Serial.print("\t\t");
Serial.print(angleY); Serial.print("\t\t");
Serial.print(angleZ); Serial.print("\t\t");
// копируем полученные из getAngles() углы в глобальные переменные для последующей отправки
angleX1 = angleX;
angleY1 = angleY;
angleZ1 = angleZ;
delay(20);
b = false;
}
else
{
// смена адреса модуля
digitalWrite(12, LOW);
digitalWrite(8, HIGH);
getAngles();
Serial.print("MPU pin8: ");
Serial.print(angleX); Serial.print("\t\t");
Serial.print(angleY); Serial.print("\t\t");
Serial.print(angleZ); Serial.print("\t\t");
// копируем полученные из getAngles() углы в глобальные переменные для последующей отправки
angleX2 = angleX;
angleY2 = angleY;
angleZ2 = angleZ;
delay(20);
b = true;
flex1value = analogRead(flex1pin);
flex1value = map(flex1value, flex1min, flex1max, 0, 180);
flex2value = analogRead(flex2pin);
flex2value = map(flex2value, flex2min, flex2max, 0, 180);
Serial.print(flex1value); Serial.print("\t\t");
Serial.println(flex2value);
}
delay(10);
if (millis() > lastSendTime + sendDelay) // отправка через блютуз идет по собственному "таймеру", каждые sendDelay миллисекунд
{
lastSendTime = millis();
// send
Serial.println("Send");
btSerial.print("<");
btSerial.print(int(angleX1));
btSerial.print(",");
btSerial.print(int(angleZ1));
btSerial.print(",");
btSerial.print(int(angleY2));
btSerial.print(",");
btSerial.print(int(angleZ2));
btSerial.print(",");
btSerial.print(int(flex1value));
btSerial.print(",");
btSerial.print(int(flex2value));
btSerial.print(">");
}
}
// НУЖНЫЕ ПЕРЕМЕННЫЕ
const float toDeg = 180.0 / M_PI;
uint8_t mpuIntStatus; // holds actual interrupt status byte from MPU
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
VectorFloat gravity; // [x, y, z] gravity vector
float ypr[3]; // [yaw, pitch, roll] yaw/pitch/roll container and gravity vector
// инициализация
void initDMP() {
devStatus = mpu.dmpInitialize();
mpu.setDMPEnabled(true);
mpuIntStatus = mpu.getIntStatus();
packetSize = mpu.dmpGetFIFOPacketSize();
}
// получение углов в angleX, angleY, angleZ
void getAngles() {
if (mpu.dmpGetCurrentFIFOPacket(fifoBuffer)) {
mpu.dmpGetQuaternion(&q, fifoBuffer);
mpu.dmpGetGravity(&gravity, &q);
mpu.dmpGetYawPitchRoll(ypr, &q, &gravity);
angleX = ypr[2] * toDeg;
angleY = ypr[1] * toDeg;
angleZ = ypr[0] * toDeg;
}
}