python-OBD icon indicating copy to clipboard operation
python-OBD copied to clipboard

OBD-II serial module for reading engine data

Results 92 python-OBD issues
Sort by recently updated
recently updated
newest added

currently, elm327.py only looks for the `UNABLE TO CONNECT` string. I'd like it to be a little smarter, and know about the other error strings, such as: - `NO DATA`

[page 45](http://elmelectronics.com/DSheets/ELM327DS.pdf). Up to 6 PIDs can be sampled with a single command. This would be much more efficient. The multiline protocol handlers will need to be fully working, and...

Protocol

I discovered when there are more than a single available port, the connection fails. In this example I have COM2 opened and waiting for the obd to connect. COM3 is...

I noticed that 0100 command is being sent in elm327.py line 221 in the auto_protocol function. `r0100 = self.__send(b"0100")` I don't exactly how it helps detecting protocol, but when tested...

An obd software is sometimes used on devices that require low energy consumption, so the cpu cycles are somewhat important. However, it appears that Async retrieves the data on a...

This didn't happen in 0.2.0, but with 0.3.0+, it triggers a few vehicle warning randomly. After looking at the changes, I think it's the async sleep being changed from 1.0...

I'm facing an issue where custom commands using the header `7E0` (default engine ecu header) do not work the if thr header is not explicitly set at init. Might be...

Howdy. I spend a lot of time in my vehicle. Trying to think of creative things I can do with this library. I've already got it working with my bluetooth...

### Version Information - Numpy version: 2.0.1 - Python version: 3.10.3 - python obd version: 0.7.2 ### Problem Details An error occurs when importing the obd module: `AttributeError: module 'numpy'...