@@ -9,6 +9,9 @@ This is a simple yet powerful library to effortlessly interface your Arduino wit
9
9
# Install:
10
10
Install ELMduino using the Arduino IDE's Libraries Manager (search "ELMduino.h")
11
11
12
+ # Available Features:
13
+ See the contents of ELMduino.h for lists of supported OBD PID processing functions, OBD protocols, standard PIDs, and AT commands. The associated functions are documented in "doc strings" in ELMduino.cpp.
14
+
12
15
# Note:
13
16
If you're having difficulty in connecting/keeping connection to your ELM327, try using 38400 baud instead of 115200. If you still have trouble, try all other possible bauds. Lastly, if using BluetoothSerial on an ESP32, try using the ELM327's MAC address instead of the device name "OBDII" and [ remove paired devices using this sketch] ( https://github.com/espressif/arduino-esp32/blob/master/libraries/BluetoothSerial/examples/bt_remove_paired_devices/bt_remove_paired_devices.ino ) .
14
17
@@ -116,345 +119,3 @@ void loop()
116
119
}
117
120
}
118
121
```
119
-
120
- # List of Supported OBD PID Processing Functions:
121
- ```C++
122
- bool begin(Stream& stream, const bool& debug = false, const uint16_t& timeout = 1000, const char& protocol = '0', const uint16_t& payloadLen = 40, const byte& dataTimeout = 0);
123
- bool initializeELM(const char& protocol = '0', const byte& dataTimeout = 0);
124
- void flushInputBuff();
125
- uint64_t findResponse();
126
- void queryPID(const uint8_t& service, const uint16_t& pid, const uint8_t& num_responses = 1);
127
- void queryPID(char queryStr[]);
128
- float processPID(const uint8_t& service, const uint16_t& pid, const uint8_t& num_responses, const uint8_t& numExpectedBytes, const float& scaleFactor = 1, const float& bias = 0);
129
- void sendCommand(const char *cmd);
130
- int8_t sendCommand_Blocking(const char *cmd);
131
- int8_t get_response();
132
- bool timeout();
133
- float conditionResponse(const uint8_t& numExpectedBytes, const float& scaleFactor = 1, const float& bias = 0);
134
-
135
- float batteryVoltage(void);
136
- int8_t get_vin_blocking(char vin[]);
137
- bool resetDTC();
138
- void currentDTCCodes(const bool& isBlocking = true);
139
-
140
- uint32_t supportedPIDs_1_20();
141
-
142
- uint32_t monitorStatus();
143
- uint16_t freezeDTC();
144
- uint16_t fuelSystemStatus();
145
- float engineLoad();
146
- float engineCoolantTemp();
147
- float shortTermFuelTrimBank_1();
148
- float longTermFuelTrimBank_1();
149
- float shortTermFuelTrimBank_2();
150
- float longTermFuelTrimBank_2();
151
- float fuelPressure();
152
- uint8_t manifoldPressure();
153
- float rpm();
154
- int32_t kph();
155
- float mph();
156
- float timingAdvance();
157
- float intakeAirTemp();
158
- float mafRate();
159
- float throttle();
160
- uint8_t commandedSecAirStatus();
161
- uint8_t oxygenSensorsPresent_2banks();
162
- uint8_t obdStandards();
163
- uint8_t oxygenSensorsPresent_4banks();
164
- bool auxInputStatus();
165
- uint16_t runTime();
166
-
167
-
168
- uint32_t supportedPIDs_21_40();
169
-
170
- uint16_t distTravelWithMIL();
171
- float fuelRailPressure();
172
- float fuelRailGuagePressure();
173
- float commandedEGR();
174
- float egrError();
175
- float commandedEvapPurge();
176
- float fuelLevel();
177
- uint8_t warmUpsSinceCodesCleared();
178
- uint16_t distSinceCodesCleared();
179
- float evapSysVapPressure();
180
- uint8_t absBaroPressure();
181
- float catTempB1S1();
182
- float catTempB2S1();
183
- float catTempB1S2();
184
- float catTempB2S2();
185
-
186
- uint32_t supportedPIDs_41_60();
187
-
188
- uint32_t monitorDriveCycleStatus();
189
- float ctrlModVoltage();
190
- float absLoad();
191
- float commandedAirFuelRatio();
192
- float relativeThrottle();
193
- float ambientAirTemp();
194
- float absThrottlePosB();
195
- float absThrottlePosC();
196
- float absThrottlePosD();
197
- float absThrottlePosE();
198
- float absThrottlePosF();
199
- float commandedThrottleActuator();
200
- uint16_t timeRunWithMIL();
201
- uint16_t timeSinceCodesCleared();
202
- float maxMafRate();
203
- uint8_t fuelType();
204
- float ethanolPercent();
205
- float absEvapSysVapPressure();
206
- float evapSysVapPressure2();
207
- float absFuelRailPressure();
208
- float relativePedalPos();
209
- float hybridBatLife();
210
- float oilTemp();
211
- float fuelInjectTiming();
212
- float fuelRate();
213
- uint8_t emissionRqmts();
214
-
215
-
216
- uint32_t supportedPIDs_61_80();
217
-
218
- float demandedTorque();
219
- float torque();
220
- uint16_t referenceTorque();
221
- uint16_t auxSupported();
222
- void printError();
223
- ```
224
-
225
- # List of OBD Protocols:
226
- ``` C++
227
- const char AUTOMATIC = ' 0' ;
228
- const char SAE_J1850_PWM_41_KBAUD = ' 1' ;
229
- const char SAE_J1850_PWM_10_KBAUD = ' 2' ;
230
- const char ISO_9141_5_BAUD_INIT = ' 3' ;
231
- const char ISO_14230_5_BAUD_INIT = ' 4' ;
232
- const char ISO_14230_FAST_INIT = ' 5' ;
233
- const char ISO_15765_11_BIT_500_KBAUD = ' 6' ;
234
- const char ISO_15765_29_BIT_500_KBAUD = ' 7' ;
235
- const char ISO_15765_11_BIT_250_KBAUD = ' 8' ;
236
- const char ISO_15765_29_BIT_250_KBAUD = ' 9' ;
237
- const char SAE_J1939_29_BIT_250_KBAUD = ' A' ;
238
- const char USER_1_CAN = ' B' ;
239
- const char USER_2_CAN = ' C' ;
240
- ```
241
-
242
- # List of standard PIDs:
243
- ``` C++
244
- const uint8_t SUPPORTED_PIDS_1_20 = 0 ; // 0x00 - bit encoded
245
- const uint8_t MONITOR_STATUS_SINCE_DTC_CLEARED = 1 ; // 0x01 - bit encoded
246
- const uint8_t FREEZE_DTC = 2 ; // 0x02 -
247
- const uint8_t FUEL_SYSTEM_STATUS = 3 ; // 0x03 - bit encoded
248
- const uint8_t ENGINE_LOAD = 4 ; // 0x04 - %
249
- const uint8_t ENGINE_COOLANT_TEMP = 5 ; // 0x05 - °C
250
- const uint8_t SHORT_TERM_FUEL_TRIM_BANK_1 = 6 ; // 0x06 - %
251
- const uint8_t LONG_TERM_FUEL_TRIM_BANK_1 = 7 ; // 0x07 - %
252
- const uint8_t SHORT_TERM_FUEL_TRIM_BANK_2 = 8 ; // 0x08 - %
253
- const uint8_t LONG_TERM_FUEL_TRIM_BANK_2 = 9 ; // 0x09 - %
254
- const uint8_t FUEL_PRESSURE = 10 ; // 0x0A - kPa
255
- const uint8_t INTAKE_MANIFOLD_ABS_PRESSURE = 11 ; // 0x0B - kPa
256
- const uint8_t ENGINE_RPM = 12 ; // 0x0C - rpm
257
- const uint8_t VEHICLE_SPEED = 13 ; // 0x0D - km/h
258
- const uint8_t TIMING_ADVANCE = 14 ; // 0x0E - ° before TDC
259
- const uint8_t INTAKE_AIR_TEMP = 15 ; // 0x0F - °C
260
- const uint8_t MAF_FLOW_RATE = 16 ; // 0x10 - g/s
261
- const uint8_t THROTTLE_POSITION = 17 ; // 0x11 - %
262
- const uint8_t COMMANDED_SECONDARY_AIR_STATUS = 18 ; // 0x12 - bit encoded
263
- const uint8_t OXYGEN_SENSORS_PRESENT_2_BANKS = 19 ; // 0x13 - bit encoded
264
- const uint8_t OXYGEN_SENSOR_1_A = 20 ; // 0x14 - V %
265
- const uint8_t OXYGEN_SENSOR_2_A = 21 ; // 0x15 - V %
266
- const uint8_t OXYGEN_SENSOR_3_A = 22 ; // 0x16 - V %
267
- const uint8_t OXYGEN_SENSOR_4_A = 23 ; // 0x17 - V %
268
- const uint8_t OXYGEN_SENSOR_5_A = 24 ; // 0x18 - V %
269
- const uint8_t OXYGEN_SENSOR_6_A = 25 ; // 0x19 - V %
270
- const uint8_t OXYGEN_SENSOR_7_A = 26 ; // 0x1A - V %
271
- const uint8_t OXYGEN_SENSOR_8_A = 27 ; // 0x1B - V %
272
- const uint8_t OBD_STANDARDS = 28 ; // 0x1C - bit encoded
273
- const uint8_t OXYGEN_SENSORS_PRESENT_4_BANKS = 29 ; // 0x1D - bit encoded
274
- const uint8_t AUX_INPUT_STATUS = 30 ; // 0x1E - bit encoded
275
- const uint8_t RUN_TIME_SINCE_ENGINE_START = 31 ; // 0x1F - sec
276
-
277
- const uint8_t SUPPORTED_PIDS_21_40 = 32 ; // 0x20 - bit encoded
278
- const uint8_t DISTANCE_TRAVELED_WITH_MIL_ON = 33 ; // 0x21 - km
279
- const uint8_t FUEL_RAIL_PRESSURE = 34 ; // 0x22 - kPa
280
- const uint8_t FUEL_RAIL_GUAGE_PRESSURE = 35 ; // 0x23 - kPa
281
- const uint8_t OXYGEN_SENSOR_1_B = 36 ; // 0x24 - ratio V
282
- const uint8_t OXYGEN_SENSOR_2_B = 37 ; // 0x25 - ratio V
283
- const uint8_t OXYGEN_SENSOR_3_B = 38 ; // 0x26 - ratio V
284
- const uint8_t OXYGEN_SENSOR_4_B = 39 ; // 0x27 - ratio V
285
- const uint8_t OXYGEN_SENSOR_5_B = 40 ; // 0x28 - ratio V
286
- const uint8_t OXYGEN_SENSOR_6_B = 41 ; // 0x29 - ratio V
287
- const uint8_t OXYGEN_SENSOR_7_B = 42 ; // 0x2A - ratio V
288
- const uint8_t OXYGEN_SENSOR_8_B = 43 ; // 0x2B - ratio V
289
- const uint8_t COMMANDED_EGR = 44 ; // 0x2C - %
290
- const uint8_t EGR_ERROR = 45 ; // 0x2D - %
291
- const uint8_t COMMANDED_EVAPORATIVE_PURGE = 46 ; // 0x2E - %
292
- const uint8_t FUEL_TANK_LEVEL_INPUT = 47 ; // 0x2F - %
293
- const uint8_t WARM_UPS_SINCE_CODES_CLEARED = 48 ; // 0x30 - count
294
- const uint8_t DIST_TRAV_SINCE_CODES_CLEARED = 49 ; // 0x31 - km
295
- const uint8_t EVAP_SYSTEM_VAPOR_PRESSURE = 50 ; // 0x32 - Pa
296
- const uint8_t ABS_BAROMETRIC_PRESSURE = 51 ; // 0x33 - kPa
297
- const uint8_t OXYGEN_SENSOR_1_C = 52 ; // 0x34 - ratio mA
298
- const uint8_t OXYGEN_SENSOR_2_C = 53 ; // 0x35 - ratio mA
299
- const uint8_t OXYGEN_SENSOR_3_C = 54 ; // 0x36 - ratio mA
300
- const uint8_t OXYGEN_SENSOR_4_C = 55 ; // 0x37 - ratio mA
301
- const uint8_t OXYGEN_SENSOR_5_C = 56 ; // 0x38 - ratio mA
302
- const uint8_t OXYGEN_SENSOR_6_C = 57 ; // 0x39 - ratio mA
303
- const uint8_t OXYGEN_SENSOR_7_C = 58 ; // 0x3A - ratio mA
304
- const uint8_t OXYGEN_SENSOR_8_C = 59 ; // 0x3B - ratio mA
305
- const uint8_t CATALYST_TEMP_BANK_1_SENSOR_1 = 60 ; // 0x3C - °C
306
- const uint8_t CATALYST_TEMP_BANK_2_SENSOR_1 = 61 ; // 0x3D - °C
307
- const uint8_t CATALYST_TEMP_BANK_1_SENSOR_2 = 62 ; // 0x3E - °C
308
- const uint8_t CATALYST_TEMP_BANK_2_SENSOR_2 = 63 ; // 0x3F - °C
309
-
310
- const uint8_t SUPPORTED_PIDS_41_60 = 64 ; // 0x40 - bit encoded
311
- const uint8_t MONITOR_STATUS_THIS_DRIVE_CYCLE = 65 ; // 0x41 - bit encoded
312
- const uint8_t CONTROL_MODULE_VOLTAGE = 66 ; // 0x42 - V
313
- const uint8_t ABS_LOAD_VALUE = 67 ; // 0x43 - %
314
- const uint8_t FUEL_AIR_COMMANDED_EQUIV_RATIO = 68 ; // 0x44 - ratio
315
- const uint8_t RELATIVE_THROTTLE_POSITION = 69 ; // 0x45 - %
316
- const uint8_t AMBIENT_AIR_TEMP = 70 ; // 0x46 - °C
317
- const uint8_t ABS_THROTTLE_POSITION_B = 71 ; // 0x47 - %
318
- const uint8_t ABS_THROTTLE_POSITION_C = 72 ; // 0x48 - %
319
- const uint8_t ACCELERATOR_PEDAL_POSITION_D = 73 ; // 0x49 - %
320
- const uint8_t ACCELERATOR_PEDAL_POSITION_E = 74 ; // 0x4A - %
321
- const uint8_t ACCELERATOR_PEDAL_POSITION_F = 75 ; // 0x4B - %
322
- const uint8_t COMMANDED_THROTTLE_ACTUATOR = 76 ; // 0x4C - %
323
- const uint8_t TIME_RUN_WITH_MIL_ON = 77 ; // 0x4D - min
324
- const uint8_t TIME_SINCE_CODES_CLEARED = 78 ; // 0x4E - min
325
- const uint8_t MAX_VALUES_EQUIV_V_I_PRESSURE = 79 ; // 0x4F - ratio V mA kPa
326
- const uint8_t MAX_MAF_RATE = 80 ; // 0x50 - g/s
327
- const uint8_t FUEL_TYPE = 81 ; // 0x51 - ref table
328
- const uint8_t ETHANOL_FUEL_PERCENT = 82 ; // 0x52 - %
329
- const uint8_t ABS_EVAP_SYS_VAPOR_PRESSURE = 83 ; // 0x53 - kPa
330
- const uint8_t EVAP_SYS_VAPOR_PRESSURE = 84 ; // 0x54 - Pa
331
- const uint8_t SHORT_TERM_SEC_OXY_SENS_TRIM_1_3 = 85 ; // 0x55 - %
332
- const uint8_t LONG_TERM_SEC_OXY_SENS_TRIM_1_3 = 86 ; // 0x56 - %
333
- const uint8_t SHORT_TERM_SEC_OXY_SENS_TRIM_2_4 = 87 ; // 0x57 - %
334
- const uint8_t LONG_TERM_SEC_OXY_SENS_TRIM_2_4 = 88 ; // 0x58 - %
335
- const uint8_t FUEL_RAIL_ABS_PRESSURE = 89 ; // 0x59 - kPa
336
- const uint8_t RELATIVE_ACCELERATOR_PEDAL_POS = 90 ; // 0x5A - %
337
- const uint8_t HYBRID_BATTERY_REMAINING_LIFE = 91 ; // 0x5B - %
338
- const uint8_t ENGINE_OIL_TEMP = 92 ; // 0x5C - °C
339
- const uint8_t FUEL_INJECTION_TIMING = 93 ; // 0x5D - °
340
- const uint8_t ENGINE_FUEL_RATE = 94 ; // 0x5E - L/h
341
- const uint8_t EMISSION_REQUIREMENTS = 95 ; // 0x5F - bit encoded
342
-
343
- const uint8_t SUPPORTED_PIDS_61_80 = 96 ; // 0x60 - bit encoded
344
- const uint8_t DEMANDED_ENGINE_PERCENT_TORQUE = 97 ; // 0x61 - %
345
- const uint8_t ACTUAL_ENGINE_TORQUE = 98 ; // 0x62 - %
346
- const uint8_t ENGINE_REFERENCE_TORQUE = 99 ; // 0x63 - Nm
347
- const uint8_t ENGINE_PERCENT_TORQUE_DATA = 100 ; // 0x64 - %
348
- const uint8_t AUX_INPUT_OUTPUT_SUPPORTED = 101 ; // 0x65 - bit encoded
349
- ```
350
-
351
- # List of AT Commands:
352
- (https://www.sparkfun.com/datasheets/Widgets/ELM327_AT_Commands.pdf )
353
- ``` C++
354
- const char * const DISP_DEVICE_DESCRIPT = " AT @1" ; // General
355
- const char * const DISP_DEVICE_ID = " AT @2" ; // General
356
- const char * const STORE_DEVICE_ID = " AT @3 %s" ; // General
357
- const char * const REPEAT_LAST_COMMAND = " AT \r " ; // General
358
- const char * const ALLOW_LONG_MESSAGES = " AT AL" ; // General
359
- const char * const AUTOMATIC_RECEIVE = " AT AR" ; // OBD
360
- const char * const ADAPTIVE_TIMING_OFF = " AT AT0" ; // OBD
361
- const char * const ADAPTIVE_TIMING_AUTO_1 = " AT AT1" ; // OBD
362
- const char * const ADAPTIVE_TIMING_AUTO_2 = " AT AT2" ; // OBD
363
- const char * const DUMP_BUFFER = " AT BD" ; // OBD
364
- const char * const BYPASS_INIT_SEQUENCE = " AT BI" ; // OBD
365
- const char * const TRY_BAUD_DIVISOR = " AT BRD %s" ; // General
366
- const char * const SET_HANDSHAKE_TIMEOUT = " AT BRT %s" ; // General
367
- const char * const CAN_AUTO_FORMAT_OFF = " AT CAF0" ; // CAN
368
- const char * const CAN_AUTO_FORMAT_ON = " AT CAF1" ; // CAN
369
- const char * const CAN_EXTENDED_ADDRESS_OFF = " AT CEA" ; // CAN
370
- const char * const USE_CAN_EXTENDED_ADDRESS = " AT CEA %s" ; // CAN
371
- const char * const SET_ID_FILTER = " AT CF %s" ; // CAN
372
- const char * const CAN_FLOW_CONTROL_OFF = " AT CFC0" ; // CAN
373
- const char * const CAN_FLOW_CONTROL_ON = " AT CFC1" ; // CAN
374
- const char * const SET_ID_MASK = " AT CM %s" ; // CAN
375
- const char * const SET_CAN_PRIORITY = " AT CP %s" ; // CAN
376
- const char * const SHOW_CAN_STATUS = " AT CS" ; // CAN
377
- const char * const CAN_SILENT_MODE_OFF = " AT CSM0" ; // CAN
378
- const char * const CAN_SILENT_MODE_ON = " AT CSM1" ; // CAN
379
- const char * const CALIBRATE_VOLTAGE_CUSTOM = " AT CV %s" ; // Volts
380
- const char * const RESTORE_CV_TO_FACTORY = " AT CV 0000" ; // Volts
381
- const char * const SET_ALL_TO_DEFAULTS = " AT D" ; // General
382
- const char * const DISP_DLC_OFF = " AT D0" ; // CAN
383
- const char * const DISP_DLC_ON = " AT D1" ; // CAN
384
- const char * const MONITOR_FOR_DM1_MESSAGES = " AT DM1" ; // J1939
385
- const char * const DISP_CURRENT_PROTOCOL = " AT DP" ; // OBD
386
- const char * const DISP_CURRENT_PROTOCOL_NUM = " AT DPN" ; // OBD
387
- const char * const ECHO_OFF = " AT E0" ; // General
388
- const char * const ECHO_ON = " AT E1" ; // General
389
- const char * const FLOW_CONTROL_SET_DATA_TO = " AT FC SD %s" ; // CAN
390
- const char * const FLOW_CONTROL_SET_HEAD_TO = " AT FC SH %s" ; // CAN
391
- const char * const FLOW_CONTROL_SET_MODE_TO = " AT FC SM %s" ; // CAN
392
- const char * const FORGE_EVENTS = " AT FE" ; // General
393
- const char * const PERFORM_FAST_INIT = " AT FI" ; // ISO
394
- const char * const HEADERS_OFF = " AT H0" ; // OBD
395
- const char * const HEADERS_ON = " AT H1" ; // OBD
396
- const char * const DISP_ID = " AT I" ; // General
397
- const char * const SET_ISO_BAUD_10400 = " AT IB 10" ; // ISO
398
- const char * const SET_ISO_BAUD_4800 = " AT IB 48" ; // ISO
399
- const char * const SET_ISO_BAUD_9600 = " AT IB 96" ; // ISO
400
- const char * const IFR_VAL_FROM_HEADER = " AT IFR H" ; // J1850
401
- const char * const IFR_VAL_FROM_SOURCE = " AT IFR S" ; // J1850
402
- const char * const IFRS_OFF = " AT IFR0" ; // J1850
403
- const char * const IFRS_AUTO = " AT IFR1" ; // J1850
404
- const char * const IFRS_ON = " AT IFR2" ; // J1850
405
- const char * const IREAD_IGNMON_INPUT_LEVEL = " AT IGN" ; // Other
406
- const char * const SET_ISO_SLOW_INIT_ADDRESS = " AT IIA %s" ; // ISO
407
- const char * const USE_J1939_ELM_DATA_FORMAT = " AT JE" ; // J1850
408
- const char * const J1939_HEAD_FORMAT_OFF = " AT JHF0" ; // J1850
409
- const char * const J1939_HEAD_FORMAT_ON = " AT JHF1" ; // J1850
410
- const char * const USE_J1939_SAE_DATA_FORMAT = " AT JS" ; // J1850
411
- const char * const SET_J1939_TIMER_X_TO_1X = " AT JTM1" ; // J1850
412
- const char * const SET_J1939_TIMER_X_TO_5X = " AT JTM5" ; // J1850
413
- const char * const DISP_KEY_WORDS = " AT KW" ; // ISO
414
- const char * const KEY_WORD_CHECKING_OFF = " AT KW0" ; // ISO
415
- const char * const KEY_WORD_CHECKING_ON = " AT KW1" ; // ISO
416
- const char * const LINEFEEDS_OFF = " AT L0" ; // General
417
- const char * const LINEFEEDS_ON = " AT L1" ; // General
418
- const char * const LOW_POWER_MODE = " AT LP" ; // General
419
- const char * const MEMORY_OFF = " AT M0" ; // General
420
- const char * const MEMORY_ON = " AT M1" ; // General
421
- const char * const MONITOR_ALL = " AT MA" ; // OBD
422
- const char * const MONITOR_FOR_PGN = " AT MP %s" ; // J1939
423
- const char * const MONITOR_FOR_RECEIVER = " AT MR %s" ; // OBD
424
- const char * const MONITOR_FOR_TRANSMITTER = " AT MT %s" ; // OBD
425
- const char * const NORMAL_LENGTH_MESSAGES = " AT NL" ; // OBD
426
- const char * const SET_PROTO_OPTIONS_AND_BAUD = " AT PB %s" ; // OBD
427
- const char * const PROTOCOL_CLOSE = " AT PC" ; // OBD
428
- const char * const ALL_PROG_PARAMS_OFF = " AT PP FF OFF" ; // PPs
429
- const char * const ALL_PROG_PARAMS_ON = " AT PP FF ON" ; // PPs
430
- const char * const SET_PROG_PARAM_OFF = " AT PP %s OFF" ; // PPs
431
- const char * const SET_PROG_PARAM_ON = " AT PP %s ON" ; // PPs
432
- const char * const SET_PROG_PARAM_VAL = " AT PP %s SV %s" ; // PPs
433
- const char * const DISP_PP_SUMMARY = " AT PPS" ; // PPs
434
- const char * const RESPONSES_OFF = " AT R0" ; // OBD
435
- const char * const RESPONSES_ON = " AT R1" ; // OBD
436
- const char * const SET_RECEIVE_ADDRESS_TO = " AT RA %s" ; // OBD
437
- const char * const READ_STORED_DATA = " AT RD" ; // General
438
- const char * const SEND_RTR_MESSAGE = " AT RTR" ; // CAN
439
- const char * const READ_VOLTAGE = " AT RV" ; // Volts
440
- const char * const PRINTING_SPACES_OFF = " AT S0" ; // OBD
441
- const char * const PRINTING_SPACES_ON = " AT S1" ; // OBD
442
- const char * const STORE_DATA_BYTE = " AT SD " ; // General
443
- const char * const SET_HEADER = " AT SH %s" ; // OBD
444
- const char * const PERFORM_SLOW_INIT = " AT SI" ; // ISO
445
- const char * const SET_PROTOCOL_TO_AUTO_H_SAVE = " AT SP A%c" ; // OBD
446
- const char * const SET_PROTOCOL_TO_H_SAVE = " AT SP %c" ; // OBD
447
- const char * const SET_PROTOCOL_TO_AUTO_SAVE = " AT SP 00" ; // OBD
448
- const char * const SET_REC_ADDRESS = " AT SR %s" ; // OBD
449
- const char * const SET_STANDARD_SEARCH_ORDER = " AT SS" ; // OBD
450
- const char * const SET_TIMEOUT_TO_H_X_4MS = " AT ST %s" ; // OBD
451
- const char * const SET_WAKEUP_TO_H_X_20MS = " AT SW %s" ; // ISO
452
- const char * const SET_TESTER_ADDRESS_TO = " AT TA %s" ; // OBD
453
- const char * const TRY_PROT_H_AUTO_SEARCH = " AT TP A%s" ; // OBD
454
- const char * const TRY_PROT_H = " AT TP %s" ; // OBD
455
- const char * const VARIABLE_DLC_OFF = " AT V0" ; // CAN
456
- const char * const VARIABLE_DLC_ON = " AT V1" ; // CAN
457
- const char * const SET_WAKEUP_MESSAGE = " AT WM" ; // ISO
458
- const char * const WARM_START = " AT WS" ; // General
459
- const char * const RESET_ALL = " AT Z" ; // General
460
- ```
0 commit comments