-
Notifications
You must be signed in to change notification settings - Fork 0
/
imu_control.py
148 lines (118 loc) · 3.67 KB
/
imu_control.py
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
#!/usr/bin/env python
"""
A module to control and access the IMU & Data for 1-Dimensional Tests
"""
import serial
import math
import time
import numpy as np
from matplotlib import pyplot as plt
import serial.tools.list_ports
from Logs.log import log
from Logs.errors import ERROR
__author__="Mike Fogel"
__credits__=["Mike Fogel", "Simon Kowerski"]
__creation_date__="7/25/2023"
pi=math.pi
def init_imu():
"""
Initialize the IMU to allow collection of data
Returns
yaw0 (int): initial yaw
imu (imu): conection to the connected imu device
"""
log(350)
baud=115200
header=15
maxt=200
settled=0
imutol=1.0E-6
qOLD=100
try:
ports=serial.tools.list_ports.comports()
imu=serial.Serial(ports[0].device,baud, timeout=5)
except Exception:
raise ERROR(1350, "failed to open serial connection")
# Clearing IMU Header
for i in range(0,header):
data=imu.readline()
# Settling IMU
i=0
tstart=time.time()
while (settled == 0) and (i < maxt):
i=i+1
t=time.time() - tstart
data=imu.readline()
numData=data.decode()
numData=numData.split(",")
numData=np.array(numData[0:3], dtype=float)
q1=numData[0]
q2=numData[1]
q3=numData[2]
q0=math.sqrt(abs(( 1.0 - ((q1 * q1 ) + (q2 * q2 ) + (q3 * q3 )))))
q2sqr=(q2 * q2)
# roll calculation from parameters
t0=(+2.0 * (q0 * q1 + q2 * q3))
t1=(+1.0 - 2.0 * (q1 * q1 + q2sqr))
rollNew=(math.atan2(t0, t1) * 180.0 / pi)
# pitch calculation using euler parameters
t2=(+2.0 * (q0 * q2 - q3 * q1))
if t2 >= 1:
pitchNew=float(90)
elif t2<= -1:
pitchNew=float(-90)
else:
pitchNew=float(math.asin(t2) * 180.0 / pi)
# yaw calculation
t3=float(+2.0 * (q0 * q3 + q1 * q2))
t4=float(+1.0 - 2.0 * (q2sqr + q3 * q3))
yawNew=float(math.atan2(t3, t4) * 180.0 / pi)
yaw0=yawNew
if ((abs(q0 - qOLD) < imutol) and settled == 0):
log(1352, f"t= {t}, yaw0= {yaw0}")
settled=1;
tsettle=t;
qOLD=q0;
if (settled == 0):
raise ERROR(1350, "IMU did not settle")
return yaw0, imu
def imu_data(imu, yaw0, yawOld):
"""
Collects and returns data from the connected IMU Unit
Args:
imu (imu): variable of connection to the connected imu device
yaw0 (int): the first yaw value stored
yawOld (int): the previous yaw value stored
Returns:
int[]: yawNew, pitchNew, rollNew - self explanatory
"""
log(351)
data=imu.readline()
numData=data.decode()
numData=numData.split(",")
numData=np.array(numData[0:3], dtype=float)
q1=numData[0]
q2=numData[1]
q3=numData[2]
q0=(math.sqrt(abs(( 1.0 - ((q1 * q1 ) + (q2 * q2 ) + (q3 * q3 ))))));
q2sqr=(q2 * q2)
# roll calculation from parameters
t0=(+2.0 * (q0 * q1 + q2 * q3))
t1=(+1.0 - 2.0 * (q1 * q1 + q2sqr))
rollNew=(math.atan2(t0, t1) * 180.0 / pi)
# pitch calculation using euler parameters
t2=(+2.0 * (q0 * q2 - q3 * q1))
if t2 >= 1:
pitchNew=float(90)
elif t2<= -1:
pitchNew=float(-90)
else:
pitchNew=float(math.asin(t2) * 180.0 / pi)
# yaw calculation
t3=float(+2.0 * (q0 * q3 + q1 * q2))
t4=float(+1.0 - 2.0 * (q2sqr + q3 * q3))
yawNew=float(math.atan2(t3, t4) * 180.0 / pi)
yawNew=yawNew - yaw0
if yawNew < 0 and yawOld > 90:
yawNew=yawNew+360;
return yawNew, pitchNew, rollNew