-
Notifications
You must be signed in to change notification settings - Fork 784
/
obd_sensors.py
162 lines (131 loc) · 5.64 KB
/
obd_sensors.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
#!/usr/bin/env python
###########################################################################
# obd_sensors.py
#
# Copyright 2004 Donour Sizemore (donour@uchicago.edu)
# Copyright 2009 Secons Ltd. (www.obdtester.com)
#
# This file is part of pyOBD.
#
# pyOBD 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 2 of the License, or
# (at your option) any later version.
#
# pyOBD 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 pyOBD; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
###########################################################################
def hex_to_int(str):
i = eval("0x" + str, {}, {})
return i
def maf(code):
code = hex_to_int(code)
return code * 0.00132276
def throttle_pos(code):
code = hex_to_int(code)
return code * 100.0 / 255.0
def intake_m_pres(code): # in kPa
code = hex_to_int(code)
return code / 0.14504
def rpm(code):
code = hex_to_int(code)
return code / 4
def speed(code):
code = hex_to_int(code)
return code / 1.609
def percent_scale(code):
code = hex_to_int(code)
return code * 100.0 / 255.0
def timing_advance(code):
code = hex_to_int(code)
return (code - 128) / 2.0
def sec_to_min(code):
code = hex_to_int(code)
return code / 60
def temp(code):
code = hex_to_int(code)
return code - 40
def cpass(code):
#fixme
return code
def fuel_trim_percent(code):
code = hex_to_int(code)
return (code - 128.0) * 100.0 / 128
def dtc_decrypt(code):
#first byte is byte after PID and without spaces
num = hex_to_int(code[:2]) #A byte
res = []
if num & 0x80: # is mil light on
mil = 1
else:
mil = 0
# bit 0-6 are the number of dtc's.
num = num & 0x7f
res.append(num)
res.append(mil)
numB = hex_to_int(code[2:4]) #B byte
for i in range(0,3):
res.append(((numB>>i)&0x01)+((numB>>(3+i))&0x02))
numC = hex_to_int(code[4:6]) #C byte
numD = hex_to_int(code[6:8]) #D byte
for i in range(0,7):
res.append(((numC>>i)&0x01)+(((numD>>i)&0x01)<<1))
res.append(((numD>>7)&0x01)) #EGR SystemC7 bit of different
return res
def bin(s):
return str(s) if s<=1 else bin(s>>1) + str(s&1)
def hex_to_bitstring(str):
return bin(int(str, 16))
class Sensor:
def __init__(self,sensorName, sensorcommand, sensorValueFunction, u):
self.name = sensorName
self.cmd = sensorcommand
self.value= sensorValueFunction
self.unit = u
SENSORS = [
Sensor(" Supported PIDs", "0100", hex_to_bitstring ,"" ),
Sensor("Status Since DTC Cleared", "0101", dtc_decrypt ,"" ),
Sensor("DTC Causing Freeze Frame", "0102", cpass ,"" ),
Sensor(" Fuel System Status", "0103", cpass ,"" ),
Sensor(" Calculated Load Value", "0104", percent_scale ,"" ),
Sensor(" Coolant Temperature", "0105", temp ,"C" ),
Sensor(" Short Term Fuel Trim", "0106", fuel_trim_percent ,"%" ),
Sensor(" Long Term Fuel Trim", "0107", fuel_trim_percent ,"%" ),
Sensor(" Short Term Fuel Trim", "0108", fuel_trim_percent ,"%" ),
Sensor(" Long Term Fuel Trim", "0109", fuel_trim_percent ,"%" ),
Sensor(" Fuel Rail Pressure", "010A", cpass ,"" ),
Sensor("Intake Manifold Pressure", "010B", intake_m_pres ,"psi" ),
Sensor(" Engine RPM", "010C", rpm ,"" ),
Sensor(" Vehicle Speed", "010D", speed ,"MPH" ),
Sensor(" Timing Advance", "010E", timing_advance ,"degrees"),
Sensor(" Intake Air Temp", "010F", temp ,"C" ),
Sensor(" Air Flow Rate (MAF)", "0110", maf ,"lb/min" ),
Sensor(" Throttle Position", "0111", throttle_pos ,"%" ),
Sensor(" Secondary Air Status", "0112", cpass ,"" ),
Sensor(" Location of O2 sensors", "0113", cpass ,"" ),
Sensor(" O2 Sensor: 1 - 1", "0114", fuel_trim_percent ,"%" ),
Sensor(" O2 Sensor: 1 - 2", "0115", fuel_trim_percent ,"%" ),
Sensor(" O2 Sensor: 1 - 3", "0116", fuel_trim_percent ,"%" ),
Sensor(" O2 Sensor: 1 - 4", "0117", fuel_trim_percent ,"%" ),
Sensor(" O2 Sensor: 2 - 1", "0118", fuel_trim_percent ,"%" ),
Sensor(" O2 Sensor: 2 - 2", "0119", fuel_trim_percent ,"%" ),
Sensor(" O2 Sensor: 2 - 3", "011A", fuel_trim_percent ,"%" ),
Sensor(" O2 Sensor: 2 - 4", "011B", fuel_trim_percent ,"%" ),
Sensor(" OBD Designation", "011C", cpass ,"" ),
Sensor(" Location of O2 sensors", "011D", cpass ,"" ),
Sensor(" Aux input status", "011E", cpass ,"" ),
Sensor(" Time Since Engine Start", "011F", sec_to_min ,"min" ),
Sensor(" Engine Run with MIL on", "014E", sec_to_min ,"min" ),
]
#___________________________________________________________
def test():
for i in SENSORS:
print i.name, i.value("F")
if __name__ == "__main__":
test()