This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
ANSI-C C90: -std=c99 -c -Wall -ansi -pedantic-errors -fstack-protector-all -Werror -Wshadow | |
Build: gcc username-pass-io.c -o io.o | |
*/ | |
/* | |
Produced 2020 | |
By https://amattu.com/links/github | |
Copy Alec M. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
This is a simple JavaScript parsing of generic automotive OBD-2 codes. This is just a generic description, so not all codes will be accurate per manufacturer. | |
Codes Ranges: | |
PXXXX (P0000-P1917) | |
CXXXX (C1091-C1963) | |
BXXXX (B1200-B2606) | |
UXXXX (U1900-A few) | |
Eg: console.log(OBDs["P303"]) // 'Cylinder 3 Misfire Detected' |
NewerOlder