-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathxdata.json
More file actions
3162 lines (3162 loc) · 94.4 KB
/
xdata.json
File metadata and controls
3162 lines (3162 loc) · 94.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"OBD_CODE": "P0001",
"Meaning": "Fuel Volume Regulator Control Circuit/Open",
"Cause": [
"Open or short in the fuel volume control regulator circuit",
"Faulty fuel pressure regulator",
"Damaged wiring"
],
"Symptoms": [
"Check engine light on",
"Engine stalling or poor performance",
"Difficulty starting the engine"
]
},
{
"OBD_CODE": "P0002",
"Meaning": "Fuel Volume Regulator Control Circuit Range/Performance",
"Cause": [
"Faulty fuel pressure regulator",
"Incorrect fuel pressure",
"Wiring issues"
],
"Symptoms": [
"Poor fuel economy",
"Engine hesitation",
"Check engine light on"
]
},
{
"OBD_CODE": "P0003",
"Meaning": "Fuel Volume Regulator Control Circuit Low",
"Cause": [
"Low fuel pressure",
"Faulty fuel pressure regulator",
"Wiring problems"
],
"Symptoms": [
"Engine misfire",
"Poor acceleration",
"Reduced fuel efficiency"
]
},
{
"OBD_CODE": "P0004",
"Meaning": "Fuel Volume Regulator Control Circuit High",
"Cause": [
"Excessive fuel pressure",
"Defective fuel pressure regulator",
"Wiring issues"
],
"Symptoms": [
"Engine runs rough",
"Excessive fuel consumption",
"Check engine light"
]
},
{
"OBD_CODE": "P0005",
"Meaning": "Fuel Shutoff Valve 'A' Control Circuit/Open",
"Cause": [
"Open circuit in the fuel shutoff valve wiring",
"Faulty fuel shutoff valve",
"Wiring harness damage"
],
"Symptoms": ["Engine won't start", "No fuel pressure", "Check engine light"]
},
{
"OBD_CODE": "P0006",
"Meaning": "Fuel Shutoff Valve 'A' Control Circuit Low",
"Cause": [
"Faulty fuel shutoff valve",
"Low voltage in the control circuit",
"Damaged wiring"
],
"Symptoms": ["Engine stalling", "Poor fuel efficiency", "No fuel pressure"]
},
{
"OBD_CODE": "P0007",
"Meaning": "Fuel Shutoff Valve 'A' Control Circuit High",
"Cause": [
"Excess voltage in the fuel shutoff valve circuit",
"Faulty fuel shutoff valve",
"Wiring issues"
],
"Symptoms": [
"Engine running rough",
"Fuel pressure too high",
"Check engine light"
]
},
{
"OBD_CODE": "P0008",
"Meaning": "Engine Position System Performance",
"Cause": [
"Timing chain or belt wear",
"Faulty camshaft or crankshaft sensor",
"Engine timing issues"
],
"Symptoms": [
"Engine misfires",
"Poor acceleration",
"Check engine light on"
]
},
{
"OBD_CODE": "P0009",
"Meaning": "Engine Position System Performance",
"Cause": [
"Timing chain wear",
"Faulty camshaft or crankshaft sensor",
"Timing misalignment"
],
"Symptoms": ["Engine stalling", "Rough idle", "Check engine light on"]
},
{
"OBD_CODE": "P0300",
"Meaning": "Random/Multiple Cylinder Misfire Detected",
"Cause": [
"Faulty spark plugs or wires",
"Ignition coil issues",
"Fuel delivery problems",
"Vacuum leaks",
"Engine timing issues"
],
"Symptoms": [
"Rough engine idle",
"Poor acceleration",
"Check Engine Light (CEL) illuminated",
"Stalling",
"Excessive exhaust emissions"
]
},
{
"OBD_CODE": "P0301",
"Meaning": "Cylinder 1 Misfire Detected",
"Cause": [
"Worn or damaged spark plug in cylinder 1",
"Faulty ignition coil for cylinder 1",
"Fuel injector issue in cylinder 1",
"Low engine compression in cylinder 1"
],
"Symptoms": [
"Rough engine operation",
"Reduced power",
"CEL illuminated",
"Increased fuel consumption"
]
},
{
"OBD_CODE": "P0302",
"Meaning": "Cylinder 2 Misfire Detected",
"Cause": [
"Faulty spark plug in cylinder 2",
"Ignition coil failure for cylinder 2",
"Fuel delivery issue in cylinder 2",
"Vacuum leak affecting cylinder 2"
],
"Symptoms": [
"Engine shaking or vibration",
"Loss of power",
"CEL illuminated",
"Increased emissions"
]
},
{
"OBD_CODE": "P0303",
"Meaning": "Cylinder 3 Misfire Detected",
"Cause": [
"Faulty spark plug in cylinder 3",
"Defective ignition coil for cylinder 3",
"Fuel injector malfunction in cylinder 3",
"Engine mechanical issue (e.g., low compression)"
],
"Symptoms": [
"Hesitation while driving",
"Rough idle",
"CEL illuminated",
"Poor fuel economy"
]
},
{
"OBD_CODE": "P0304",
"Meaning": "Cylinder 4 Misfire Detected",
"Cause": [
"Bad spark plug or wire in cylinder 4",
"Ignition system failure for cylinder 4",
"Faulty fuel injector",
"Internal engine issues (e.g., valve problems)"
],
"Symptoms": [
"Noticeable engine vibration",
"CEL illuminated",
"Decreased power",
"Higher fuel consumption"
]
},
{
"OBD_CODE": "P0305",
"Meaning": "Cylinder 5 Misfire Detected",
"Cause": [
"Damaged spark plug or wire in cylinder 5",
"Defective ignition coil for cylinder 5",
"Fuel delivery problem to cylinder 5",
"Mechanical engine problem (e.g., compression issue)"
],
"Symptoms": [
"Engine misfiring or stumbling",
"CEL illuminated",
"Rough idle",
"Poor acceleration"
]
},
{
"OBD_CODE": "P0306",
"Meaning": "Cylinder 6 Misfire Detected",
"Cause": [
"Faulty spark plug in cylinder 6",
"Ignition coil failure",
"Fuel injector problem",
"Mechanical engine issues (e.g., valve or compression problems)"
],
"Symptoms": [
"Engine misfires",
"CEL illuminated",
"Loss of engine power",
"Increased emissions"
]
},
{
"OBD_CODE": "P0010",
"Meaning": "A Camshaft Position Actuator Circuit",
"Cause": [
"Faulty camshaft position actuator",
"Wiring issues",
"Open or short in actuator circuit"
],
"Symptoms": [
"Check Engine Light (CEL) illuminated",
"Poor fuel economy",
"Reduced engine performance"
]
},
{
"OBD_CODE": "P0011",
"Meaning": "A Camshaft Position – Timing Over-Advanced or System Performance",
"Cause": [
"Faulty camshaft position actuator",
"Timing chain issues",
"Low engine oil levels"
],
"Symptoms": ["CEL illuminated", "Rough engine idle", "Reduced power"]
},
{
"OBD_CODE": "P0012",
"Meaning": "A Camshaft Position – Timing Over-Retarded",
"Cause": [
"Faulty camshaft position sensor",
"Oil flow problems",
"Variable valve timing system failure"
],
"Symptoms": [
"CEL illuminated",
"Poor acceleration",
"Increased fuel consumption"
]
},
{
"OBD_CODE": "P0013",
"Meaning": "B Camshaft Position – Actuator Circuit",
"Cause": [
"Defective camshaft position actuator",
"Wiring issues",
"Faulty PCM"
],
"Symptoms": [
"CEL illuminated",
"Engine running poorly",
"Reduced fuel efficiency"
]
},
{
"OBD_CODE": "P0014",
"Meaning": "B Camshaft Position – Timing Over-Advanced or System Performance",
"Cause": [
"Faulty timing chain",
"Low oil pressure",
"Variable valve timing issues"
],
"Symptoms": ["CEL illuminated", "Engine knocking noises", "Rough idle"]
},
{
"OBD_CODE": "P0015",
"Meaning": "B Camshaft Position – Timing Over-Retarded",
"Cause": [
"Oil control valve problems",
"Faulty camshaft position sensor",
"Timing chain issues"
],
"Symptoms": ["CEL illuminated", "Reduced engine power", "Poor fuel economy"]
},
{
"OBD_CODE": "P0016",
"Meaning": "Crankshaft Position – Camshaft Position Correlation",
"Cause": [
"Misaligned timing belt or chain",
"Crankshaft position sensor failure",
"Camshaft position sensor failure"
],
"Symptoms": ["CEL illuminated", "Engine stalling", "Poor acceleration"]
},
{
"OBD_CODE": "P0017",
"Meaning": "Crankshaft Position – Camshaft Position Correlation",
"Cause": [
"Timing chain/belt misalignment",
"Sensor issues",
"Wiring problems"
],
"Symptoms": [
"Engine runs poorly",
"CEL illuminated",
"Reduced fuel economy"
]
},
{
"OBD_CODE": "P0018",
"Meaning": "Crankshaft Position – Camshaft Position Correlation",
"Cause": [
"Engine timing issue",
"Faulty crankshaft or camshaft position sensors",
"Wiring faults"
],
"Symptoms": ["CEL illuminated", "Engine hesitation", "Poor performance"]
},
{
"OBD_CODE": "P0019",
"Meaning": "Crankshaft Position – Camshaft Position Correlation",
"Cause": [
"Timing belt misalignment",
"Defective sensors",
"Oil flow restriction"
],
"Symptoms": ["CEL illuminated", "Poor acceleration", "Engine vibration"]
},
{
"OBD_CODE": "P0020",
"Meaning": "A Camshaft Position Actuator Circuit",
"Cause": ["Wiring issues", "Faulty actuator", "Low oil pressure"],
"Symptoms": ["CEL illuminated", "Rough idle", "Reduced power"]
},
{
"OBD_CODE": "P0021",
"Meaning": "A Camshaft Position – Timing Over-Advanced or System Performance",
"Cause": [
"Timing chain misalignment",
"Low oil pressure",
"Camshaft actuator failure"
],
"Symptoms": ["CEL illuminated", "Engine knocking", "Poor acceleration"]
},
{
"OBD_CODE": "P0022",
"Meaning": "A Camshaft Position – Timing Over-Retarded",
"Cause": [
"Faulty camshaft actuator",
"Oil control valve failure",
"Wiring issues"
],
"Symptoms": ["CEL illuminated", "Engine runs rough", "Poor fuel efficiency"]
},
{
"OBD_CODE": "P0023",
"Meaning": "B Camshaft Position – Actuator Circuit",
"Cause": ["Wiring issues", "Camshaft actuator failure", "PCM fault"],
"Symptoms": ["CEL illuminated", "Engine runs poorly", "Reduced performance"]
},
{
"OBD_CODE": "P0024",
"Meaning": "B Camshaft Position – Timing Over-Advanced or System Performance",
"Cause": ["Timing chain issues", "Low oil pressure", "Actuator failure"],
"Symptoms": ["CEL illuminated", "Knocking noise", "Poor engine performance"]
},
{
"OBD_CODE": "P0025",
"Meaning": "B Camshaft Position – Timing Over-Retarded",
"Cause": [
"Faulty timing chain",
"Actuator issues",
"Oil pressure problems"
],
"Symptoms": ["CEL illuminated", "Engine stalls", "Reduced power"]
},
{
"OBD_CODE": "P0026",
"Meaning": "Intake Valve Control Solenoid Circuit Range/Performance",
"Cause": [
"Faulty solenoid",
"Oil control valve malfunction",
"Low oil pressure"
],
"Symptoms": ["CEL illuminated", "Rough idle", "Reduced power"]
},
{
"OBD_CODE": "P0027",
"Meaning": "Exhaust Valve Control Solenoid Circuit Range/Performance",
"Cause": ["Faulty solenoid", "Oil control valve failure", "Wiring issues"],
"Symptoms": ["CEL illuminated", "Poor fuel economy", "Engine stalling"]
},
{
"OBD_CODE": "P0030",
"Meaning": "HO2S Heater Control Circuit",
"Cause": ["Faulty heater", "Wiring issues", "ECU malfunction"],
"Symptoms": ["CEL illuminated", "Poor fuel economy", "Rough idle"]
},
{
"OBD_CODE": "P0031",
"Meaning": "HO2S Heater Control Circuit Low",
"Cause": [
"Low voltage to the heater",
"Faulty heater element",
"Wiring issues"
],
"Symptoms": ["CEL illuminated", "Decreased engine performance"]
},
{
"OBD_CODE": "P0032",
"Meaning": "HO2S Heater Control Circuit High",
"Cause": [
"High voltage to the heater",
"Short circuit in the wiring",
"Faulty ECU"
],
"Symptoms": ["CEL illuminated", "Rich fuel mixture"]
},
{
"OBD_CODE": "P0033",
"Meaning": "Turbo Charger Bypass Valve Control Circuit",
"Cause": ["Faulty bypass valve", "Wiring issues", "ECU malfunction"],
"Symptoms": ["Loss of power", "Turbo lag"]
},
{
"OBD_CODE": "P0034",
"Meaning": "Turbo Charger Bypass Valve Control Circuit Low",
"Cause": [
"Low voltage to the valve",
"Wiring issues",
"Faulty bypass valve"
],
"Symptoms": ["CEL illuminated", "Reduced boost pressure"]
},
{
"OBD_CODE": "P0035",
"Meaning": "Turbo Charger Bypass Valve Control Circuit High",
"Cause": ["High voltage to the valve", "Short circuit", "Faulty ECU"],
"Symptoms": ["CEL illuminated", "Overboost condition"]
},
{
"OBD_CODE": "P0036",
"Meaning": "HO2S Heater Control Circuit",
"Cause": ["Faulty heater", "Wiring issues", "ECU malfunction"],
"Symptoms": ["CEL illuminated", "Poor fuel economy", "Rough idle"]
},
{
"OBD_CODE": "P0037",
"Meaning": "HO2S Heater Control Circuit Low",
"Cause": [
"Low voltage to the heater",
"Faulty heater element",
"Wiring issues"
],
"Symptoms": ["CEL illuminated", "Decreased engine performance"]
},
{
"OBD_CODE": "P0038",
"Meaning": "HO2S Heater Control Circuit High",
"Cause": [
"High voltage to the heater",
"Short circuit in the wiring",
"Faulty ECU"
],
"Symptoms": ["CEL illuminated", "Rich fuel mixture"]
},
{
"OBD_CODE": "P0039",
"Meaning": "Turbo/Super Charger Bypass Valve Control Circuit Range/Performance",
"Cause": ["Faulty valve", "Wiring issues", "ECU malfunction"],
"Symptoms": ["Loss of power", "Inconsistent boost levels"]
},
{
"OBD_CODE": "P0040",
"Meaning": "O2 Sensor Signals Swapped Bank 1 Sensor 1/ Bank 2 Sensor 1",
"Cause": ["Improper sensor installation", "Wiring issues"],
"Symptoms": ["CEL illuminated", "Poor fuel economy", "Rough idle"]
},
{
"OBD_CODE": "P0041",
"Meaning": "O2 Sensor Signals Swapped Bank 1 Sensor 2/ Bank 2 Sensor 2",
"Cause": ["Improper sensor installation", "Wiring issues"],
"Symptoms": ["CEL illuminated", "Poor fuel economy", "Rough idle"]
},
{
"OBD_CODE": "P0042",
"Meaning": "HO2S Heater Control Circuit",
"Cause": ["Faulty heater", "Wiring issues", "ECU malfunction"],
"Symptoms": ["CEL illuminated", "Poor fuel economy", "Rough idle"]
},
{
"OBD_CODE": "P0043",
"Meaning": "HO2S Heater Control Circuit Low",
"Cause": [
"Low voltage to the heater",
"Faulty heater element",
"Wiring issues"
],
"Symptoms": ["CEL illuminated", "Decreased engine performance"]
},
{
"OBD_CODE": "P0044",
"Meaning": "HO2S Heater Control Circuit High",
"Cause": [
"High voltage to the heater",
"Short circuit in the wiring",
"Faulty ECU"
],
"Symptoms": ["CEL illuminated", "Rich fuel mixture"]
},
{
"OBD_CODE": "P0045",
"Meaning": "Turbo/Super Charger Boost Control Solenoid Circuit/Open",
"Cause": ["Open circuit in solenoid", "Wiring issues"],
"Symptoms": ["Loss of boost", "CEL illuminated"]
},
{
"OBD_CODE": "P0046",
"Meaning": "Turbo/Super Charger Boost Control Solenoid Circuit Range/Performance",
"Cause": ["Faulty solenoid", "Wiring issues", "ECU malfunction"],
"Symptoms": ["Loss of power", "Inconsistent boost levels"]
},
{
"OBD_CODE": "P0047",
"Meaning": "Turbo/Super Charger Boost Control Solenoid Circuit Low",
"Cause": ["Low voltage to solenoid", "Wiring issues"],
"Symptoms": ["Loss of boost", "CEL illuminated"]
},
{
"OBD_CODE": "P0048",
"Meaning": "Turbo/Super Charger Boost Control Solenoid Circuit High",
"Cause": ["High voltage to solenoid", "Short circuit", "Faulty ECU"],
"Symptoms": ["Loss of boost", "CEL illuminated"]
},
{
"OBD_CODE": "P0049",
"Meaning": "Turbo/Super Charger Turbine Overspeed",
"Cause": ["Faulty sensor", "Improper boost control", "Mechanical failure"],
"Symptoms": ["CEL illuminated", "Engine performance issues"]
},
{
"OBD_CODE": "P0050",
"Meaning": "HO2S Heater Control Circuit",
"Cause": ["Faulty heater", "Wiring issues", "ECU malfunction"],
"Symptoms": ["CEL illuminated", "Poor fuel economy", "Rough idle"]
},
{
"OBD_CODE": "P0051",
"Meaning": "HO2S Heater Control Circuit Low",
"Cause": [
"Low voltage to the heater",
"Faulty heater element",
"Wiring issues"
],
"Symptoms": ["CEL illuminated", "Decreased engine performance"]
},
{
"OBD_CODE": "P0052",
"Meaning": "HO2S Heater Control Circuit High",
"Cause": [
"High voltage to the heater",
"Short circuit in the wiring",
"Faulty ECU"
],
"Symptoms": ["CEL illuminated", "Rich fuel mixture"]
},
{
"OBD_CODE": "P0053",
"Meaning": "HO2S Heater Resistance",
"Cause": ["High resistance in the heater circuit", "Faulty heater element"],
"Symptoms": ["CEL illuminated", "Poor fuel economy"]
},
{
"OBD_CODE": "P0054",
"Meaning": "HO2S Heater Resistance",
"Cause": ["High resistance in the heater circuit", "Faulty heater element"],
"Symptoms": ["CEL illuminated", "Poor fuel economy"]
},
{
"OBD_CODE": "P0055",
"Meaning": "HO2S Heater Resistance",
"Cause": ["High resistance in the heater circuit", "Faulty heater element"],
"Symptoms": ["CEL illuminated", "Poor fuel economy"]
},
{
"OBD_CODE": "P0056",
"Meaning": "HO2S Heater Control Circuit",
"Cause": ["Faulty heater", "Wiring issues", "ECU malfunction"],
"Symptoms": ["CEL illuminated", "Poor fuel economy", "Rough idle"]
},
{
"OBD_CODE": "P0057",
"Meaning": "HO2S Heater Control Circuit Low",
"Cause": [
"Low voltage to the heater",
"Faulty heater element",
"Wiring issues"
],
"Symptoms": ["CEL illuminated", "Decreased engine performance"]
},
{
"OBD_CODE": "P0058",
"Meaning": "HO2S Heater Control Circuit High",
"Cause": [
"High voltage to the heater",
"Short circuit in the wiring",
"Faulty ECU"
],
"Symptoms": ["CEL illuminated", "Rich fuel mixture"]
},
{
"OBD_CODE": "P0059",
"Meaning": "HO2S Heater Resistance",
"Cause": ["High resistance in the heater circuit", "Faulty heater element"],
"Symptoms": ["CEL illuminated", "Poor fuel economy"]
},
{
"OBD_CODE": "P0060",
"Meaning": "HO2S Heater Resistance",
"Cause": ["High resistance in the heater circuit", "Faulty heater element"],
"Symptoms": ["CEL illuminated", "Poor fuel economy"]
},
{
"OBD_CODE": "P0061",
"Meaning": "HO2S Heater Resistance",
"Cause": ["High resistance in the heater circuit", "Faulty heater element"],
"Symptoms": ["CEL illuminated", "Poor fuel economy"]
},
{
"OBD_CODE": "P0062",
"Meaning": "HO2S Heater Control Circuit",
"Cause": ["Faulty heater", "Wiring issues", "ECU malfunction"],
"Symptoms": ["CEL illuminated", "Poor fuel economy", "Rough idle"]
},
{
"OBD_CODE": "P0063",
"Meaning": "HO2S Heater Control Circuit Low",
"Cause": [
"Low voltage to the heater",
"Faulty heater element",
"Wiring issues"
],
"Symptoms": ["CEL illuminated", "Decreased engine performance"]
},
{
"OBD_CODE": "P0064",
"Meaning": "HO2S Heater Control Circuit High",
"Cause": [
"High voltage to the heater",
"Short circuit in the wiring",
"Faulty ECU"
],
"Symptoms": ["CEL illuminated", "Rich fuel mixture"]
},
{
"OBD_CODE": "P0065",
"Meaning": "Air Assisted Injector Control Range/Performance",
"Cause": ["Faulty injector", "Wiring issues", "ECU malfunction"],
"Symptoms": ["CEL illuminated", "Poor fuel economy", "Rough idle"]
},
{
"OBD_CODE": "P0066",
"Meaning": "Air Assisted Injector Control Circuit or Circuit Low",
"Cause": ["Low voltage to the injector", "Wiring issues"],
"Symptoms": ["CEL illuminated", "Engine misfire"]
},
{
"OBD_CODE": "P0067",
"Meaning": "Air Assisted Injector Control Circuit High",
"Cause": ["High voltage to the injector", "Short circuit", "Faulty ECU"],
"Symptoms": ["CEL illuminated", "Engine performance issues"]
},
{
"OBD_CODE": "P0068",
"Meaning": "MAP/MAF – Throttle Position Correlation",
"Cause": [
"Faulty MAP/MAF sensor",
"Throttle body issues",
"Wiring problems"
],
"Symptoms": ["CEL illuminated", "Poor acceleration", "Stalling"]
},
{
"OBD_CODE": "P0069",
"Meaning": "Manifold Absolute Pressure – Barometric Pressure Correlation",
"Cause": ["Faulty MAP sensor", "Barometric pressure sensor issues"],
"Symptoms": ["CEL illuminated", "Reduced performance"]
},
{
"OBD_CODE": "P0070",
"Meaning": "Ambient Air Temperature Sensor Circuit",
"Cause": ["Faulty sensor", "Wiring issues", "ECU malfunction"],
"Symptoms": ["CEL illuminated", "Inaccurate temperature readings"]
},
{
"OBD_CODE": "P0071",
"Meaning": "Ambient Air Temperature Sensor Range/Performance",
"Cause": ["Faulty sensor", "Wiring issues", "ECU malfunction"],
"Symptoms": ["CEL illuminated", "Incorrect temperature readings"]
},
{
"OBD_CODE": "P0072",
"Meaning": "Ambient Air Temperature Sensor Circuit Low",
"Cause": ["Low voltage to the sensor", "Wiring issues"],
"Symptoms": ["CEL illuminated", "Inaccurate temperature readings"]
},
{
"OBD_CODE": "P0073",
"Meaning": "Ambient Air Temperature Sensor Circuit High",
"Cause": ["High voltage to the sensor", "Short circuit", "Faulty sensor"],
"Symptoms": ["CEL illuminated", "Incorrect temperature readings"]
},
{
"OBD_CODE": "P0074",
"Meaning": "Ambient Air Temperature Sensor Circuit Intermittent",
"Cause": ["Loose connections", "Wiring issues", "Faulty sensor"],
"Symptoms": ["CEL illuminated", "Fluctuating temperature readings"]
},
{
"OBD_CODE": "P0075",
"Meaning": "Intake Valve Control Solenoid Circuit",
"Cause": ["Faulty solenoid", "Wiring issues", "ECU malfunction"],
"Symptoms": ["CEL illuminated", "Reduced engine performance"]
},
{
"OBD_CODE": "P0076",
"Meaning": "Intake Valve Control Solenoid Circuit Low",
"Cause": ["Low voltage to the solenoid", "Wiring issues"],
"Symptoms": ["CEL illuminated", "Engine misfire"]
},
{
"OBD_CODE": "P0077",
"Meaning": "Intake Valve Control Solenoid Circuit High",
"Cause": ["High voltage to the solenoid", "Short circuit", "Faulty ECU"],
"Symptoms": ["CEL illuminated", "Reduced performance"]
},
{
"OBD_CODE": "P0078",
"Meaning": "Exhaust Valve Control Solenoid Circuit",
"Cause": ["Faulty solenoid", "Wiring issues", "ECU malfunction"],
"Symptoms": ["CEL illuminated", "Reduced engine performance"]
},
{
"OBD_CODE": "P0079",
"Meaning": "Exhaust Valve Control Solenoid Circuit Low",
"Cause": ["Low voltage to the solenoid", "Wiring issues"],
"Symptoms": ["CEL illuminated", "Engine misfire"]
},
{
"OBD_CODE": "P0080",
"Meaning": "Exhaust Valve Control Solenoid Circuit High",
"Cause": ["High voltage to the solenoid", "Short circuit", "Faulty ECU"],
"Symptoms": ["CEL illuminated", "Reduced performance"]
},
{
"OBD_CODE": "P0081",
"Meaning": "Intake Valve Control Solenoid Circuit",
"Cause": ["Faulty solenoid", "Wiring issues", "ECU malfunction"],
"Symptoms": ["CEL illuminated", "Reduced engine performance"]
},
{
"OBD_CODE": "P0082",
"Meaning": "Intake Valve Control Solenoid Circuit Low",
"Cause": ["Low voltage to the solenoid", "Wiring issues"],
"Symptoms": ["CEL illuminated", "Engine misfire"]
},
{
"OBD_CODE": "P0083",
"Meaning": "Intake Valve Control Solenoid Circuit High",
"Cause": ["High voltage to the solenoid", "Short circuit", "Faulty ECU"],
"Symptoms": ["CEL illuminated", "Reduced performance"]
},
{
"OBD_CODE": "P0084",
"Meaning": "Exhaust Valve Control Solenoid Circuit",
"Cause": ["Faulty solenoid", "Wiring issues", "ECU malfunction"],
"Symptoms": ["CEL illuminated", "Reduced engine performance"]
},
{
"OBD_CODE": "P0085",
"Meaning": "Exhaust Valve Control Solenoid Circuit Low",
"Cause": ["Low voltage to the solenoid", "Wiring issues"],
"Symptoms": ["CEL illuminated", "Engine misfire"]
},
{
"OBD_CODE": "P0086",
"Meaning": "Exhaust Valve Control Solenoid Circuit High",
"Cause": ["High voltage to the solenoid", "Short circuit", "Faulty ECU"],
"Symptoms": ["CEL illuminated", "Reduced performance"]
},
{
"OBD_CODE": "P0087",
"Meaning": "Fuel Rail/System Pressure – Too Low",
"Cause": ["Fuel pump failure", "Clogged fuel filter", "Leaking fuel lines"],
"Symptoms": ["CEL illuminated", "Poor engine performance"]
},
{
"OBD_CODE": "P0088",
"Meaning": "Fuel Rail/System Pressure – Too High",
"Cause": ["Faulty fuel pressure regulator", "Fuel pump issues"],
"Symptoms": ["CEL illuminated", "Engine stalling", "Poor fuel economy"]
},
{
"OBD_CODE": "P0089",
"Meaning": "Fuel Pressure Regulator 1 Performance",
"Cause": ["Faulty regulator", "Wiring issues", "Fuel pressure anomalies"],
"Symptoms": ["CEL illuminated", "Poor engine performance"]
},
{
"OBD_CODE": "P0090",
"Meaning": "Fuel Pressure Regulator 1 Control Circuit",
"Cause": ["Open circuit in regulator control", "Wiring issues"],
"Symptoms": ["CEL illuminated", "Engine performance issues"]
},
{
"OBD_CODE": "P0091",
"Meaning": "Fuel Pressure Regulator 1 Control Circuit Low",
"Cause": ["Low voltage to regulator", "Wiring issues"],
"Symptoms": ["CEL illuminated", "Engine performance issues"]
},
{
"OBD_CODE": "P0092",
"Meaning": "Fuel Pressure Regulator 1 Control Circuit High",
"Cause": ["High voltage to regulator", "Short circuit", "Faulty ECU"],
"Symptoms": ["CEL illuminated", "Engine performance issues"]
},
{
"OBD_CODE": "P0093",
"Meaning": "Fuel System Leak Detected – Large Leak",
"Cause": ["Leaking fuel lines", "Loose connections"],
"Symptoms": ["CEL illuminated", "Fuel odor", "Poor performance"]
},
{
"OBD_CODE": "P0094",
"Meaning": "Fuel System Leak Detected – Small Leak",
"Cause": ["Minor leaks in fuel system", "Loose connections"],
"Symptoms": ["CEL illuminated", "Fuel odor"]
},
{
"OBD_CODE": "P0095",
"Meaning": "Intake Air Temperature Sensor 2 Circuit",
"Cause": ["Faulty sensor", "Wiring issues"],
"Symptoms": ["CEL illuminated", "Poor fuel economy"]
},
{
"OBD_CODE": "P0096",
"Meaning": "Intake Air Temperature Sensor 2 Circuit Range/Performance",
"Cause": ["Faulty sensor", "Wiring issues", "ECU malfunction"],
"Symptoms": ["CEL illuminated", "Incorrect air temperature readings"]
},
{
"OBD_CODE": "P0097",
"Meaning": "Intake Air Temperature Sensor 2 Circuit Low",
"Cause": ["Low voltage to the sensor", "Wiring issues"],
"Symptoms": ["CEL illuminated", "Incorrect air temperature readings"]
},
{
"OBD_CODE": "P0098",
"Meaning": "Intake Air Temperature Sensor 2 Circuit High",
"Cause": ["High voltage to the sensor", "Short circuit", "Faulty sensor"],
"Symptoms": ["CEL illuminated", "Incorrect air temperature readings"]
},
{
"OBD_CODE": "P0099",
"Meaning": "Intake Air Temperature Sensor 2 Circuit Intermittent/Erratic",
"Cause": ["Loose connections", "Wiring issues"],
"Symptoms": ["CEL illuminated", "Fluctuating temperature readings"]
},
{
"OBD_CODE": "P0100",
"Meaning": "Mass or Volume Air Flow Circuit",
"Cause": ["Faulty MAF sensor", "Wiring issues", "ECU malfunction"],
"Symptoms": ["CEL illuminated", "Poor acceleration", "Stalling"]
},
{
"OBD_CODE": "P0101",
"Meaning": "Mass or Volume Air Flow Circuit Range/Performance",
"Cause": ["Faulty MAF sensor", "Wiring issues", "ECU malfunction"],
"Symptoms": ["CEL illuminated", "Poor acceleration", "Stalling"]
},
{
"OBD_CODE": "P0102",
"Meaning": "Mass or Volume Air Flow Circuit Low Input",
"Cause": ["Low voltage to MAF sensor", "Clogged air filter"],
"Symptoms": ["CEL illuminated", "Rough idle", "Poor performance"]
},
{
"OBD_CODE": "P0103",
"Meaning": "Mass or Volume Air Flow Circuit High Input",
"Cause": ["High voltage to MAF sensor", "Short circuit"],
"Symptoms": ["CEL illuminated", "Rich fuel mixture"]
},
{
"OBD_CODE": "P0104",
"Meaning": "Mass or Volume Air Flow Circuit Intermittent",
"Cause": ["Loose connections", "Wiring issues"],
"Symptoms": ["CEL illuminated", "Fluctuating performance"]
},
{
"OBD_CODE": "P0105",
"Meaning": "Manifold Absolute Pressure/Barometric Pressure Circuit",
"Cause": ["Faulty MAP sensor", "Wiring issues"],
"Symptoms": ["CEL illuminated", "Poor engine performance"]
},
{
"OBD_CODE": "P0106",
"Meaning": "Manifold Absolute Pressure/Barometric Pressure Circuit Range/Performance",
"Cause": ["Faulty MAP sensor", "Wiring issues", "ECU malfunction"],
"Symptoms": ["CEL illuminated", "Poor acceleration"]
},
{
"OBD_CODE": "P0107",
"Meaning": "Manifold Absolute Pressure/Barometric Pressure Circuit Low Input",
"Cause": ["Low voltage to MAP sensor", "Wiring issues"],
"Symptoms": ["CEL illuminated", "Engine performance issues"]
},
{
"OBD_CODE": "P0108",
"Meaning": "Manifold Absolute Pressure/Barometric Pressure Circuit High Input",
"Cause": ["High voltage to MAP sensor", "Short circuit"],
"Symptoms": ["CEL illuminated", "Engine performance issues"]
},
{
"OBD_CODE": "P0109",
"Meaning": "Manifold Absolute Pressure/Barometric Pressure Circuit Intermittent",
"Cause": ["Loose connections", "Wiring issues"],
"Symptoms": ["CEL illuminated", "Fluctuating performance"]
},
{
"OBD_CODE": "P0110",
"Meaning": "Intake Air Temperature Sensor 1 Circuit",
"Cause": ["Faulty sensor", "Wiring issues"],
"Symptoms": ["CEL illuminated", "Poor fuel economy"]
},
{
"OBD_CODE": "P0111",
"Meaning": "Intake Air Temperature Sensor 1 Circuit Range/Performance",
"Cause": ["Faulty sensor", "Wiring issues", "ECU malfunction"],
"Symptoms": ["CEL illuminated", "Incorrect air temperature readings"]
},
{
"OBD_CODE": "P0112",
"Meaning": "Intake Air Temperature Sensor 1 Circuit Low",
"Cause": ["Low voltage to the sensor", "Wiring issues"],
"Symptoms": ["CEL illuminated", "Incorrect air temperature readings"]
},
{
"OBD_CODE": "P0113",
"Meaning": "Intake Air Temperature Sensor 1 Circuit High",
"Cause": ["High voltage to the sensor", "Short circuit", "Faulty sensor"],
"Symptoms": ["CEL illuminated", "Incorrect air temperature readings"]
},
{
"OBD_CODE": "P0114",
"Meaning": "Intake Air Temperature Sensor 1 Circuit Intermittent",
"Cause": ["Loose connections", "Wiring issues"],
"Symptoms": ["CEL illuminated", "Fluctuating temperature readings"]
},
{
"OBD_CODE": "P0115",
"Meaning": "Engine Coolant Temperature Circuit",
"Cause": ["Faulty sensor", "Wiring issues"],
"Symptoms": ["CEL illuminated", "Engine overheating"]
},
{
"OBD_CODE": "P0116",
"Meaning": "Engine Coolant Temperature Circuit Range/Performance",
"Cause": ["Faulty sensor", "Wiring issues", "ECU malfunction"],
"Symptoms": ["CEL illuminated", "Engine overheating"]
},
{
"OBD_CODE": "P0117",
"Meaning": "Engine Coolant Temperature Circuit Low",
"Cause": ["Low voltage to the sensor", "Wiring issues"],
"Symptoms": ["CEL illuminated", "Engine overheating"]
},
{
"OBD_CODE": "P0118",
"Meaning": "Engine Coolant Temperature Circuit High",
"Cause": ["High voltage to the sensor", "Short circuit", "Faulty sensor"],
"Symptoms": ["CEL illuminated", "Engine overheating"]
},
{