-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsiglas.py
48 lines (47 loc) · 1.67 KB
/
siglas.py
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
lista_siglas = {
'ABS': 'Anti-Lock Braking System' ,
'ACR': 'Automatic Compression Release' ,
'AFR': 'Air Fuel Ratio' ,
'AIS': 'Active Intake Solenoid' ,
'ATS': 'Air Temperature Sensor' ,
'BAS': 'Bank Angle Sensor' ,
'BCM': 'Body Control Module' ,
'CAN': 'Controller Area Network' ,
'CCM': 'Cruise Control Module' ,
'CKP': 'Crank Position Sensor' ,
'DLC': 'Datalink Connector' ,
'DTC': 'Diagnostic Trouble Codes' ,
'ECM': 'Electronic Control Module' ,
'ECT': 'Engine Coolant Temperature' ,
'ECU': 'Electronic Control Unit' ,
'EFI': 'Electronic Fuel Injection' ,
'EFP': 'Electronic Fuel Pump' ,
'ET': 'Engine Temperature sensor' ,
'FUI': 'Fuel Injectors' ,
'FPR': 'Fuel Pressure Regulator' ,
'H-DSSS': 'Harley-Davidson® Smart Security System' ,
'HCU': 'Hydraulic Control Unit, ABS' ,
'HFSM': 'Hands Free Security Module' ,
'HO2S': 'Heated Oxygen Sensor' ,
'IAC': 'Idle Air Control actuator' ,
'IAT': 'Intake Air Temperature sensor' ,
'ICM': 'Ignition Control Module' ,
'IMAP': 'MAP + IAT in one unit' ,
'ISS': 'Ion Sensing System' ,
'JSS': 'Jiffy Stand Sensor' ,
'LHCM': 'Left Hand Control Module' ,
'RHCM': 'Right Hand Control Module' ,
'MAP': 'Manifold Absolute Pressure sensor' ,
'MHR': 'Right Hand Control Module' ,
'RCM': 'Reverse Control Module' ,
'SPEEDO': 'Speedometer' ,
'TCA': 'Throttle Control Actuator' ,
'TGS': 'Twist Grip Sensor' ,
'TMAP': 'Intake Air Temperature / Manifold Absolute Pressure equipment' ,
'TPS': 'Throttle Position Sensor' ,
'TSM / TSSM': 'Turn Signal / Turn Signal Security Module)' ,
'VE': 'Volume Efficiency' ,
'VIN': 'Vehicle Identification Number' ,
'VSS': 'Vehicle Speed Sensor' ,
'WSS': 'Wheel Speed Sensor'
}