Arduino-based OBD-II Interface and Data Logger. CS 497 Independent Study Ryan Miller Advisor: Prof. Douglas Comer April 26, 2011

Size: px
Start display at page:

Download "Arduino-based OBD-II Interface and Data Logger. CS 497 Independent Study Ryan Miller Advisor: Prof. Douglas Comer April 26, 2011"

Transcription

1 Arduino-based OBD-II Interface and Data Logger CS 497 Independent Study Ryan Miller Advisor: Prof. Douglas Comer April 26, 2011

2 Arduino Hardware Automotive OBD ISO Interface Software Arduino Italy 2005 ATmega328 microcontroller 14 digital I/O pins 16 MHz clock speed 32 KB memory About $30 online Data Conclusions

3 Arduino Program sketches in Multi-platform Javabased IDE Code in C/C++ Serial Communication (currently USB)

4 Arduino Hardware Automotive OBD ISO Interface Software Hardware Goals of this project: Communicate with an automotive engine control unit (ECU) via the Arduino Gather and record instantaneous data that is reported by the vehicle Data Conclusions?

5 Hardware Vehicles produced in the U.S. after 1996 are required to have an OBD-II (on-board diagnostic) connector

6 Hardware OBD-II Interface Very simple connection for most applications Most important pins K-Line Ground +12V

7 Hardware Open-source project called OBDuino offered the interface schematic (which is fortunate, because I am not an EE major)

8 Hardware Open-source project called OBDuino offered the interface schematic (which is fortunate, because I am not an EE major)

9 Hardware Freescale MC33290 handles the tricky parts K-Line, Ground, and +12V go in Serial Tx/Rx come out

10 Hardware OBD-II

11 Arduino Hardware Automotive OBD ISO Interface Software Software A few functions to perform: Initialize ISO connection Request data from vehicle s ECU Display the result on the LCD and record the value to retrieve later Data Conclusions

12 Software Initialization: Starts by bit-banging 0x33 at 5 baud i.e ms pause = 1.6 seconds

13 Software Initialization: Starts by bit-banging 0x33 at 5 baud Code: byte b = 0x33; for (byte mask = 0x01; mask; mask <<= 1) { if (b & mask) // Choose bit digitalwrite(k_out, HIGH); // Send 1 else digitalwrite(k_out, LOW); // Send 0 } delay(200);

14 Software Then you can start 10.4 kbps communication and perform these steps to finish initialization:

15 Software Parameter IDs (PIDs) SAE J1979 standard Examples: PID Bytes Description Formula 0x0C 2 Engine RPM ((A*256)+B)/4 0x0D 1 Vehicle Speed (km/h) A 0x11 1 Throttle Position (%) A*100/255 0x3F 2 Catalyst Temp (B2, S2) ((A*256)+B)/10-40

16 Software Steps: 1. Request PID with hex value 2. Continuously read data from ISO until successful checksum or timeout 3. Convert returned value with formula 4. Display / record value and repeat

17 Software 1. Request PID with hex value byte message[6]; Index Value Description 0 0x68 SAE J1979 standard 1 0x6A OBD-II request 2 0xF1 Off-board tool 3 0x01 Mode 1 PIDs 4 pid Hex value for PID requested 5 Checksum Computed from message for (int i = 0; i < 6; i++) iso_write_byte(message[i]);

18 Software 2. Continuously read data from ISO until successful checksum or timeout byte buf[11]; Byte(s) Description 0 Message Header 1 1 Message Header 2 2 Source Address 3 9 Data (up to 7 bytes) Final byte Checksum

19 Software 3. Convert returned value with formula ie.: PID Bytes Description Formula 0x0C 2 Engine RPM ((A*256)+B)/4 double rpm; rpm = ((double)buf[0] * 256) + (double)buf[1]) / 4.0;

20 Software 4. Record/display value and repeat Displaying on an LCD screen: LiquidCrystal lcd; lcd.print(rpm);

21 Software 4. Record/display value and repeat Writing to an SD card: File log; log.print(rpm);

22 Software One last note on PIDs PID Bytes Description Formula 0x10 2 Mass Air Flow Rate ((A*256)+B)/100 This gives you the rate of air in grams / second

23 Software You can convert g air s into gal gasoline h And then use vehicle speed to convert to miles gal gasoline or MPG

24 Arduino Hardware Automotive OBD ISO Interface Software Data Conclusions Data Scanned four PIDs over a 20-minute interval every 1-2 seconds Vehicle Speed Engine RPM Engine Coolant Calculated MPG

25 Data mph

26 Data mph rpm

27 Data C

28 Data C mph

29 Arduino Hardware Automotive OBD ISO Interface Software Data Conclusions Conclusions Embedded computing is ubiquitous Massive amounts of data generated by everyday machines Elec. Engineering and CS can come together to make some pretty cool things

30 Questions?

ALM-Inline. Accurate Lambda Meter V1.1.2 COPY RIGHTS ECOTRONS LLC ALL RIGHTS RESERVED.

ALM-Inline. Accurate Lambda Meter V1.1.2 COPY RIGHTS ECOTRONS LLC ALL RIGHTS RESERVED. ALM-Inline Accurate Lambda Meter V1.1.2 COPY RIGHTS ECOTRONS LLC ALL RIGHTS RESERVED Http://www.ecotrons.com Note: If you are not sure about any specific details, please contact us at info@ecotrons.com.

More information

Diagnostic Report. Monitor Status Report. Page 1 of 12. Date: 12/18/2016 9:17:03 PM

Diagnostic Report. Monitor Status Report. Page 1 of 12. Date: 12/18/2016 9:17:03 PM file:///c:/users/rbirkenholz/app/local/microsoft/windows/temporary%20internet... Page 1 of 12 Diagnostic Report Created by OBDLink - OBD Solutions www.obdsoftware.net Date: 12/18/2016 9:17:03 PM VIN: 1D8HB58287F580896

More information

ELM327 OBD to RS232 Interpreter

ELM327 OBD to RS232 Interpreter OBD to RS232 Interpreter Description Almost all new automobiles produced today are required, by law, to provide an interface from which test equipment can obtain diagnostic information. The data transfer

More information

ECUSimLite System User Manual

ECUSimLite System User Manual 1 ECUSimLite System User Manual Table of contents 2 1. Introduction 3 1.1. Modes 3 1.2. Kit Contents 3 2. ECUSimLite Block Diagram 4 2.1. Connection Sequence 4 2.2. Getting Started 5 2.2.1. Set Range 6

More information

CAN-bus. Scanning of diagnostic trouble codes via OBD-II connector

CAN-bus. Scanning of diagnostic trouble codes via OBD-II connector CAN-bus. Scanning of diagnostic trouble codes via OBD-II connector 2016 Contents Necessary tools, devices, materials... 2 General information... 4 Connection of the terminal to a diagnostic connector...

More information

Application Note: CANBus Commissioning

Application Note: CANBus Commissioning Application Note: CANBus Commissioning Scope AT220B, AT240, AT110 Overview Our devices can be connected to the CANBus network in a vehicle to obtain information from the electronic control units that communicate

More information

ELM327 OBD to RS232 Interpreter

ELM327 OBD to RS232 Interpreter OBD to RS232 Interpreter Description Almost all new automobiles produced today are required, by law, to provide an interface from which test equipment can obtain diagnostic information. The data transfer

More information

Service Bulletin Buses

Service Bulletin Buses Prevost Saint-Nicolas, Quebec, Canada Service Bulletin Buses Date Group No. Release Page 6.2010 364 00 1(12) Vehicle Electronic Control Unit (VECU) MID 144, Diagnostic Trouble Code (DTC), Guide Vehicle

More information

Testing Expo Comparison of OBD II Scan-Tool diagnostics for light-duty vehicles and heavy-duty trucks. Peter Stoß Director RA Automotive

Testing Expo Comparison of OBD II Scan-Tool diagnostics for light-duty vehicles and heavy-duty trucks. Peter Stoß Director RA Automotive Comparison of OBD II Scan-Tool diagnostics for light-duty vehicles and heavy-duty trucks Peter Stoß Director RA Automotive RA Consulting GmbH Zeiloch 6a D-76646 Bruchsal Tel +49 (0)7251 3862-0 Fax +49

More information

Adaptive Cruise Control System Overview

Adaptive Cruise Control System Overview 5th Meeting of the U.S. Software System Safety Working Group April 12th-14th 2005 @ Anaheim, California USA 1 Introduction Adaptive Cruise System Overview Adaptive Cruise () is an automotive feature that

More information

Sensing the position of throttle valve using Throttle Position Sensor

Sensing the position of throttle valve using Throttle Position Sensor Sensing the position of throttle valve using Throttle Position Sensor Nikita Dhenge 1, Krupa Deth 2, S T Valujkar 3 1&2 (National Institute of Electronics and Information Technology, Aurangabad, India)

More information

Issue 2.0 December EPAS Midi User Manual EPAS35

Issue 2.0 December EPAS Midi User Manual EPAS35 Issue 2.0 December 2017 EPAS Midi EPAS35 CONTENTS 1 Introduction 4 1.1 What is EPAS Desktop Pro? 4 1.2 About This Manual 4 1.3 Typographical Conventions 5 1.4 Getting Technical Support 5 2 Getting Started

More information

Cat Electronic Technician 2016C v1.0 Product Status Report 3/6/ :16 AM

Cat Electronic Technician 2016C v1.0 Product Status Report 3/6/ :16 AM Cat Electronic Technician 2016C v1.0 Product Status Report 3/6/2017 10:16 AM Product Status Report Parameter Product ID Equipment ID Comments Value PAC01146 Monitor Parameter Value ECM Serial Number 067E0525EE

More information

AiM Infotech. AiM Sequential CAN+UART protocol. Release 1.00

AiM Infotech. AiM Sequential CAN+UART protocol. Release 1.00 AiM Infotech AiM Sequential CAN+UART protocol Release 1.00 1 AiM proprietary sequential protocol AiM has designed and developed two proprietary sequential protocols: AIM/PROT_CAN AIM/PROT_UART They are

More information

ZT-USB Series User Manual

ZT-USB Series User Manual ZT-USB Series User Manual Warranty Warning Copyright All products manufactured by ICP DAS are under warranty regarding defective materials for a period of one year, beginning from the date of delivery

More information

SentryGOLD Fully-Automated Fuel Management System

SentryGOLD Fully-Automated Fuel Management System SentryGOLD Fully-Automated Fuel Management System Trak s SentryGOLD Fully Automated Fuel Management System provides the highest level of security for your fleet and the highest level of accuracy for your

More information

QLS+ RC Series NEW QUALITY & LEVEL SENSOR (QLS+): ALL IN ONE SOLUTION FOR DIESEL EXHAUST FLUID (DEF) / ADBLUE TANK

QLS+ RC Series NEW QUALITY & LEVEL SENSOR (QLS+): ALL IN ONE SOLUTION FOR DIESEL EXHAUST FLUID (DEF) / ADBLUE TANK NEW QUALITY & LEVEL SENSOR (QLS+): ALL IN ONE SOLUTION FOR DIESEL EXHAUST FLUID () / ADBLUE TANK / AdBlue level o Continuous measurement based on Magneto Resistive (MR) Technology / AdBlue temperature

More information

EV Powercharger CAN protocol

EV Powercharger CAN protocol Created Last saved Printed evision Document No. Prepared by Approved by 2010-02-18 2010-07-02 2011-02-22 1 2086930 Stian Abelsen Arild Sagebø EV Powercharger CAN protocol Table of contents 1 CAN... 3 1.1

More information

USING OF dspace DS1103 FOR ELECTRIC VEHICLE POWER CONSUMPTION MODELING

USING OF dspace DS1103 FOR ELECTRIC VEHICLE POWER CONSUMPTION MODELING USING OF dspace DS1103 FOR ELECTRIC VEHICLE POWER CONSUMPTION MODELING T. Haubert, J. Bauer, P. Mindl Czech Technical University in Prague, Faculty of El. Engineering, Dept. of El. Drives and Traction

More information

Build Your Own Hive Monitor

Build Your Own Hive Monitor Build Your Own Hive Monitor By Nick Lambert 18/09/2017 Page No. 1 www.oldmanortwyning.co.uk Nick Lambert Why build a Hive Monitor? To learn more about your bees and how their hive environment is controlled.

More information

SSI Technologies Application Note AT-AN6 Acu-Trac Off Vehicle Applications and Fuel Data Messaging. Table of Contents

SSI Technologies Application Note AT-AN6 Acu-Trac Off Vehicle Applications and Fuel Data Messaging. Table of Contents Table of Contents Section Description Page 1 Introduction 4 2 Applications 4 2.1 Fuel Purchase Optimization Application 6 2.1.2 Process with Acu-Trac Fuel Level Sensor 7 2.1.3 Closing the Fuel Optimization

More information

5 FEATURES DDEC FOR MBE900 AND MBE4000

5 FEATURES DDEC FOR MBE900 AND MBE4000 DDEC FOR MBE900 AND MBE4000 5 FEATURES Section Page 5.1 ANTI-LOCK BRAKE/AUTOMATIC TRACTION CONTROL SYSTEMS.. 5-5 5.2 COLD START... 5-7 5.3 CRUISE CONTROL... 5-11 5.4 DIAGNOSTICS... 5-19 5.5 DUAL SPEED

More information

INDEX. 1.Safety Precautions and Warnings...3

INDEX. 1.Safety Precautions and Warnings...3 INDEX 1.Safety Precautions and Warnings...3 2. General Information...5 2.1 On-Board Diagnostics (OBD) II... 5 2.2 Diagnostic Trouble Codes (DTCs)... 6 2.3 Location of the Data Link Connector (DLC)...7

More information

Cat Electronic Technician 2017A v1.0 Product Status Report 7/10/2017 9:49 AM

Cat Electronic Technician 2017A v1.0 Product Status Report 7/10/2017 9:49 AM Cat Electronic Technician 2017A v1.0 Product Status Report 7/10/2017 9:49 AM Product Status Report Product ID Comments ELIAS MARIN C18 772 (TXH00900) Engine Serial Number TXH00900 ECM Part Number 2622879-01

More information

Caterpillar Electronic Technician 2012C v1.0 Product Status Report 11/23/2013 2:25 PM

Caterpillar Electronic Technician 2012C v1.0 Product Status Report 11/23/2013 2:25 PM Page 1 of 13 Caterpillar Electronic Technician 2012C v1.0 Product Status Report 2:25 PM Product Status Report Product ID Comments Implement Control #2 Product ID ECM Part Number 3045687-01 19086375MS ECM

More information

DIAGNOSTIC REPORT. Vehicle Components. Engine Cummins 15.0L ISX B0 BAC Brakes Bendix EC-60 Advanced ABS P

DIAGNOSTIC REPORT. Vehicle Components. Engine Cummins 15.0L ISX B0 BAC Brakes Bendix EC-60 Advanced ABS P Page 1 of 5 Vehicle s Serial Number Software Version Network Engine Cummins 15.0L ISX1 79367509 03684275 05069157 012610210802 08000065 B0 BAC Brakes Bendix EC-60 Advanced ABS P230800301 BB40999 BB41033,

More information

Table of Contents 1. INTRODUCTION GENERAL INFORMATION-ABOUT OBDII/EOBD PRODUCT DESCRIPTIONS OPERATIONS...11

Table of Contents 1. INTRODUCTION GENERAL INFORMATION-ABOUT OBDII/EOBD PRODUCT DESCRIPTIONS OPERATIONS...11 Table of Contents 1. INTRODUCTION...1 2. GENERAL INFORMATION-ABOUT OBDII/EOBD...1 2.1 ON-BOARD DIAGNOSTICS (OBD) II...1 2.2 DIAGNOSTIC TROUBLE CODES (DTCS)...2 2.3 LOCATION OF THE DATA LINK CONNECTOR (DLC)...3

More information

SHARKY 775 COMPACT ENERGY METER ULTRASONIC

SHARKY 775 COMPACT ENERGY METER ULTRASONIC APPLICATION The ultrasonic compact energy meter can be used for measuring the energy consumption in heating / cooling application for billing purposes. FEATURES 4 Approval for ultrasonic meter with dynamic

More information

Energy Harvesting Platform

Energy Harvesting Platform Energy Harvesting Platform Group 8 S A N JAY K H E ML A NI T R AV I S B A D A L L K I A R A R O D R I G U EZ M I C H A EL L I N EE EE EE EE Motivation Non-renewable energy sources harm the environment

More information

RS232. CAN. Integration with Tachograph Continental VDO DTCO

RS232. CAN. Integration with Tachograph Continental VDO DTCO RS232. CAN. Integration with Tachograph Continental VDO DTCO User Manual www.galileosky.com Contents Necessary Tools, Equipment and Materials... 3 General Information... 4 Connecting tachograph to the

More information

Technical Service Information Bulletin

Technical Service Information Bulletin Technical Service Information Bulletin August 4, 2003 Title: Models: 02 03 ES 300 & 04 05 ES 330 REVISION NOTICE: April 1, 2005: 2004 2005 model year ES 330 vehicles have been added to Applicable Vehicles.

More information

IDST (Isuzu Diagnostic Service Tool) User Guide Table of Contents

IDST (Isuzu Diagnostic Service Tool) User Guide Table of Contents IDST (Isuzu Diagnostic Service Tool) User Guide Table of Contents 1. Precautions 2. IDST Parts Battery Cable USB Cable Module and DLC 3. Using the Tool Select Engine DTC Readout DTC Clear Set IDST Options

More information

Controller Area Network

Controller Area Network Controller Area Network Projects with ARM and Arduino Prof Dr Dogan Ibrahim Near East University an Elektor Publication LEARN DESIGN SHARE Contents Contents Preface.... 13 Chapter 1 Automotive Bus Systems...

More information

Additional Instructions MHC-1 J1939

Additional Instructions MHC-1 J1939 Page 1 of 7 / 14.06.13 Additional Instructions MHC-1 J1939 Contents 1. Quick Start Guide... 2 2. Network Management... 2 2.1 Device Name... 2 2.2 CAN-Identifier... 2 3. EasyCom J1939... 3 3.1 System requirements...

More information

Alternative Fuel Engine Control Unit

Alternative Fuel Engine Control Unit 1999 Chevrolet/Geo Cavalier (CNG) Alternative Fuel Engine Control Unit Table 1: AF ECU Function Parameters The (AF ECU) controls alternative fuel engine operation. The control unit monitors various engine

More information

IT IT R&D R&D Gl Glo Gl ba b l L ea L der d Idle Stop Technologies using ICT for high gas mileage Dr. Myunghee Son Nov.

IT IT R&D R&D Gl Glo Gl ba b l L ea L der d Idle Stop Technologies using ICT for high gas mileage Dr. Myunghee Son Nov. IT R&D Global l Leader Idle Stop Technologies using ICT for high gas mileage Dr. Myunghee Son Nov. 6 th, 2008 Outline Idle Stop Vehicle Proactive Idle Stop Vehicle Proactive Idle Stop Architecture Proactive

More information

The FLEX processes valuable vehicle data

The FLEX processes valuable vehicle data The independent solution for advanced fleet management: obtain the desired CAN, J1708, K-line or ISO 11992 parameters from every vehicle in the fleet and send the data in standardized form to your telematics

More information

Based Development of a PC and Smartphone Based Wireless Automobile Diagnostic System

Based Development of a PC and Smartphone Based Wireless Automobile Diagnostic System Based Development of a PC and Smartphone Based Wireless Automobile Diagnostic System Selvaraj D 1, Arulkumar D 2, Dhinakaran D 3 Professor, Department of Electronics and Communication Engineering, Panimalar

More information

CANBUS device reconfigure

CANBUS device reconfigure CANBUS device reconfigure Download CoolTerm from here: http://freeware.the-meiers.org/ Use CoolTerm to communicate with the Canbus device via serial port. Go into Options menu, and select a baud rate of

More information

INDEX: Eight Gauge Instrument Cluster: TM2 Code Page Description Number

INDEX: Eight Gauge Instrument Cluster: TM2 Code Page Description Number Affects: All models with EPA 2010 Engines Related: Engine Electronics (129) Electronic Engine Display (PKX) Air Restriction Indicator (PVX) INDEX: Eight Gauge Instrument Cluster: TM2 Code 571016 Page Description

More information

OBD2DISPLAY MANUAL. 195 mm Length, 81 mm Width, 32 mm Height, OBDII connector + cable 1500 mm

OBD2DISPLAY MANUAL. 195 mm Length, 81 mm Width, 32 mm Height, OBDII connector + cable 1500 mm OBD2DISPLAY MANUAL 1. SAFETY PRECAUTIONS AND WARNINGS To prevent personal injury or damage to vehicles or the car tool, read this instruction manual first and observe the following safety precautions.

More information

Collision Avoidance System CAS-M light. Manual

Collision Avoidance System CAS-M light. Manual Collision Avoidance System CAS-M light Manual V 1.10, 2/14/2017 Table of Contents Table of contents 1 System Overview... 3 1.1 Function principle... 3 1.2 Hardware... 3 1.3 Wiring... 4 1.4 CAN communication...

More information

WTEC III SHIFT SELECTOR

WTEC III SHIFT SELECTOR WTEC III SHIFT SELECTOR P.O. Box 894, Speed Code PF3 Indianapolis, Indiana 46206-0894 www.allisontransmission.com Oil level information, diagnostic codes and prognostic features for SA7297EN (2012/12)

More information

Motronic MS Electronic design. Functionality. Mechanical data. Conditions for use

Motronic MS Electronic design. Functionality. Mechanical data. Conditions for use Motronic MS 1.10 The MS 1.10 is a highly sophisticated engine management system for high performance engines. The system contains 12 ignition power stages and 24 independent injection power stages. All

More information

Vehicle Anti-Theft Hand Brake System Using Finger- Print Scanner

Vehicle Anti-Theft Hand Brake System Using Finger- Print Scanner Vehicle Anti-Theft Hand Brake System Using Finger- Print Scanner Dipender Gahlaut 1, Manish Kumar 2 1,2 Student, Dronacharya College of Engineering, Gurgaon, Haryana (NCR), India Abstract- Vehicle theft

More information

Preliminary Design Report. Project Name: Digital Dashboard. Team Name: Uncensored Sensors

Preliminary Design Report. Project Name: Digital Dashboard. Team Name: Uncensored Sensors EEL 4924 Electrical Engineering Design (Senior Design) Preliminary Design Report 25 January 2011 Project Name: Digital Dashboard Team Name: Uncensored Sensors Team Members: Name: Matthew Greenberg Email:

More information

Build Manual. for Studying Electrical Conductivity using a 3D Printed 4-Point Probe Station

Build Manual. for Studying Electrical Conductivity using a 3D Printed 4-Point Probe Station Build Manual for Studying Electrical Conductivity using a 3D Printed 4-Point Probe Station 1 Materials 1. 3D printed parts Head support Trigger Front Probe head panel Right panel Middle panel Left panel

More information

Caterpillar Electronic Technician 2012A v1.0 Product Status Report 9/23/2013 2:35 PM

Caterpillar Electronic Technician 2012A v1.0 Product Status Report 9/23/2013 2:35 PM Page 1 of 7 Caterpillar Electronic Technician 2012A v1.0 Product Status Report 2:35 PM Product Status Report Parameter Value Equipment ID 740 Comments C15 740 (LHX10244) Parameter Value Equipment ID 740

More information

AFP TM EAC Electrical Rotary Actuator

AFP TM EAC Electrical Rotary Actuator AFP TM EAC Electrical Rotary Actuator Features : All in one box design. Programable. Use for two or multiposition rotary valve. Eliminate side loading on rotor seal. Only rotational force transmitted to

More information

USER GUIDE incardoc ios

USER GUIDE incardoc ios USER GUIDE incardoc ios OVERVIEW Use Smartphone for Quick View of the Car and Engine Main Parameters: Read real-time parameters: speed, rotation, timings, economy Read diagnostic trouble codes Clean trouble

More information

DASH RETRIEVED FAULT CODES C ONVENTIONAL FS65 SAF T LINER C2, C2E H YBRID SAF T LINER HDX, HD, ER SAF T LINER EF, EFX A LL Y EARS

DASH RETRIEVED FAULT CODES C ONVENTIONAL FS65 SAF T LINER C2, C2E H YBRID SAF T LINER HDX, HD, ER SAF T LINER EF, EFX A LL Y EARS DASH RETRIEVED FAULT CODES C ONVENTIONAL FS65 SAF T LINER C2, C2E H YBRID SAF T LINER HD, HD, ER SAF T LINER EF, EF A LL Y EARS PAGE INTENTIONALLY LEFT BLANK TABLE OF CONTENTS EARLY PRODUCTS: J1587/J1708

More information

The next generation car to smartphone technology is here. Kiwi 3 User Manual V1.0.6

The next generation car to smartphone technology is here. Kiwi 3 User Manual V1.0.6 The next generation car to smartphone technology is here. Kiwi 3 User Manual V1.0.6 Contents Setup... 2 1. Locate your car s OBDII port and plug in Kiwi 3...2 2. Launch your favorite app and enjoy...2

More information

Embedded System Based On Board Diagnostic (OBD) Tool for Vehicle Management and Safety

Embedded System Based On Board Diagnostic (OBD) Tool for Vehicle Management and Safety Embedded System Based On Board Diagnostic (OBD) Tool for Vehicle Management and Safety 1 A.Sriramnath, 2 Mrs.Kolangiammal.S 1 Post Graduate Scholar (Embedded System Technology), 2 Assistant Professor 1

More information

X11CA-IM MASTER MODULE

X11CA-IM MASTER MODULE X11CA-IM MASTER MODULE (Firmware: X11-MF3 Rev. 3) REVISION : 2.0 DOCUMENT NUMBER : X11CA-3000-IOM DATE : April 21, 2003 EDITOR : Nana Lee Ronan Engineering Company APPROVED : Kevin Safayieh 4/23/03 Project

More information

With PRO+ Datalogger:- Lambda (Air/Fuel Ratio)* Turbo Boost* Brake Pressure Front & Rear +Brake Bias*

With PRO+ Datalogger:- Lambda (Air/Fuel Ratio)* Turbo Boost* Brake Pressure Front & Rear +Brake Bias* DD2-SS 240MM Ø Steering Wheel display & Datalogging system 240mm Diameter steering wheel supplied with quick release boss and spline. (Paddles not included) Datalogger Front 109mm (W) x 35mm (H) x 121mm

More information

OBD2 ECU Simulator. User Manual IMSB5010.

OBD2 ECU Simulator. User Manual IMSB5010. OBD2 ECU Simulator User Manual http://www.imsapp.com Modes MODE 01:Show current data MODE 02:Show freeze frame data MODE 03:Show stored Diagnostic Trouble Codes MODE 04:Clear Diagnostic Trouble Codes and

More information

Automated Seat Belt Switch Defect Detector

Automated Seat Belt Switch Defect Detector pp. 10-16 Krishi Sanskriti Publications http://www.krishisanskriti.org/publication.html Automated Seat Belt Switch Defect Detector Department of Electrical and Computer Engineering, Sri Lanka Institute

More information

How-To Convert a W8 Cluster for Use in a MKIV TDI By Greg Menounos

How-To Convert a W8 Cluster for Use in a MKIV TDI By Greg Menounos How-To Convert a W8 Cluster for Use in a MKIV TDI By Greg Menounos I didn t discover much of this information myself. Most of it is scattered across various threads on TDIClub and VWVortex. I just pulled

More information

IFC-BL02 Interface Free Controller Brushless Motor Card

IFC-BL02 Interface Free Controller Brushless Motor Card IFC-BL02 Interface Free Controller Brushless Motor Card User s Manual V1.1 Apr 2008 Information contained in this publication regarding device applications and the like is intended through suggestion only

More information

Owner s Manual. MG2000 Speedometer IS0211. for use with SmartCraft Tachometer

Owner s Manual. MG2000 Speedometer IS0211. for use with SmartCraft Tachometer Owner s Manual MG2000 Speedometer for use with SmartCraft Tachometer IS0211 rev. E ecr#6395 08/2006 4/5/05 Changes 12/21 Index Description Available Functions for display page 1 Default Screens page 1

More information

MARELLI MF4 Toyota ECU

MARELLI MF4 Toyota ECU MARELLI MF4 Toyota ECU INTRODUCTION AIM has developed special applications for many of the most popular ECUs; by special applications we mean user-friendly systems which allow to easily connect your ECU

More information

2008 F-Super Duty Workshop Manual

2008 F-Super Duty Workshop Manual Page 1 of 22 SECTION 501-14: Handles, Locks, Latches and Entry Systems 2008 F-Super Duty 250-550 Workshop Manual DIAGNOSIS AND TESTING Procedure revision date: 10/14/2009 Locks, Latches and Entry Systems

More information

SAFETY PRECAUTIONS. Warning: Read and understand all instructions in this. Electrical. Use and Care

SAFETY PRECAUTIONS. Warning: Read and understand all instructions in this. Electrical. Use and Care A1 SAFETY PRECAUTIONS Warning: Read and understand all instructions in this manual. Use appropriate personal safety equipment including hearing and eye protection when using the scanner in or near the

More information

Your smartphone is now a powerful automotive tool.

Your smartphone is now a powerful automotive tool. Your smartphone is now a powerful automotive tool. Kiwi 2+ Android User Manual V0.99 Contents Setup... 2 1. Locate your car s OBDII port and plug in Kiwi 2+... 2 2. Pair Kiwi 2+... 2 3. Launch your favorite

More information

ALLIGATOR sens.it sensor intelligent technology. The universal TPMS solution for professionals

ALLIGATOR sens.it sensor intelligent technology. The universal TPMS solution for professionals ALLIGATOR sens.it sensor intelligent technology The universal TPMS solution for professionals According to the European Union Vehicle Ordinance 661/2009, all vehicles in the classes M1/M1G (passenger vehicles/motor

More information

QLS-PL Series In Tank Urea Sensor

QLS-PL Series In Tank Urea Sensor All-in-one solution for DEF tank: Urea level (sensor length 300mm to 900mm) Urea temperature Urea concentration Detection of unauthorized fluids Urea suction line (with integrated filter) Urea return Tank

More information

PRODUCT REQUIREMENTS

PRODUCT REQUIREMENTS Model 622 Technical Specifications Page 1 of 6 GAS TURBINE AND JET ENGINE COMPONENT TESTING Mass Airflow Test Stand Model 622 Automatic Airflow Test Stand Dimensions: 67" H x 57" W x 42" D 1702mm H x 1448mm

More information

5 5 Supervisor Engine GE (Active) VS S720 10G SAL1313MAFM

5 5 Supervisor Engine GE (Active) VS S720 10G SAL1313MAFM PJCCRCORE 01#sh mod Mod Ports Card Type Model Serial No. 1 48 CEF720 48 port 10/100/1000mb Ethernet WS X6748 GE TX SAD091501Z0 5 5 Supervisor Engine 720 10GE (Active) VS S720 10G SAL1313MAFM 7 48 CEF720

More information

Mercury HP gas-turbine. January 2008

Mercury HP gas-turbine. January 2008 AMT Netherlands b.v. Heistraat 89 NL-571 HJ Helmond Netherlands/Holland Tel: int+31 492 54581 Fax: int+31 492 55379 Http: //www.amtjets.com Email: email@amtjets.com Mercury HP gas-turbine. January 28 E-start

More information

New System of Controlling Electric Car Using Concept of Accelerometer

New System of Controlling Electric Car Using Concept of Accelerometer International Conference on Innovative Trends in Electronics Communication and Applications 120 International Conference on Innovative Trends in Electronics Communication and Applications 2015 [ICIECA

More information

Holden VZ 3.6L ECU & Powertrain Interface Module Linking Instructions

Holden VZ 3.6L ECU & Powertrain Interface Module Linking Instructions Holden VZ 3.6L 2004-2006 ECU & Powertrain Interface Module Linking Instructions Contents Page In Brief PIM Replacement, ECM Replacement 2 VZ 3.6L System Overview 3 PIM Functions 4 PIM Location 4 ECM Functions

More information

Caterpillar Electronic Technician 2012C v1.0 Product Status Report 9/28/2017 8:32 AM

Caterpillar Electronic Technician 2012C v1.0 Product Status Report 9/28/2017 8:32 AM Page 1 of 8 Caterpillar Electronic Technician 2012C v1.0 Product Status Report 8:32 AM Product Status Report Comments C18 D9 (RHX01781) Engine Serial Number RHX01781 24556258JL Personality Module Part

More information

or, with the time and date option enabled using the CommFlags command:

or, with the time and date option enabled using the CommFlags command: GM05 Serial Interface Protocol The GM05 serial interface can operate in two modes: Mode 1 - This transmits a copy of the information on the GM05 display, in plain ASCII. No commands are accepted by the

More information

DTC Summaries. W5A-580 Transmission Control System 1998 MY

DTC Summaries. W5A-580 Transmission Control System 1998 MY DTC Summaries W5A-580 Transmission Control System 1998 MY OBD II MONITORING CONDITIONS: When testing for OBD II DTC reoccurrence, it can be determined if the Service Drive Cycle was of sufficient length

More information

DIAGNOSIS AND TESTING

DIAGNOSIS AND TESTING 204-04-1 Wheels and Tires 204-04-1 DIAGNOSIS AND TESTING Tire Pressure Monitoring System Special Tool(s) Vehicle Communication Module (VCM) and Integrated Diagnostic System (IDS) software with appropriate

More information

EMISSION CONTROL SYSTEM

EMISSION CONTROL SYSTEM WJ EMISSION CONTROL SYSTEM 25-1 EMISSION CONTROL SYSTEM CONTENTS page ON-BOARD DIAGNOSTICS 3.1L DIESEL ENGINE... 1 ON-BOARD DIAGNOSTICS 3.1L DIESEL ENGINE INDEX page GENERAL INFORMATION SYSTEM DESCRIPTION

More information

Declaration. EZ400 Diagnosis System

Declaration. EZ400 Diagnosis System Declaration 1. The manual is designed for the usage of EZ400, applying to EZ400 automotive diagnosis platform. No part of this manual allowed to be reproduced, stored in a retrieval system or transmitted,

More information

UniverSOL Charge Station

UniverSOL Charge Station UniverSOL Charge Station Group 17 Jonathan German Amy Parkinson John Curristan Brock Stoops Sponsored by Motivations Environmental Renewable Energy Carbon Emissions Power Demand Power Dependency Availability

More information

Connection. 1. Diagnostic socket 2. Adaptor 3. Main cable 4. PC-MAX main unit 5. PC 6. Wireless adaptor

Connection. 1. Diagnostic socket 2. Adaptor 3. Main cable 4. PC-MAX main unit 5. PC 6. Wireless adaptor PC MAX Wireless VCI Connection 1. Diagnostic socket 2. Adaptor 3. Main cable 4. PC-MAX main unit 5. PC 6. Wireless adaptor PC-MAX offers --Over 40 makes, 1,000 vehicle system coverage, --including CANbus

More information

USER S GUIDE. DHP PowrTuner User s Guide /21/2005 Page 1 of 137

USER S GUIDE. DHP PowrTuner User s Guide /21/2005 Page 1 of 137 USER S GUIDE DIGITAL HORSEPOWER INCORPORATED Page 1 of 137 2004, 2005 All rights reserved Digital Horsepower Incorporated Printed in the United States of America Digital Horsepower Incorporated 317 Nora

More information

9. Subaru Select Monitor

9. Subaru Select Monitor 9. A: OPERATION 1. HOW TO USE SUBARU SELECT MONI- TOR 1) Prepare the kit. CAUTION: Do not connect the scan tools except for Subaru Select

More information

Parts Certificate Certificate for a part of a measuring system for LOTW

Parts Certificate Certificate for a part of a measuring system for LOTW No. 107030 Wayne ixpay TX secure payment platform, a payment terminal (OPT) for cards Issued to Wayne Fueling Systems Sweden AB Hanögatan 10, SE-211 24 Malmö, Sweden In respect of (part of instrument)

More information

Cannondale Diagnostic Tool Manual

Cannondale Diagnostic Tool Manual Cannondale Diagnostic Tool Manual For vehicles (ATV & Motorcycles) equipped with the MC1000 Engine Management System Software CD P/N 971-5001983 Data Cable P/N 971-5001984 POTENTIAL HAZARD Running the

More information

PLCC-28 OE91C1110. KWP2000 simulator v Features

PLCC-28 OE91C1110. KWP2000 simulator v Features Features Compatible with ISO 14230-4 2.7 to 6V operating range MIL LED output Freeze Frame handling 10 ms Interbyte time Fixed or variable PIDs Multiple ECUs handling Slow init / fast init selection possible

More information

MARELLI SRA EDL8 ECU

MARELLI SRA EDL8 ECU MARELLI SRA EDL8 ECU INTRODUCTION AIM has developed special applications for many of the most popular ECUs; by special applications we mean user-friendly systems which allow to easily connect your ECU

More information

Orion BMS Purchasing Guide Rev. 1.2

Orion BMS Purchasing Guide Rev. 1.2 www.orionbms.com Orion BMS Purchasing Guide Rev. 1.2 Main Components... 2 Orion BMS Unit... 2 Current Sensor... 4 Thermistors... 5 CANdapter... 6 Wiring Harnesses... 7 Cell voltage tap wiring harnesses...

More information

PRODUCT REQUIREMENTS

PRODUCT REQUIREMENTS Model 644 Technical Specifications Page 1 of 9 GAS TURBINE AND JET ENGINE COMPONENT TESTING Mass Airflow Test Stand PRODUCT REQUIREMENTS Multiple manufacturers in the Aerospace industry required Airflow

More information

Rotel RSX-1065 RS232 HEX Protocol

Rotel RSX-1065 RS232 HEX Protocol Rotel RSX-1065 RS232 HEX Protocol Date Version Update Description February 7, 2012 1.00 Original Specification The RS232 protocol structure for the RSX-1065 is detailed below. This is a HEX based communication

More information

Vehicle Diagnostic Logging Device

Vehicle Diagnostic Logging Device UCCS SENIOR DESIGN Vehicle Diagnostic Logging Device Design Requirements Specification Prepared by Mackenzie Lowrance, Nick Hermanson, and Whitney Watson Sponsor: Tyson Hartshorn with New Planet Technologies

More information

Temperature Sensor. Positive + (to 5 volts.) Ground. To A0 To GND Signal. To 5v

Temperature Sensor. Positive + (to 5 volts.) Ground. To A0 To GND Signal. To 5v Temperature Sensor This system measures the change in temperature and converts it to a colorful thermometer using LEDs. The first time you run the sketch, you will use the serial monitor to find the lowest

More information

EPAS Desktop Pro Software User Manual

EPAS Desktop Pro Software User Manual Software User Manual Issue 1.10 Contents 1 Introduction 4 1.1 What is EPAS Desktop Pro? 4 1.2 About This Manual 4 1.3 Typographical Conventions 5 1.4 Getting Technical Support 5 2 Getting Started 6 2.1

More information

Dispenser Communication Error Codes for units containing the DeLaRue SDD-1700 feeders only

Dispenser Communication Error Codes for units containing the DeLaRue SDD-1700 feeders only 53 31.1.1 Dispenser Communication Error Codes for units containing the DeLaRue SDD-1700 feeders only 001 No acknowledgment received. 002 Command transmit time-out. 003 Command response receive time-out.

More information

AUDI ECU for A3, A4, TT (1800 cc) A6 ( cc)

AUDI ECU for A3, A4, TT (1800 cc) A6 ( cc) AUDI ECU for A3, A4, TT (1800 cc) A6 (1800-2000 cc) INTRODUCTION AIM has developed special applications for many of the most common ECUs: by special applications we mean user-friendly systems which allow

More information

RAM-Type Interface for Embedded User Flash Memory

RAM-Type Interface for Embedded User Flash Memory June 2012 Introduction Reference Design RD1126 MachXO2-640/U and higher density devices provide a User Flash Memory (UFM) block, which can be used for a variety of applications including PROM data storage,

More information

Car Jackers - Project Proposal CS 3992 (Spring 2012) Team members: Jeremy Bonnell Tong Wu

Car Jackers - Project Proposal CS 3992 (Spring 2012) Team members: Jeremy Bonnell Tong Wu Car Jackers - Project Proposal CS 3992 (Spring 2012) Team members: Jeremy Bonnell Tong Wu I. Functional Description The Car Jacker has 3 basic functions controlled via a wireless phone: the remote start/

More information

SHIFT SELECTOR OPERATION AND CODE MANUAL

SHIFT SELECTOR OPERATION AND CODE MANUAL SHIFT SELECTOR OPERATION AND MANUAL How to use the shift selector to read oil level and diagnostic codes on 3000/4000 Series Allison transmissions P.O. Box 894, Speed Code 462-470-PF3 Indianapolis, Indiana

More information

MISHIMOTO ENGINEERING REPORT

MISHIMOTO ENGINEERING REPORT MISHIMOTO ENGINEERING REPORT Testing the Mishimoto Test Vehicle: 1996 BMW M3 Objective: To make a performance radiator that is a direct fit into the 1992 1999 BMW E36 Testing conditions: Temperature range:

More information

Quick Installation Guide for X50 Plus Car OBD Multi-function instrument Product introductions

Quick Installation Guide for X50 Plus Car OBD Multi-function instrument Product introductions Quick Installation Guide for X50 Plus Car OBD Multi-function instrument Product introductions Appropriate models for products The product is suitable for standard OBD-II protocol compliant petrol and diesel

More information

ALM LSU ADV Manual. Accurate Lambda Meter With built-in LED display COPY RIGHTS ECOTRONS LLC ALL RIGHTS RESERVED.

ALM LSU ADV Manual. Accurate Lambda Meter With built-in LED display COPY RIGHTS ECOTRONS LLC ALL RIGHTS RESERVED. ALM LSU ADV Manual Accurate Lambda Meter With built-in LED display COPY RIGHTS ECOTRONS LLC ALL RIGHTS RESERVED Http://www.ecotrons.com Note: If you are not sure about any specific details, please contact

More information

University of New Hampshire: FSAE ECE Progress Report

University of New Hampshire: FSAE ECE Progress Report University of New Hampshire: FSAE ECE Progress Report Team Members: Christopher P. Loo & Joshua L. Moran Faculty Advisor: Francis C. Hludik, Jr., M.S. Courses Involved: ECE 541, ECE 543, ECE 562, ECE 633,

More information