obd-raw-data-parser
Version:
A lightweight TypeScript library for parsing OBD-II raw data into human readable format. Based on the excellent work of obd-utils by Nishkalkashyap.
7 lines (6 loc) • 394 B
TypeScript
import { IObdPIDDescriptor, IParsedOBDResponse } from "./obdTypes.js";
export declare function parseOBDResponse(hexString: string): IParsedOBDResponse;
export declare function getPIDInfo(pid: string): IObdPIDDescriptor | null;
export declare function getAllPIDs(): IObdPIDDescriptor[];
export { DTCBaseDecoder } from "./DTC/DTCBaseDecoder.js";
export { VinDecoder } from "./VIN/VinDecoder.js";