Example #1
0
 public ReturnSet OBD_Designation()
 {
     ReturnSet ret = new ReturnSet();
     ret.RawValue = GetCmd("011C");
     ret.result = "";
     ret.name = "         OBD Designation";
     return ret;
 }
Example #2
0
 public ReturnSet O2_Sensor_1_3()
 {
     ReturnSet ret = new ReturnSet();
     ret.RawValue = GetCmd("0116");
     ret.result = "";
     ret.name = "        O2 Sensor: 1 - 3";
     return ret;
 }
Example #3
0
 public ReturnSet O2_Sensor_2_4()
 {
     ReturnSet ret = new ReturnSet();
     ret.RawValue = GetCmd("011B");
     ret.result = "";
     ret.name = "        O2 Sensor: 2 - 4";
     return ret;
 }
Example #4
0
 /// <summary>
 /// Timing advance.
 /// 
 /// </summary>
 /// <returns></returns>
 public ReturnSet Timing_Advance()
 {
     ReturnSet ret = new ReturnSet();
     ret.RawValue = GetCmd("010E");
     ret.result = String.Format("{0}", (ret.RawValue - 128) / 2.0);
     ret.name = "          Timing Advance";
     return ret;
 }
Example #5
0
 public ReturnSet Aux_input_status()
 {
     ReturnSet ret = new ReturnSet();
     ret.RawValue = GetCmd("011E");
     ret.result = "";
     ret.name = "        Aux input status";
     return ret;
 }
Example #6
0
 public ReturnSet Status_Since_DTC_Cleared()
 {
     ReturnSet ret = new ReturnSet();
     ret.RawValue = GetCmd("0101");
     ret.result = ret.RawValue.ToString();
     ret.name = "Status Since DTC Cleared";
     return ret;
 }
Example #7
0
 public ReturnSet Throttle_Position()
 {
     ReturnSet ret = new ReturnSet();
     ret.RawValue = GetCmd("0111");
     ret.result = "";
     ret.name = "       Throttle Position";
     return ret;
 }
Example #8
0
 public ReturnSet Fuel_Rail_Pressure()
 {
     ReturnSet ret = new ReturnSet();
     ret.RawValue = GetCmd("010A");
     ret.result = "";
     ret.name = "      Fuel Rail Pressure";
     return ret;
 }
Example #9
0
 public ReturnSet Fuel_System_Status()
 {
     ReturnSet ret = new ReturnSet();
     ret.RawValue = GetCmd("0103");
     ret.result = "";
     ret.name = "      Fuel System Status";
     return ret;
 }
Example #10
0
 public ReturnSet Engine_RPM()
 {
     ReturnSet ret = new ReturnSet();
     ret.RawValue = GetCmd("010C");
     ret.result = "";
     ret.name = "              Engine RPM";
     return ret;
 }
Example #11
0
 public ReturnSet Engine_Run_with_MIL_on()
 {
     ReturnSet ret = new ReturnSet();
     ret.RawValue = GetCmd("014E");
     ret.result = "";
     ret.name = "  Engine Run with MIL on";
     return ret;
 }
Example #12
0
 public ReturnSet DTC_Causing_Freeze_Frame()
 {
     ReturnSet ret = new ReturnSet();
     ret.RawValue = GetCmd("0102");
     ret.result = "";
     ret.name = "DTC Causing Freeze Frame";
     return ret;
 }
Example #13
0
 public ReturnSet Coolant_Temperature()
 {
     ReturnSet ret = new ReturnSet();
     ret.RawValue = GetCmd("0105");
     ret.result = "";
     ret.name = "     Coolant Temperature";
     return ret;
 }
Example #14
0
 public ReturnSet Calculated_Load_Value()
 {
     ReturnSet ret = new ReturnSet();
     ret.RawValue = GetCmd("0104");
     ret.result = "";
     ret.name = "   Calculated Load Value";
     return ret;
 }
Example #15
0
 public ReturnSet Secondary_Air_Status()
 {
     ReturnSet ret = new ReturnSet();
     ret.RawValue = GetCmd("0112");
     ret.result = "";
     ret.name = "    Secondary Air Status";
     return ret;
 }
Example #16
0
 public ReturnSet Intake_Air_Temp()
 {
     ReturnSet ret = new ReturnSet();
     ret.RawValue = GetCmd("010F");
     ret.result = String.Format("{0}", (ret.RawValue - 40) );
     ret.name = "         Intake Air Temp";
     return ret;
 }
Example #17
0
 public ReturnSet Short_Term_Fuel_Trim_2()
 {
     ReturnSet ret = new ReturnSet();
     ret.RawValue = GetCmd("0108");
     ret.result = "";
     ret.name = "    Short Term Fuel Trim";
     return ret;
 }
Example #18
0
 public ReturnSet Intake_Manifold_Pressure()
 {
     ReturnSet ret = new ReturnSet();
     ret.RawValue = GetCmd("010B");
     ret.result = "";
     ret.name = "Intake Manifold Pressure";
     return ret;
 }
Example #19
0
 public ReturnSet Supported_PIDs()
 {
     ReturnSet ret = new ReturnSet();
     ret.RawValue = GetCmd("0100");
     ret.result =BitString( ParseOutBits(ret.RawValue));
     ret.name = "          Supported PIDs";
     return ret;
 }
Example #20
0
 public ReturnSet Location_of_O2_sensors_2()
 {
     ReturnSet ret = new ReturnSet();
     ret.RawValue = GetCmd("011D");
     ret.result = "";
     ret.name = "  Location of O2 sensors";
     return ret;
 }
Example #21
0
 public ReturnSet Time_Since_Engine_Start()
 {
     ReturnSet ret = new ReturnSet();
     ret.RawValue = GetCmd("011F");
     ret.result = "";
     ret.name = " Time Since Engine Start";
     return ret;
 }
Example #22
0
 public ReturnSet Long_Term_Fuel_Trim_2()
 {
     ReturnSet ret = new ReturnSet();
     ret.RawValue = GetCmd("0109");
     ret.result = "";
     ret.name = "     Long Term Fuel Trim";
     return ret;
 }
Example #23
0
 /// <summary>
 /// Vehicle speed.
 /// Value / 1.609 not sure why though
 /// </summary>
 /// <returns></returns>
 public ReturnSet Vehicle_Speed()
 {
     ReturnSet ret = new ReturnSet();
     ret.RawValue = GetCmd("010D");
     ret.result = String.Format("{0} MPH?",ret.RawValue/1.609);
     ret.name = "           Vehicle Speed";
     return ret;
 }
Example #24
0
 public ReturnSet Air_Flow_Rate_MAF()
 {
     ReturnSet ret = new ReturnSet();
     ret.RawValue = GetCmd("0110");
     ret.result = "";
     ret.name = "     Air Flow Rate (MAF)";
     return ret;
 }