Skip to content

Beginner Examples

Read the VIN

from pyudskit import UDS

uds = UDS()
print(uds.encode("Read the VIN"))

Decode a negative response

from pyudskit import UDS

uds = UDS()
print(uds.decode("7F 22 31"))

Explain a DTC

from pyudskit import UDS

uds = UDS()
print(uds.explain_dtc("P0301"))