obd2
Here are 99 public repositories matching this topic...
Right now the examples assumes you are using Linux as the host OS. Since not everyone uses Linux there should documentation on how you use other platforms.
-
Updated
Feb 17, 2020 - JavaScript
-
Updated
Apr 12, 2020 - Kotlin
-
Updated
Aug 8, 2019 - Python
-
Updated
Jun 8, 2020 - C++
-
Updated
Oct 23, 2017 - Java
-
Updated
Jul 31, 2018 - Jupyter Notebook
-
Updated
Jul 11, 2016 - C#
-
Updated
Oct 19, 2017 - TypeScript
-
Updated
Feb 6, 2018 - Python
-
Updated
Mar 11, 2020 - TypeScript
-
Updated
Jun 8, 2020 - TypeScript
-
Updated
Jul 26, 2018 - Java
First of all, thank you for this awesome library. You did a great job. However, I think your documentation needs to be elaborated. The documentation you provided is very basic. I would like to know more about livedata, livedata update duration,DTC, clearing fault codes and other usages. An example project or an elaborated documentation will be appreciated. Thank you @MacFJA
Improve this page
Add a description, image, and links to the obd2 topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the obd2 topic, visit your repo's landing page and select "manage topics."
i used the following code to read the DTC:
with Client(conn, request_timeout=10) as client:
DTC_list = client.get_dtc_by_status_mask(status_mask)
print("DTC list:", DTC_list)
but i didn't get the DTC code, i got :
DTC list :<PositiveResponse:[ReadDTCInformation]-61 data bytes at 0x0322ff0>;
could you please tell me how can i get the DTC code?