UNPKG

rxjs-obd

Version:

RxJS Implementation for OBD (On Board Diagnostics) of vehicles via ELM 327 connections.

20 lines 496 B
/** * OBD Data representations. */ export class OBDData { constructor() { /** * The set of bit encoded flags of supported PIDs in decimal form. * @see https://en.wikipedia.org/wiki/OBD-II_PIDs#Service_01_PID_1C */ this.supportedPIDs = { segment00: 0, segment20: 0, segment40: 0, segment60: 0, segment80: 0, segmentA0: 0, }; } } //# sourceMappingURL=OBDData.js.map