3/29/2019
Posted by 
Jump to navigationJump to search

OBDuino is an open source trip computer design based on the Arduino platform. An OBDuino may be assembled and customised by an electronics hobbyist; it displays information such as instantaneous fuel economy (e.g. miles per gallon, L/100 km or kilometres per litre), engine tuning parameters etc. on an LCD.

OBDuino utilises the On-Board Diagnostics interface found in most modern cars.

Our examples were tested on Honda and Toyota vehicles. Remember you’ll need to have all of the DUE drivers installed and there is a tutorial on the arduino due website here. Make sure you have selected the proper board and port selected from Tools->Board->Arduino DUE Programming Port and Port->COMxx.

  • Arduino OBD-II Interface. The Arduino then switches into normal serial communication at 10.4kbps and waits for a return address of 0x55 from the ECU followed.
  • Freematics OBD-II Adapter for Arduino. Directly pluggable into vehicle’s OBD-II port; Serial data interface (UART or I2C). Like a CAN bus shield does and convert the more complicated CAN bus interface to simple serial UART interface which Arduino and most embedded systems are easy to access. The data connection is provided by adapter.

Features[edit]

  • Most OBD-II PIDs or derived values may be displayed. Common values include
    • Fuel: cost, used or remaining, wasted while idling, consumption, measured in mpg or l/100 km
    • Engine: load, RPM
    • Temperatures: coolant, air intake
    • Vehicle speed
    • Tank distance
    • Remaining distance that can be travelled on the current tank of fuel
    • Throttle position
    • Battery voltage
    • CAN status, for CAN protocol only, display TX and RX error
  • Displays instantaneous values, average, maximum and minimum values calculated per trip, per outing, or per tank of fuel
  • Menu system for configuring parameters
  • Relatively cheap compared to commercial alternatives
  • Customisable and extendable

OBDuino does not display or reset engine fault codes (which are available over the OBD interface).

Design[edit]

The key components of the design are:

  • A microcontroller. One of the various AVR-based Arduino kits is typically used for this, although one of several Atmel AVR microcontrollers may be used directly in a custom OBDuino circuit.
  • An interface to the car's management system, using the On-Board Diagnostics (OBD) connector found in most modern cars. This requires a cable and a circuit.[1] There are several variations of this circuit depending on the particular OBD protocol implemented:
    • ISO 9141/ISO 9141-2/ISO 14230, using Freescale MCZ33290EF
    • CAN, using MCP2515 and MCP2551
    • Generic (SAE J1850 PWM & VPW/ISO 9141/ISO 9141-2/ISO 14230/CAN protocols), using an ELM327 from ELM Electronics. Although this gives a more versatile trip computer compatible with most modern vehicles, the ELM327 chip adds significant cost to the circuit and requires a significant supporting circuit for different protocols. It removes the complexity of interpreting the various OBD protocols, or
    • STN1110 which is software compatible with the ELM327. Unfortunately, this IC is not pin-compatible with the ELM327, therefore the circuit would require some changes.
  • An LCD and three input buttons. A typical LCD is 2 rows x 16 characters or 4x20 character, based on the HD44780, with a circuit based on the mpguino circuit.[2]
  • Microcontroller code. This is a C++ program based on the Arduino framework, called a Sketch in Arduino terminology. This is loaded on the microcontroller over a USB or serial interface using the free Arduino integrated development environment.

Many Arduino-based projects have either custom printed circuit boards available which include the AVR microcontroller (removing the need for an Arduino board), or extension boards that contain the extra circuit and that plug directly into the standard Arduino circuit board. No such PCBs are available for the OBDuino as of September 2009.

Project[edit]

The OBDuino project was started in 2008 based on the MPGuino project, with the desire to simplify wiring to the vehicle, instead of using the standard OBD-II socket that does not directly wire to the vehicle's fuel injection system and digital vehicle speed sensor, and to access the wide range of engine management data available using OBD.

The project is centred on the discussion forum[3] on ecomodder.com and the wiki and code hosting[4] provided by Google code, project is released under the GPL license.

The main OBDuino thread[3] on the eccomoder forum was started by jmonroe on 1 June 2008 as a fork of MPGuino discussions.

Magister posted an OBDuino announcement[5] to the Arduino forum on 4 December 2008.

Jan 27, 2018 - PC Xbox 360 PSP. FIFA World Cup. How To Download FIFA World Cup 2006 Using Torrent. Germany 2006 [Eng]. 2010 FIFA World Cup South. Download fifa 2006 world cup torrent iso. May 5, 2018 - Download the FIFA World Cup Germany 2006 (Europe) ROM for Playstation 2/PS2. Filename: FIFA World Cup Germany 2006 (Europe) (En,Es. Feb 3, 2018 - FIFA World Cup Germany 2006 apk android for ppsspp cheats rom cso free download working on mobile and pc,Celebrating the 2006 FIFA. Dec 24, 2017 - Using nGlide with FIFA WC 98 [ citation needed] • Download newest version of and install it. • After you've installed both FIFA98 and nGlide,.

As of September 2009, the OBDuino32K code credits these developers:

Main coding/ISO/ELM: Frédéric (aka Magister on ecomodder.com)
LCD part: Dave (aka dcb on ecomodder.com), optimized by Frédéric
ISO Communication Protocol: Russ, Antony, Mike
Features: Mike, Antony
Bugs & Fixes: Antony, Frédéric, Mike

Interface

The 32K in the obduino32K name differentiates the code targeted at the Atmega328 with 32k flash memory (i.e. Arduino 2009) version from the Atmega168 16k (Arduino 2008) version.

Variations[edit]

  • An OBDuino variant[6] is described in the book Practical Arduino (2009) by Jonathan Oxer and Hugh Blemings.[7] Based on the Arduino Mega, the OBDuino is extended to log GPS and OBD data to a USB stick.
  • A Graphical OBD MPGuino[8] graphs values such as miles per gallon and OBD-II PIDs, etc., on a 128*64 pixel LCD.
  • OBDuino author Magister is working on a commercial prototype with a CAN-only protocol.[9]
Toyota Obd1 Serial Interface For Arduino

Related alternatives[edit]

  • Scangauge[10] is a commercial trip computer using the OBD interface. In addition to the trip-computer-style features in OBDuino, the Scangauge also includes features for displaying and resetting engine fault codes.
  • The mpguino[2] is another Arduino-based trip computer, and is mainly limited to fuel usage measurement. It may be used in any vehicle which has an electric fuel injection system and digital vehicle speed sensor. The mpguino links directly to these sensors so it doesn't require an OBD2 interface. It can report instant and tank MPG, remaining miles till the tank is empty etc. The mpguino is available in kit form from several suppliers.[11][12]
  • The SuperMID[13] is an enthusiast/hobbyist trip computer, designed originally for the Toyota Prius, although it may be used in any vehicle which has an electric fuel injection system and digital vehicle speed sensor.[14] The SuperMID interfaces directly to the engine ECU or sensors, rather than using a standard OBDII connector.
  • Bruce D. Lightner's entry[15] won[16] a 2004 Circuit Cellar design contest. Lightner's design uses an AVR microcontroller connected to an OBD-II interface to drive an analogue gauge displaying fuel consumption in mpg. This only implements the SAE J1850 VPW variant of the OBD-II protocol suite (so it only works with mostly GM cars that use VPW).
  • An OBD II Car Computer design[17] is described by NerdKits using their AVR-based microcontroller kit. This implements the SAE J1850 VPW variant of the OBD-II protocol suite (so it only works with certain cars that use VPW) and displays RPMs, Coolant Temperature, Vehicle Speed and Percent Throttle on an LCD. This is partly derived from Bruce D. Lightner's design.
  • OBD2-LCD is an AVR based OBD-II trip computer, designed by Florian Schäffer. It implements the ISO 9141 and ISO 14230 (KW 2000) OBD-II variants, with design and code published[18] and available in kit form. The new kit[19] supports CAN (ISO 15765) too.

See also[edit]

Toyota Obd1 Codes

  • ELM327 very common chip used in OBD interfaces

References[edit]

  1. ^'OBDuinoInterface - opengauge - OBDuino OBD2 cable and Interfaces - Open Source Fuel Efficiency Instrumentation - Google Project Hosting'. Code.google.com. Retrieved 2013-05-04.
  2. ^ ab'MPGuino'. EcoModder. Retrieved 2013-05-04.
  3. ^ ab'OBD MPGuino gauge - Fuel Economy, Hypermiling, EcoModding News and Forum'. EcoModder.com. Retrieved 2013-05-04.
  4. ^'code project'. Code.google.com. Retrieved 2013-05-04.
  5. ^'OBDuino, onboard diagnostic for your car - Arduino Forum'. Arduino.cc. Retrieved 2013-05-04.
  6. ^'OBDuino Mega - Fuel Economy, Hypermiling, EcoModding News and Forum'. EcoModder.com. Retrieved 2013-05-04.
  7. ^Oxer, Jonathan; Blemings, Hugh (2009). 'Chapter 15: Vehicle Telemetry Platform'. Practical Arduino: Cool Projects for Open Source Hardware. Apress. pp. 295–382.
  8. ^'Graphical OBD MPGuino - Arduino Forum'. Arduino.cc. Retrieved 2013-05-04.
  9. ^'OBDuino - Monitor your fuel consumption and retrieve OBD2 data and trouble codes'. Obduino.ca. Retrieved 2013-05-04.
  10. ^'Trip Computer + Digitial Gauges + ScanTools'. ScanGauge. Retrieved 2013-05-04.
  11. ^'MPGuino'. Spiffie.org. Archived from the original on 2012-10-06. Retrieved 2013-05-03.
  12. ^'MPGuino'. Fundamentallogic.com. Archived from the original on 2012-02-27. Retrieved 2013-05-03.
  13. ^'SuperMID M-1' (in Japanese). PriusDIY. November 13, 2005. Retrieved 2013-05-03. (English tr.)
  14. ^Yoshi (June 1, 2007). 'Fuel Efficiency Forum - Fuel Economy Gauge?'. Gas Savers. Retrieved 2013-05-04.
  15. ^Lightner, Bruce D. (June 30, 2004). 'AVR 2004 Design Contest - Entry A3805'(PDF). Circuit Cellar. Retrieved 2013-05-03.
  16. ^Lightner, Bruce D. (2005). 'A Fuel-Consumption Gauge for Your GM Car'(PDF). Circuit Cellar.
  17. ^'OBDii for KPW protocol'. Nerdkits.com
  18. ^'OBD2-LCD'. Blafusel.de. Retrieved 2013-05-04.
  19. ^'OBD2-LCD D'. Blafusel.de. Retrieved 2013-05-04.

External links[edit]

  • STN1110 emulates ELM327
  • Atmel AT90CAN microcontroller like ATmega328 with CAN support
  • OBD II ScanTool, Linux-based open source
  • OBD interface chips from ELM Electronics
Retrieved from 'https://en.wikipedia.org/w/index.php?title=OBDuino&oldid=861864697'
Hidden categories:

Read also: recent reviews, test drives, automotive trends and the latest news from the world of cars.

Arduino Serial Interface

  • Minivan market not what it used to be, but margins make up for it

    Residual values for last year's minivans are higher than they were in 2000. Much like the station wagon was the shuttle of Baby Boomer generation, the minivan has been the primary means of transport for Generations X and Y. Just as the boomers abandoned the Country Squire, though, those kids that were toted around in Grand Caravans and Windstars are adults, and they certainly don't want to be

  • The tumultuous history of the diesel engine

    Volkswagen, diesel's most enthusiastic patron, deceived everyone about the amount of emissions its cars were putting out. We have covered this latest massive automotive scandal in great detail, and there are surely more fascinating revelations to come. It turns out that this is just the latest episode in the epic story of the controversy and intrigue surrounding the diesel engine, and its Cable tv software free download.

  • Toyota turning landfill gas into hybrid vehicles, indirectly

    Chamillionaire certainly wasn't referring to the Toyota Avalon or Camry when he rapped about 'ridin' dirty' but maybe he'll change his tune soon. That's because some of the future energy sources for the Kentucky factory that makes those two models will come from gas created from the breakdown of solid waste. So the power behind some of the production at Toyota's largest North American factory

    Their first lineup consisted of Akhdiyat Duta Modjo (Vocals), Saktia Ari Seno (Guitar), Eross Candra (Guitar), Adam Muhammad Subarkah (Bass) and Anton Widiastanto (Drum). Sheila on 7 mp3.

  • 119K Toyota Avalon sedans recalled over airbag woes

    Toyota has issued a voluntary safety recall for 119,000 2003-2004 Avalon models because in some cases the airbags could inadvertently deploy. The automaker says that circuits within the airbag control module could be damaged by electrical noise, which could cause the front airbags and seatbelt pre-tensioners to activate. Dealers are going to repair cars by adding an electrical noise filter to

Maxon Bodypaint 3d R4 Crack