-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgetOrientation.py
executable file
·61 lines (43 loc) · 1.84 KB
/
getOrientation.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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
HOST = "localhost"
PORT = 4223
UID = "6DdNWN" # Change to your UID
from tinkerforge.ip_connection import IPConnection
from tinkerforge.brick_imu import IMU
import numpy as np
from numpy.linalg import inv
import time
def rad2deg(x):
return x*180.0/np.pi
def calcattitude(ax, ay, az):
ax = ax*9.806/1000.0
ay = ay*9.806/1000.0
az = az*9.806/1000.0
# Calculate Roll and Pitch from Acceleration
# is only valid in quasistatic situations
rollacc = rad2deg(np.arctan2(-ay, -az))
pitchacc= rad2deg(-np.arctan2(-ax, np.sqrt(ay**2+az**2)))
print("ax:\t%+6.0f\tay:\t%+6.0f\taz:\t%+6.0f\troll:\t%+6.0f\tpitch:\t%+6.0f" % (ax, ay, az, rollacc, pitchacc))
def calcattitude2(x, y, z, w):
# Calculate Attitude
# Buchholz, J. J. (2013). Vorlesungsmanuskript Regelungstechnik und Flugregler.
# GRIN Verlag. Retrieved from http://www.grin.com/de/e-book/82818/regelungstechnik-und-flugregler
yaw = np.arctan2(2.0*(x*y + w*z), w**2+x**2-y**2-z**2)
pitch = -np.arcsin(2.0*(w*y - x*z))
roll = -np.arctan2(2.0*(y*z + w*x), -(w**2-x**2-y**2+z**2))
print("\t\t\t\tyaw:\t%+6.0f\troll:\t%+6.0f\tpitch:\t%+6.0f" % (rad2deg(yaw), rad2deg(roll), rad2deg(pitch)))
print(80*'=')
if __name__ == "__main__":
ipcon = IPConnection() # Create IP connection
imu = IMU(UID, ipcon) # Create device object
ipcon.connect(HOST, PORT) # Connect to brickd
# Don't use device before ipcon is connected
# Set period for quaternion callback
imu.set_quaternion_period(100)
imu.set_acceleration_period(100)
# Register quaternion callback
imu.register_callback(imu.CALLBACK_QUATERNION, calcattitude2)
imu.register_callback(imu.CALLBACK_ACCELERATION, calcattitude)
raw_input('Press key to exit\n') # Use input() in Python 3
ipcon.disconnect()