-
Notifications
You must be signed in to change notification settings - Fork 0
/
cli.py
440 lines (374 loc) · 14 KB
/
cli.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
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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
#!/usr/bin/python
import pygame
import sys
import os
import time
import math
import datetime
import gps
import RPi.GPIO as GPIO # Import GPIO library
from pygame.locals import *
from time import strftime, gmtime, sleep
from smbus import SMBus
from ctypes import c_short
from LSM9DS0 import *
GPIO.setmode(GPIO.BOARD) # Use board pin numbering
GPIO.setup(13, GPIO.OUT) # Setup GPIO Pin 7 to OUT
logfilename = "/home/pi/pidashcam/logs/" + time.strftime("%Y%m%d-%H%M%S")
#bus = smbus.SMBus(1)
bus = SMBus(1) # 0 for R-Pi Rev. 1, 1 for Rev. 2
session = gps.gps("localhost", "2947")
session.stream(gps.WATCH_ENABLE | gps.WATCH_NEWSTYLE)
RAD_TO_DEG = 57.29578
M_PI = 3.14159265358979323846
# [deg/s/LSB] If you change the dps for gyro, you need to update this value accordingly
G_GAIN = 0.070
# Loop period = 41ms. This needs to match the time it takes each loop to run
LP = 0.040
AA = 0.90 # Complementary filter constant
def writeACC(register, value):
bus.write_byte_data(ACC_ADDRESS, register, value)
return -1
def writeMAG(register, value):
bus.write_byte_data(MAG_ADDRESS, register, value)
return -1
def writeGRY(register, value):
bus.write_byte_data(GYR_ADDRESS, register, value)
return -1
def readACCx():
acc_l = bus.read_byte_data(ACC_ADDRESS, OUT_X_L_A)
acc_h = bus.read_byte_data(ACC_ADDRESS, OUT_X_H_A)
acc_combined = (acc_l | acc_h << 8)
return acc_combined if acc_combined < 32768 else acc_combined - 65536
def readACCy():
acc_l = bus.read_byte_data(ACC_ADDRESS, OUT_Y_L_A)
acc_h = bus.read_byte_data(ACC_ADDRESS, OUT_Y_H_A)
acc_combined = (acc_l | acc_h << 8)
return acc_combined if acc_combined < 32768 else acc_combined - 65536
def readACCz():
acc_l = bus.read_byte_data(ACC_ADDRESS, OUT_Z_L_A)
acc_h = bus.read_byte_data(ACC_ADDRESS, OUT_Z_H_A)
acc_combined = (acc_l | acc_h << 8)
return acc_combined if acc_combined < 32768 else acc_combined - 65536
def readMAGx():
mag_l = bus.read_byte_data(MAG_ADDRESS, OUT_X_L_M)
mag_h = bus.read_byte_data(MAG_ADDRESS, OUT_X_H_M)
mag_combined = (mag_l | mag_h << 8)
return mag_combined if mag_combined < 32768 else mag_combined - 65536
def readMAGy():
mag_l = bus.read_byte_data(MAG_ADDRESS, OUT_Y_L_M)
mag_h = bus.read_byte_data(MAG_ADDRESS, OUT_Y_H_M)
mag_combined = (mag_l | mag_h << 8)
return mag_combined if mag_combined < 32768 else mag_combined - 65536
def readMAGz():
mag_l = bus.read_byte_data(MAG_ADDRESS, OUT_Z_L_M)
mag_h = bus.read_byte_data(MAG_ADDRESS, OUT_Z_H_M)
mag_combined = (mag_l | mag_h << 8)
return mag_combined if mag_combined < 32768 else mag_combined - 65536
def readGYRx():
gyr_l = bus.read_byte_data(GYR_ADDRESS, OUT_X_L_G)
gyr_h = bus.read_byte_data(GYR_ADDRESS, OUT_X_H_G)
gyr_combined = (gyr_l | gyr_h << 8)
return gyr_combined if gyr_combined < 32768 else gyr_combined - 65536
def readGYRy():
gyr_l = bus.read_byte_data(GYR_ADDRESS, OUT_Y_L_G)
gyr_h = bus.read_byte_data(GYR_ADDRESS, OUT_Y_H_G)
gyr_combined = (gyr_l | gyr_h << 8)
return gyr_combined if gyr_combined < 32768 else gyr_combined - 65536
def readGYRz():
gyr_l = bus.read_byte_data(GYR_ADDRESS, OUT_Z_L_G)
gyr_h = bus.read_byte_data(GYR_ADDRESS, OUT_Z_H_G)
gyr_combined = (gyr_l | gyr_h << 8)
return gyr_combined if gyr_combined < 32768 else gyr_combined - 65536
# initialise the accelerometer
# z,y,x axis enabled, continuos update, 100Hz data rate
writeACC(CTRL_REG1_XM, 0b01100111)
writeACC(CTRL_REG2_XM, 0b00100000) # +/- 16G full scale
# initialise the magnetometer
writeMAG(CTRL_REG5_XM, 0b11110000) # Temp enable, M data rate = 50Hz
writeMAG(CTRL_REG6_XM, 0b01100000) # +/-12gauss
writeMAG(CTRL_REG7_XM, 0b00000000) # Continuous-conversion mode
# initialise the gyroscope
writeGRY(CTRL_REG1_G, 0b00001111) # Normal power mode, all axes enabled
writeGRY(CTRL_REG4_G, 0b00110000) # Continuos update, 2000 dps full scale
gyroXangle = 0.0
gyroYangle = 0.0
gyroZangle = 0.0
CFangleX = 0.0
CFangleY = 0.0
os.environ["SDL_FBDEV"] = "/dev/fb1"
pygame.init()
# set up the window
screen = pygame.display.set_mode((128, 160), 0, 32)
pygame.display.set_caption('Drawing')
pygame.mouse.set_visible(0)
# set up the colors
BLACK = (0, 0, 0)
WHITE = (255, 255, 255)
RED = (255, 0, 0)
GREEN = (0, 255, 0)
BLUE = (0, 0, 255)
CYAN = (0, 255, 255)
MAGENTA = (255, 0, 255)
YELLOW = (255, 255, 0)
# Fill background
background = pygame.Surface(screen.get_size())
background = background.convert()
background.fill(WHITE)
box = pygame.draw.rect(background, BLACK, (0, 0, 128, 160))
# colour (starx, staryy, width, height
speed = 0
displayspeed = 0
running = True
report = session.next()
report.epv = str("NA")
report.time = str("NA")
report.device = str("NA")
report.lon = str("NA")
report.lat = str("NA")
report.mode = str("NA")
report.eps = str("NA")
report.epx = str("NA")
report.epy = str("NA")
report.epv = str("NA")
report.speed = str("NA")
# run the game loop
del report
while running:
report = session.next()
if report['class'] == 'TPV':
if hasattr(report, 'time'):
report.time = str(report.time)
timesave = report.time
else:
report.time = str("ERROR 1")
if hasattr(report, 'device'):
report.device = str(report.device)
else:
report.device = str("ERROR 1")
if hasattr(report, 'lon'):
report.lon = str(report.lon)
else:
report.lon = str("ERROR 1")
if hasattr(report, 'lat'):
report.lat = str(report.lat)
else:
report.lat = str("ERROR 1")
if hasattr(report, 'mode'):
report.mode = str(report.mode)
else:
report.mode = str("ERROR 1")
if hasattr(report, 'eps'):
report.eps = str(report.eps)
else:
report.eps = str("ERROR 1")
if hasattr(report, 'epx'):
report.epx = str(report.epx)
else:
report.epx = str("ERROR 1")
if hasattr(report, 'epy'):
report.epy = str(report.epy)
else:
report.epy = str("ERROR 1")
if hasattr(report, 'epv'):
report.epv = str(report.epv)
else:
report.epv = str("ERROR 1")
if hasattr(report, 'speed'):
report.speed = 2.23693629 * report.speed
report.speed = "{:.0f}".format(report.speed)
report.speed = str(report.speed)
speedsave = report.speed
else:
report.speed = str("ERROR 1")
else:
if report.time == None:
report.time = str("ERROR 2")
else:
report.time = timesave
report.epv = str("ERROR 2")
report.time = str("ERROR 2")
report.device = str("ERROR 2")
report.lon = str("ERROR 2")
report.lat = str("ERROR 2")
report.mode = str("ERROR 2")
report.eps = str("ERROR 2")
report.epx = str("ERROR 2")
report.epy = str("ERROR 2")
report.epv = str("ERROR 2")
report.speed = speedsave
speed = speed + 1
# background.fill(BLACK)
# Display some text
# font = pygame.font.Font("/home/pi/pidashcam/bold.ttf", 72)
displayspeed = report.speed
print displayspeed + "MPH"
# text = font.render(displayspeed, 1, (WHITE))
# textpos = text.get_rect(centerx=background.get_width() / 2, centery=26)
# background.blit(text, textpos)
#font = pygame.font.Font("/home/pi/pidashcam/audi.ttf", 14)
#text = font.render("MPH", 1, (WHITE))
#textpos = text.get_rect(centerx=background.get_width() / 2, centery=65)
#background.blit(text, textpos)
#font = pygame.font.Font("/home/pi/pidashcam/audi.ttf", 14)
currenttime = time.strftime("%H:%M:%S", gmtime())
gmttext = " GMT"
currenttime = currenttime + gmttext
print currenttime
#text = font.render(currenttime, 1, (WHITE))
#textpos = text.get_rect(centerx=background.get_width() / 2, centery=80)
#background.blit(text, textpos)
# Start Temp and pressure monitor part...
# put into function!!!
# Pressure and Temprature
addr = 0x77
oversampling = 3 # 0..3
# return two bytes from data as a signed 16-bit value
def get_short(data, index):
return c_short((data[index] << 8) + data[index + 1]).value
# return two bytes from data as an unsigned 16-bit value
def get_ushort(data, index):
return (data[index] << 8) + data[index + 1]
(chip_id, version) = bus.read_i2c_block_data(addr, 0xD0, 2)
# print "Chip Id:", chip_id, "Version:", version
# print
# print "Reading calibration data..."
# Read whole calibration EEPROM data
cal = bus.read_i2c_block_data(addr, 0xAA, 22)
# Convert byte data to word values
ac1 = get_short(cal, 0)
ac2 = get_short(cal, 2)
ac3 = get_short(cal, 4)
ac4 = get_ushort(cal, 6)
ac5 = get_ushort(cal, 8)
ac6 = get_ushort(cal, 10)
b1 = get_short(cal, 12)
b2 = get_short(cal, 14)
mb = get_short(cal, 16)
mc = get_short(cal, 18)
md = get_short(cal, 20)
# print "Starting temperature conversion..."
bus.write_byte_data(addr, 0xF4, 0x2E)
sleep(0.005)
(msb, lsb) = bus.read_i2c_block_data(addr, 0xF6, 2)
ut = (msb << 8) + lsb
# print "Starting pressure conversion..."
bus.write_byte_data(addr, 0xF4, 0x34 + (oversampling << 6))
sleep(0.04)
(msb, lsb, xsb) = bus.read_i2c_block_data(addr, 0xF6, 3)
up = ((msb << 16) + (lsb << 8) + xsb) >> (8 - oversampling)
# print "Calculating temperature..."
x1 = ((ut - ac6) * ac5) >> 15
x2 = (mc << 11) / (x1 + md)
b5 = x1 + x2
t = (b5 + 8) >> 4
# print "Calculating pressure..."
b6 = b5 - 4000
b62 = b6 * b6 >> 12
x1 = (b2 * b62) >> 11
x2 = ac2 * b6 >> 11
x3 = x1 + x2
b3 = (((ac1 * 4 + x3) << oversampling) + 2) >> 2
x1 = ac3 * b6 >> 13
x2 = (b1 * b62) >> 16
x3 = ((x1 + x2) + 2) >> 2
b4 = (ac4 * (x3 + 32768)) >> 15
b7 = (up - b3) * (50000 >> oversampling)
p = (b7 * 2) / b4
#p = (b7 / b4) * 2
x1 = (p >> 8) * (p >> 8)
x1 = (x1 * 3038) >> 16
x2 = (-7357 * p) >> 16
p = p + ((x1 + x2 + 3791) >> 4)
# print
t = t / 10.0
p = p / 100.0
#font = pygame.font.Font("/home/pi/pidashcam/audi.ttf", 12)
tempprint = "Temp:" + str(t) + "C"
#temptext = font.render(tempprint, 1, (WHITE))
presprint = "Pres:" + str(p) + "hPa"
#prestext = font.render(presprint, 1, (WHITE))
print tempprint
print presprint
#textpos = text.get_rect(centerx=60,centery=90)
#background.blit(text, textpos)
#screen.blit(temptext, (5, 90))
#screen.blit(prestext, (5, 102))
#pygame.display.flip()
#screen.blit(background, (0, 0))
# Headings and other stuff
AccXangle = (math.atan2(readACCy(), readACCz()) + M_PI) * RAD_TO_DEG
AccYangle = (math.atan2(readACCz(), readACCx()) + M_PI) * RAD_TO_DEG
# Convert Gyro raw to degrees per second
rate_gyr_x = readGYRx() * G_GAIN
rate_gyr_y = readGYRy() * G_GAIN
rate_gyr_z = readGYRz() * G_GAIN
# Calculate the angles from the gyro. LP = loop period
gyroXangle += rate_gyr_x * LP
gyroYangle += rate_gyr_y * LP
gyroZangle += rate_gyr_z * LP
# Change the rotation value of the accelerometer to -/+ 180 and move the Y axis '0' point to up.
# Two different pieces of code are used depending on how your IMU is mounted.
# If IMU is upside down
#
# if AccXangle >180:
# AccXangle -= 360.0
# AccYangle-=90
# if (AccYangle >180):
# AccYangle -= 360.0
#//If IMU is up the correct way, use these lines
AccXangle -= 180.0
if AccYangle > 90:
AccYangle -= 270.0
else:
AccYangle += 90.0
# Complementary filter used to combine the accelerometer and gyro values.
CFangleX = AA * (CFangleX + rate_gyr_x * LP) + (1 - AA) * AccXangle
CFangleY = AA * (CFangleY + rate_gyr_y * LP) + (1 - AA) * AccYangle
heading = 180 * math.atan2(readMAGy(), readMAGx()) / M_PI
if heading < 0:
heading += 360
textaccxhelper = "{:.2f}".format(AccXangle)
textaccyhelper = "{:.2f}".format(AccYangle)
textcfaxhelper = "{:.2f}".format(CFangleX)
textcfayhelper = "{:.2f}".format(CFangleY)
textheadhelper = "{:.0f}".format(heading)
#font = pygame.font.Font("/home/pi/pidashcam/audi.ttf", 12)
#textaccx = font.render("AX:" + str(textaccxhelper), 1, (WHITE))
#textaccy = font.render("AY:" + str(textaccyhelper), 1, (WHITE))
#textcfax = font.render("CX:" + str(textcfaxhelper), 1, (WHITE))
#textcfay = font.render("CY:" + str(textcfayhelper), 1, (WHITE))
#texthead = font.render("HD:" + str(textheadhelper), 1, (WHITE))
#screen.blit(textaccx, (5, 114))
#screen.blit(textaccy, (5, 128))
#screen.blit(textcfax, (70, 114))
#screen.blit(textcfay, (70, 128))
#screen.blit(texthead, (5, 142))
#background.blit(text, textpos)
print textaccxhelper
print textaccyhelper
print textcfaxhelper
print textcfayhelper
print textheadhelper
textaccxsave = textaccxhelper
textaccysave = textaccyhelper
textcfaxsave = textcfaxhelper
textcfaysave = textcfayhelper
textheadsave = textheadhelper
GPIO.output(13, True) # Turn on GPIO pin 7
time.sleep(0.5)
# GPS TIME GPS DEVICE LONGTITUDE LATITUDE
# REPORT MODE
# GPS SPEED GYRO ACC X GYRO ACC Y GYRO K X
# GYRO K Y GYRO HEAD TEMP PRESS
# DEVICE TIME
tosave = report.time + "," + report.device + "," + report.lon + "," + report.lat + "," + report.mode + "," + report.eps + "," + report.epx + "," + report.epy + "," + report.epv + \
"," + report.speed + "," + textaccxsave + "," + textaccysave + "," + textcfaxsave + "," + \
textcfaysave + "," + textheadsave + "," + \
str(t) + "," + str(p) + "," + currenttime + "\n"
print tosave
# create a file using the given input
#f = open(logfilename + '.nickgps', 'a')
#f.write(tosave)
#f.close()
GPIO.output(13, False) # Turn on GPIO pin 7