diff options
-rw-r--r-- | README.md | 17 | ||||
-rw-r--r-- | megalogger/README.txt | 2 |
2 files changed, 13 insertions, 6 deletions
@@ -5,7 +5,8 @@ Arduino OBD-II Adapter Library & Examples The Arduino OBD-II Adapter is a product that works as a vehicle OBD-II data bridge for Arduino with open-source Arduino library provided. Besides providing OBD-II data access, it also provides power supply (converted and regulated from OBD-II port) for Arduino and its attached devices. -Product page: http://arduinodev.com/hardware/obd-kit/ +OBD-II Adapter: http://arduinodev.com/hardware/obd-kit/ +OBD-II Data Logger Kits: http://arduinodev.com/hardware/#logger_kit ![Image](http://www.arduinodev.com/wp-content/uploads/2012/03/obdkit1-150x150.jpg) @@ -34,9 +35,7 @@ Additional defines can be added to access all OBD-II PIDs which the car's ECU pr Directory Descriptions ---------------------- -libraries/OBD - Arduino library for OBD-II adapter - -samples/rpm_led - a simplest example sketch implementing a RPM indicator with the pin 13 LED on Arduino board +libraries - all Arduino libraries needed for OBD-II adapter and kits samples/dashboard_1602 - an example sketch showing a set of vehicle data with a LCD1602 shield @@ -46,4 +45,12 @@ samples/dashboard_oled - a sketch providing extensive display of vehicle data wi samples/obdtest - a testing sketch for OBD-II adapter -obdlogger - a complete OBD-II and GPS data logger (http://obd.arduinodev.com) +obdlogger - a complete OBD-II and GPS data logger and timer based on 128x64 OLED display + +megalogger - a complete OBD-II and GPS data logger based on Arduino MEGA and TFT LCD shield + +How to view logged data +----------------------- +Data2KML (http://arduinodev.com/data2kml-utility/) is an open-source command line utility which converts data logged by obdlogger or megalogger to KML file loading in Google Earth. + +A web service (http://freematics.com/chart/) is provided to view data logged by obdlogger or megalogger. diff --git a/megalogger/README.txt b/megalogger/README.txt index 5a01eb2..82cd927 100644 --- a/megalogger/README.txt +++ b/megalogger/README.txt @@ -1,4 +1,4 @@ -This is the source code for the Arduino OBD-II data logger, which displays (on a 320x240 TFT LCD shield) and records (to a SD card) a selected set of OBD-II data. +This is the source code for the Arduino OBD-II data logger, which displays (on a 320x240 TFT LCD shield) and records (to a SD card) GPS and a set of OBD-II data in the form of text-based CSV format file or more compacted binary file. To compile the code with Arduino IDE, please copy all library files from the libraries directory to Arduino's libraries directory. |