-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompass.py
executable file
·53 lines (40 loc) · 1.08 KB
/
compass.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
#compass.py
import RPi.GPIO as GPIO
import smbus
import time
import math
import csv
bus = smbus.SMBus(1)
address = 0x1e
def read_byte(adr):
return bus.read_byte_data(address, adr)
def read_word(adr):
high = bus.read_byte_data(address, adr)
low = bus.read_byte_data(address, adr+1)
val = (high << 8) + low
return val
def read_word_2c(adr):
val = read_word(adr)
if (val >= 0x8000):
return -((65535 - val) + 1)
else:
return val
def write_byte(adr, value):
bus.write_byte_data(address, adr, value)
def get_angle():
write_byte(0, 0b01110000)
write_byte(1, 0b00100000)
write_byte(2, 0b00000000)
scale = 0.92
x_offset = 38
y_offset = -129.5
x_out = (read_word_2c(3) - x_offset) * scale
y_out = (read_word_2c(7) - y_offset) * scale
z_out = (read_word_2c(5)) * scale
bearing = math.atan2(y_out, x_out)
if (bearing < 0):
bearing += 2 * math.pi
declination = 5.5
bearing = round((math.degrees(bearing) + declination), 1)
#print("Bearing: ", bearing)
return bearing