├── .gitignore ├── LICENSE ├── README.md ├── documentation.md ├── examples └── basic_working │ └── basic_working.ino ├── extras ├── ECU_Emulator │ └── ECU_Emulator.py └── Images │ ├── dealer_mode.png │ ├── fast_init.png │ ├── keybytes.png │ ├── l9637_wiring.png │ ├── obd2_connector.png │ ├── start.png │ ├── structure.png │ ├── timing.png │ └── timing_parameter.png ├── keywords.txt ├── library.properties ├── platformio.ini ├── protocol.md └── src ├── ISO.h ├── KWP2000.cpp └── KWP2000.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster94/Keyword-Protocol-2000/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster94/Keyword-Protocol-2000/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster94/Keyword-Protocol-2000/HEAD/README.md -------------------------------------------------------------------------------- /documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster94/Keyword-Protocol-2000/HEAD/documentation.md -------------------------------------------------------------------------------- /examples/basic_working/basic_working.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster94/Keyword-Protocol-2000/HEAD/examples/basic_working/basic_working.ino -------------------------------------------------------------------------------- /extras/ECU_Emulator/ECU_Emulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster94/Keyword-Protocol-2000/HEAD/extras/ECU_Emulator/ECU_Emulator.py -------------------------------------------------------------------------------- /extras/Images/dealer_mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster94/Keyword-Protocol-2000/HEAD/extras/Images/dealer_mode.png -------------------------------------------------------------------------------- /extras/Images/fast_init.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster94/Keyword-Protocol-2000/HEAD/extras/Images/fast_init.png -------------------------------------------------------------------------------- /extras/Images/keybytes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster94/Keyword-Protocol-2000/HEAD/extras/Images/keybytes.png -------------------------------------------------------------------------------- /extras/Images/l9637_wiring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster94/Keyword-Protocol-2000/HEAD/extras/Images/l9637_wiring.png -------------------------------------------------------------------------------- /extras/Images/obd2_connector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster94/Keyword-Protocol-2000/HEAD/extras/Images/obd2_connector.png -------------------------------------------------------------------------------- /extras/Images/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster94/Keyword-Protocol-2000/HEAD/extras/Images/start.png -------------------------------------------------------------------------------- /extras/Images/structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster94/Keyword-Protocol-2000/HEAD/extras/Images/structure.png -------------------------------------------------------------------------------- /extras/Images/timing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster94/Keyword-Protocol-2000/HEAD/extras/Images/timing.png -------------------------------------------------------------------------------- /extras/Images/timing_parameter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster94/Keyword-Protocol-2000/HEAD/extras/Images/timing_parameter.png -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster94/Keyword-Protocol-2000/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster94/Keyword-Protocol-2000/HEAD/library.properties -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster94/Keyword-Protocol-2000/HEAD/platformio.ini -------------------------------------------------------------------------------- /protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster94/Keyword-Protocol-2000/HEAD/protocol.md -------------------------------------------------------------------------------- /src/ISO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster94/Keyword-Protocol-2000/HEAD/src/ISO.h -------------------------------------------------------------------------------- /src/KWP2000.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster94/Keyword-Protocol-2000/HEAD/src/KWP2000.cpp -------------------------------------------------------------------------------- /src/KWP2000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aster94/Keyword-Protocol-2000/HEAD/src/KWP2000.h --------------------------------------------------------------------------------