-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathconsultSerial.py
242 lines (170 loc) · 6.79 KB
/
consultSerial.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
#!/usr/bin/python
# dashboard.py
#Copyright (C) 2014 Eilidh Fridlington http://eilidh.fridlington.com
#This program is free software: you can redistribute it and/or modify
#it under the terms of the GNU General Public License as published by
#the Free Software Foundation, either version 3 of the License, or
#(at your option) any later version.
#This program is distributed in the hope that it will be useful,
#but WITHOUT ANY WARRANTY; without even the implied warranty of
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
#GNU General Public License for more details.
#You should have received a copy of the GNU General Public License
#along with this program. If not, see <http://www.gnu.org/licenses/
import time
import math
import serial
import threading
import datetime
PORT = serial.Serial('/home/eilidh/K11Consult/SCRIPT', 9600, timeout=None)
class ReadStream(threading.Thread):
def __init__(self, daemon):
threading.Thread.__init__(self)
self.daemon = daemon
self.start()
def run(self):
PORT.write('\x5A\x0B\x5A\x01\x5A\x08\x5A\x0C\x5A\x0D \
\x5A\x03\x5A\x05\x5A\x09\x5A\x13\x5A\x16 \
\x5A\x17\x5A\x1A\x5A\x1C\x5A\x21\xF0')
global MPH_Value
global RPM_Value
global TEMP_Value
global BATT_Value
global MAF_Value
global AAC_Value
global INJ_Value
global TIM_Value
MPH_Value = 0
RPM_Value = 0
TEMP_Value = 0
BATT_Value = 0
MAF_Value = 0
AAC_Value = 0
INJ_Value = 0
TIM_Value = 0
fileName = datetime.datetime.now().strftime("%d-%m-%y-%H-%M")
while READ_THREAD == True:
incomingData = PORT.read(16)
#self.logToFile(incomingData,fileName)
if incomingData:
dataList = map(ord,incomingData)
Header = 255
returnBytes = 14
try:
if dataList[-4] == Header and dataList[-3] == returnBytes:
try:
MPH_Value = self.convertToMPH(int(dataList[-2]))
RPM_Value = self.convertToRev(int(dataList[-1]))
TEMP_Value = self.convertToTemp(int(dataList[0]))
BATT_Value = self.convertToBattery(float(dataList[1]))
AAC_Value = self.convertToAAC(int(dataList[8]))
MAF_Value = self.convertToMAF(int(dataList[5]))
time.sleep(0.002)
except (ValueError, IndexError):
pass
else:
pass
except (ValueError, IndexError):
pass
else:
pass
def convertToMPH(self,inputData):
return int(round ((inputData * 2.11) * 0.621371192237334))
def convertToRev(self,inputData):
return int(round((inputData * 12.5),2))
def convertToTemp(self,inputData):
return inputData - 50
def convertToBattery(self,inputData):
return round(((inputData * 80) / 1000),1)
def convertToMAF(self,inputData):
return inputData * 5
def convertToAAC(self,inputData):
return inputData / 2
def convertToInjection(self,inputData):
return inputData / 100
def convertToTiming(self,inputData):
return 110 - inputData
def logToFile(self,data,fileName):
logFile = open(fileName + '.hex', 'a+')
logFile.write(data)
READ_THREAD = False
MPH_Value = 0
RPM_Value = 0
TEMP_Value = 0
BATT_Value = 0
AAC_Value = 0
MAF_Value = 0
while READ_THREAD == False:
try:
PORT.flushInput()
PORT.write('\xFF\xFF\xEF')
time.sleep(2)
Connected = PORT.read(1)
if Connected == '\x10':
READ_THREAD = True
ReadStream(True)
except ValueError:
PORT.open()
while READ_THREAD == True:
pygame.time.Clock().tick(60)
for event in pygame.event.get():
if event.type==pygame.QUIT:
PORT.flushInput()
PORT.close()
sys.exit()
if event.type is KEYDOWN and event.key == K_q:
PORT.flushInput()
PORT.close()
sys.exit()
if event.type is KEYDOWN and event.key == K_w:
pygame.display.set_mode((width,height))
pygame.mouse.set_visible(False)
surface1X = surface1WindowedX
surface1Y = surface1WindowedY
surface2X = surface2WindowedX
surface2Y = surface2WindowedY
surface3X = surface3WindowedX
surface3Y = surface3WindowedY
surface4X = surface4WindowedX
surface4Y = surface4WindowedY
surface5X = surface5WindowedX
surface5Y = surface5WindowedY
surface6X = surface6WindowedX
surface6Y = surface6WindowedY
screen.fill(0x000000)
if event.type is KEYDOWN and event.key == K_f:
pygame.display.set_mode((monitorX,monitorY), FULLSCREEN)
surface1X = surface1FullscreenX
surface1Y = surface1FullscreenY
surface2X = surface2FullscreenX
surface2Y = surface2FullscreenY
surface3X = surface3FullscreenX
surface3Y = surface3FullscreenY
surface4X = surface4FullscreenX
surface4Y = surface4FullscreenY
surface5X = surface5FullscreenX
surface5Y = surface5FullscreenY
surface6X = surface6FullscreenX
surface6Y = surface6FullscreenY
screen.fill(0x000000)
pygame.mouse.set_visible(False)
surface1.fill(0x000000)
surface2.fill(0x0000FF)
surface3.fill(0x0000FF)
surface4.fill(0x0000FF)
surface5.fill(0x0000FF)
surface6.fill(0x0000FF)
indicatorNeedle(surface1,MPH_Value,648,650,650,sixty,BLACK,0,0,10,12,6,1,False,False)
indicatorNeedle(surface2,RPM_Value,488,500,500,sixty,BLACK,0,0,500,10,5,100,False,False)
indicatorNeedle(surface3,MAF_Value,168,170,170,twenty,BLACK,-45,-45,50,6,3,10,True,False,"MAF",millivolt)
indicatorNeedle(surface4,AAC_Value,168,170,170,twenty,BLACK,45,45,10,6,3,1,True,False,"AAC",percent)
indicatorNeedle(surface5,TEMP_Value,148,150,150,twenty,BLACK,-45,45,16,6,3,1,True,False,"Temperature",degree)
indicatorNeedle(surface6,BATT_Value,148,150,150,twenty,BLACK,-45,45,2,6,3,1,True,False,"Battery",volt)
screen.blit(surface1,(surface1X,surface1Y))
screen.blit(surface2,(surface2X,surface2Y))
screen.blit(surface3,(surface3X,surface3Y))
screen.blit(surface4,(surface4X,surface4Y))
screen.blit(surface5,(surface5X,surface5Y))
screen.blit(surface6,(surface6X,surface6Y))
#time.sleep(0.02)
pygame.display.update()