public ReturnSet OBD_Designation() { ReturnSet ret = new ReturnSet(); ret.RawValue = GetCmd("011C"); ret.result = ""; ret.name = " OBD Designation"; return ret; }
public ReturnSet O2_Sensor_1_3() { ReturnSet ret = new ReturnSet(); ret.RawValue = GetCmd("0116"); ret.result = ""; ret.name = " O2 Sensor: 1 - 3"; return ret; }
public ReturnSet O2_Sensor_2_4() { ReturnSet ret = new ReturnSet(); ret.RawValue = GetCmd("011B"); ret.result = ""; ret.name = " O2 Sensor: 2 - 4"; return ret; }
/// <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; }
public ReturnSet Aux_input_status() { ReturnSet ret = new ReturnSet(); ret.RawValue = GetCmd("011E"); ret.result = ""; ret.name = " Aux input status"; return ret; }
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; }
public ReturnSet Throttle_Position() { ReturnSet ret = new ReturnSet(); ret.RawValue = GetCmd("0111"); ret.result = ""; ret.name = " Throttle Position"; return ret; }
public ReturnSet Fuel_Rail_Pressure() { ReturnSet ret = new ReturnSet(); ret.RawValue = GetCmd("010A"); ret.result = ""; ret.name = " Fuel Rail Pressure"; return ret; }
public ReturnSet Fuel_System_Status() { ReturnSet ret = new ReturnSet(); ret.RawValue = GetCmd("0103"); ret.result = ""; ret.name = " Fuel System Status"; return ret; }
public ReturnSet Engine_RPM() { ReturnSet ret = new ReturnSet(); ret.RawValue = GetCmd("010C"); ret.result = ""; ret.name = " Engine RPM"; return ret; }
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; }
public ReturnSet DTC_Causing_Freeze_Frame() { ReturnSet ret = new ReturnSet(); ret.RawValue = GetCmd("0102"); ret.result = ""; ret.name = "DTC Causing Freeze Frame"; return ret; }
public ReturnSet Coolant_Temperature() { ReturnSet ret = new ReturnSet(); ret.RawValue = GetCmd("0105"); ret.result = ""; ret.name = " Coolant Temperature"; return ret; }
public ReturnSet Calculated_Load_Value() { ReturnSet ret = new ReturnSet(); ret.RawValue = GetCmd("0104"); ret.result = ""; ret.name = " Calculated Load Value"; return ret; }
public ReturnSet Secondary_Air_Status() { ReturnSet ret = new ReturnSet(); ret.RawValue = GetCmd("0112"); ret.result = ""; ret.name = " Secondary Air Status"; return ret; }
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; }
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; }
public ReturnSet Intake_Manifold_Pressure() { ReturnSet ret = new ReturnSet(); ret.RawValue = GetCmd("010B"); ret.result = ""; ret.name = "Intake Manifold Pressure"; return ret; }
public ReturnSet Supported_PIDs() { ReturnSet ret = new ReturnSet(); ret.RawValue = GetCmd("0100"); ret.result =BitString( ParseOutBits(ret.RawValue)); ret.name = " Supported PIDs"; return ret; }
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; }
public ReturnSet Time_Since_Engine_Start() { ReturnSet ret = new ReturnSet(); ret.RawValue = GetCmd("011F"); ret.result = ""; ret.name = " Time Since Engine Start"; return ret; }
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; }
/// <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; }
public ReturnSet Air_Flow_Rate_MAF() { ReturnSet ret = new ReturnSet(); ret.RawValue = GetCmd("0110"); ret.result = ""; ret.name = " Air Flow Rate (MAF)"; return ret; }