python-OBD
python-OBD copied to clipboard
OBD-II serial module for reading engine data
Hi, I have a v1.5 odb adapter, which didnt respond to the package commands. i wrote a serial script and sent commands and got a good response. i can get...
A little bit about my setup: Raspberry Pi 3 connected through a USB OBD adapter to a Honda Civic 2009. I have the Pi using Async to read speed, throttle,...
OS: Windows 10 Car: 1998 Toyota Camry LE 2.2L4 [OBD2 Scanner](https://www.amazon.com/OHP-ELMconfig-Adapter-Compatible-Diagnostics/dp/B01F0GVBWY/ref=sr_1_8?dchild=1&keywords=elm327+obd&qid=1599686906&sr=8-8) Issue: `Failed to choose baud` & `Failed to set baudrate` Code: ```python import obd obd.logger.setLevel(obd.logging.DEBUG) connection = obd.OBD(timeout=5) cmd...
Hi! I'm now facing a problem when developing project for getting OBD data and camera stream from the car and then sending back to server through 4G mobile communication. When...
are there any exceptions i can use to catch a failed connection, something like this `except serial.SerialException as e: logger.error(e) `
Dear friends, This is a first attempt to display debug information when an error message is returned by the ELM327. Please review with care, as I am new to the...
According to feature https://github.com/brendan-w/python-OBD/issues/82 This patch adds a print_discovered() clause which prints all detailed information about a connection. It can simply be triggered using: ``` import obd connection = obd.OBD()...
Hello, I've seen there were a lot of posts about this error, but I've seen that it should have been fixed by an update. But Im still having problems connecting...
Trying clear dtc: connect.query(obd.commands.CLEAR_DTC) Returns error [obd.protocols.protocol_legacy] Dropped frame for being too short 
Hey, i've got a problem again. Short version of the story: Had a raspi and a obd2 adapter (v1.5 or smth which was aparrently not a right one?) which worked...