我正在编写一个程序,从OBD II计算机获取汽车的速度和燃油率。获得速度工作正常,但在询问燃油率时我总是得到“7F 01 12”。我该如何解决这个问题?
我正在使用this从OBD获取数据,这是我的代码
main.py:
from OBD import OBD
import datetime
f = open('log.txt', 'w')
obd = OBD()
while True:
#Put the current data and time at the beginning of each section
f.write(str(datetime.datetime.now()))
#print the received data to the console and save it to the file
data = obd.get(obd.SPEED)
print(data)
f.write(str(data) + "\n")
data = obd.get(obd.FUEL_RATE)
print(data)
f.write(str(data) + "\n")
f.flush()#Call flush to finish writing to the file
OBD.py
import socket
import time
class OBD:
def __init__(self):
#Create the variables to deal with the PIDs
self._PIDs = [b"010D\r", b"015E\r"]
self.SPEED = 0
self.FUEL_RATE = 1
#Create the socket and connect to the OBD device
self.sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
self.sock.connect(("192.168.0.10", 35000))
def get(self, pid):
if pid < 0 or pid > 1:
return 0
#Send the request for the data
if self.sock.send(self._PIDs[pid]) <= 0:
print("Failed to send the data")
#wait 1 second for the data
time.sleep(0.75)
#receive the returning data
msg = ""
msg = self.sock.recv(64)
if msg == "":
print("Failed to receive the data")
return 0
print(msg)
#Process the msg depending on which PID it is from
if pid == self.SPEED:
#Get the relevant data from the message and cast it to an int
try:
A = int(msg[11:13], 16)#The parameters for this function is the hex string and the base it is in
except ValueError:
A = 0
#Convert the speed from Km/hr to mi/hr
A = A*0.621
returnVal = A
elif pid == self.FUEL_RATE:
A = msg[11:13]
returnVal = A
return returnVal
谢谢!
答案 0 :(得分:4)
这不是一个直接的答案,因为这个问题很难在没有汽车复制品的情况下排除故障。 7F响应是否定承认。
因此,模型/ make可能不支持该PID。您可以通过发送查询来检查。 由于通过发送&#39; 015E&#39;请求燃油费率,您必须要求提供&#39; 0140&#39;。这将返回一个位编码的答案,您可以解析该答案以了解您的内部OBD-II总线是否支持您的&#39; 5E&#39; PID。
要解码位编码的答案,请检查以下链接: http://en.wikipedia.org/wiki/OBD-II_PIDs#Mode_1_PID_00
如果&#39; 5E&#39;不受支持,这是您问题的答案。如果它受到支持,则还有其他错误。
编辑: 刚刚发现7F 01 12意味着不支持PID。但您可以尝试使用位编码进行仔细检查。 https://www.scantool.net/forum/index.php?topic=6619.0
答案 1 :(得分:0)
0x7F表示否定回复。
0x01是您尝试的功能
0x12表示sub-functionNotSupported(根据许多ISO文档)
其他一些常见错误代码是
0x13 incorrectMessageLengthOrInvalidFormat
0x22 conditionsNotCorrect
0x33 securityAccessDenied
您可能需要输入DiagnosticSession才能使某些功能变为“支持”