react-native-obd-retriver
Version:
A React Native hook library to manage Bluetooth Low Energy connections and communication with ELM327 OBD-II adapters.
13 lines • 470 B
TypeScript
export interface ServiceMode {
/** OBD-II service mode request code (e.g., '03', '07', '0A') */
REQUEST: string;
/** Expected response code value (e.g., 0x43, 0x47, 0x4A) */
RESPONSE: number;
/** Service mode name identifier */
NAME: string;
/** Human-readable description of the service mode */
DESCRIPTION: string;
/** Type identifier used for DTC classification */
troubleCodeType: string;
}
//# sourceMappingURL=types.d.ts.map