OBDuino

OBDuino

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 or kilometrers per litre), engine tuning parameters etc. on an LCD.

As the name suggests, the OBDuino utilises the On-Board Diagnostics interface found in most modern cars.

Contents

Features

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

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

Design

The key componenets 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/SAE-J1850 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. Free samples are available from the manufacturer.
  • An LCD display 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 ciruit[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. As of September 2009, no such PCBs are yet available for the OBDuino.

Project

The OBDuino project was started in 2008 based on the MPGuino project, with the desire to simplify wiring to the vehicle (i.e. using the standard OBD-II socket rather than directly wiring 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 around 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.

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

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

  • An OBDuino variant[6] is described in the upcoming book Practical Arduino 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] is described by HULK. It graphs values such as mpg, OBD-II PIDs etc. on a 128*64 pixel LCD.
  • Author Magister is working on a commercial prototype with CAN only protocol[9]

Related Alternatives

  • 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

References

  1. ^ http://code.google.com/p/opengauge/wiki/OBDuinoInterface
  2. ^ a b http://ecomodder.com/wiki/index.php/MPGuino
  3. ^ a b http://ecomodder.com/forum/showthread.php/obd-mpguino-gauge-2702.html
  4. ^ http://code.google.com/p/opengauge/wiki/OBDuino32K code project
  5. ^ http://www.arduino.cc/cgi-bin/yabb2/YaBB.pl?num=1228426438
  6. ^ http://ecomodder.com/forum/showthread.php/obduino-mega-10300.html
  7. ^ Oxer, Jonathan; Blemings, Hugh (2009). Practical Arduino: Cool Projects for Open Source Hardware. Apress. 
  8. ^ http://www.arduino.cc/cgi-bin/yabb2/YaBB.pl?num=1222013546
  9. ^ http://obduino.ca
  10. ^ http://www.scangauge.com/
  11. ^ http://spiffie.org/kits/mpguino/
  12. ^ http://store.fundamentallogic.com/ecom/index.php?products_id=463
  13. ^ http://priusdiy.fc2web.com/NENPIKEI.html (Japanese) or Google translation http://translate.google.com/translate?prev=hp&hl=en&js=y&u=http://priusdiy.fc2web.com/NENPIKEI.html&sl=auto&tl=en&history_state0=
  14. ^ http://www.gassavers.org/showpost.php?p=54244&postcount=14
  15. ^ http://www.circuitcellar.com/AVR2004/wabstracts/A3805abstract.pdf Bruce D. Lightner's winning entry
  16. ^ Lightner, Bruce D. (2005). "A Fuel-Consumption Gauge for Your GM Car". Circuit Cellar. http://www.lightner.net/lightner/bruce/Lightner-183.pdf 
  17. ^ www.nerdkits.com/videos/obdii Nerdkits' OBD-II car computer design for KPW protocol
  18. ^ http://www.blafusel.de/obd/obd2lcd_4en.html OBD2-LCD
  19. ^ http://www.blafusel.de/obd/obd2lcd_d.html OBD2-LCD D

External links


Wikimedia Foundation. 2010.

Игры ⚽ Поможем написать реферат

Look at other dictionaries:

  • On-board diagnostics — On Board Diagnostics, or OBD, in an automotive context, is a generic term referring to a vehicle s self diagnostic and reporting capability. OBD systems give the vehicle owner or a repair technician access to state of health information for… …   Wikipedia

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”