obd-ii

Python OBD encoding

Python OBD encoding Question: I wanted to fetch some OBD data and tried it like described by this article The article (using python 2.7) said: The elm327 device returns values in HEX. To read the value you just requested in Python type speed_hex = ser.readline().split(‘ ‘) Convert the HEX to decimal by using: speed = …

Total answers: 1