This product works as a data bridge between a car’s OBD port and Arduino (or similar hardware) with a dedicated open-source library provided. It provides high-speed OBD-II data access and integrates 9-DOF motion sensor with built-in sensor fusion algorithm. The adapter is powered directly from OBD port and outputs regulated 5V voltage for powering attached devices.
The adapter plugs into the OBD port usually located under the steering column or slightly to the left of it. To check if your vehicle is OBD-II certified, open your hood and find the sticker that looks like this:
Vehicles using following vehicle protocols are supported.
The adapter stays plugged into the OBD port usually located under the steering column or slightly to the left of it. A unpluggable cable comes out from the adapter and splits into one 4-pin connector two 2-pin connectors, including power lines (VCC/GND) and data lines (Rx/Tx). They can be connected to Arduino with onboard breakout pins or breakout shield. Your Arduino device will look tidy in car with only one cable.
Power Connector (2-pin 2.54 Dupont connector)
Serial UART Data Connector (2-pin 2.54 Dupont connector)
Note: Arduino UNO or Nano only has one hardware serial which is also used by USB serial. Avoid using serial output if the adapter is connected to hardware serial. Arduino Leonardo, Mega, Due do not have this limit.
USB Port
We have extended standard ELM327 command set for following purposes:
ATACL
ATGYRO
ATMAG
ATTEMP
ATQU0/ATQU1
ATORI
ATSH <AA> <BB> <CC>
ATPTH <AA>
ATPTA <BB>
ATSH <ABC>
ATSH <AA> <BB> <CC>
ATCP <HH>
ATCF <ABC> or <AA> <BB> <CC>
ATCM <AA> <BB> <CC> <DD>
ATM1
ATM0
Typical sniffing on 11-bit 500kbps CAN bus
Typical sniffing on 29-bit 500kbps CAN bus
A dedicated Arduino library is provided for easy access to all the features with any type of Arduino. Please note not all available AT commands are encapsulated into API.
Some commonly used APIs are like following:
Here is an example code of a simplest engine RPM indicator, which uses the pin 13 LED (built in every Arduino board) to indicate whether the engine is above 3000 rpm.
#include <OBD2UART.h> COBD obd; void setup() { // we'll use the debug LED as output pinMode(13, OUTPUT); // start serial communication obd.begin(); // initiate OBD-II connection until success while (!obd.init()); } void loop() { int value; // save engine RPM in variable 'value', return true on success if (obd.readPID(PID_RPM, value)) { // light on LED on Arduino board when the RPM exceeds 3000 digitalWrite(13, value > 3000 ? HIGH : LOW); } }
More example sketches are here.
Some commonly used PIDs are defined in OBD library as following.
Engine
Intake/Exhaust
Speed/Time
Driver
Electric Systems
Additional defines can be added to access all OBD-II PIDs which the car’s ECU provides.
The following table lists the differences among all Freematics OBD-II adapter models.
Features \ Models | OBD-II UART Adapter V1 | OBD-II UART Adapter V2 | OBD-II UART Adapter V2.1 |
---|---|---|---|
Connection Cable | Fixed | Fixed | Unpluggable |
Additional Interface | N/A | micro USB | micro USB |
Motion Sensor | N/A | 6-DOF MPU-6050 | 9-DOF MPU-9250 |
Voltmeter | Yes | Yes | Yes |
Max. Output Power | 2A | 2.1A | 2.1A |
Standby Mode Power | 5mA | 6mA | 6mA |
Q: What is this product used for?
A: The most straight-forward use of this product is for making Arduino possible to access vehicle data easily. The OBD-II data, together with other data from GPS or all kinds sensors, can be logged and stored on SD/TF card with Arduino and that makes an open-source vehicle data logger (check out the data logger kits). More extensively, many interesting interaction applications requiring car data can be made.
Q: How is the adapter powered?
A: The adapter gets power from the 12V DC output from the OBD-II port.
Q: Does my Arduino needs power from somewhere in the car?
A: The adapter provides regulated 5V output for powering Arduino and other devices, so no extra power cord is needed.
Q: Do I need a CAN bus shield to use with the adapter?
A: Definitely no. The adapter retrieves data from CAN bus, 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’s data connector (Rx and Tx).
Q: How do I connect the adapter with my Arduino?
A: The adapter works with all models of Arduino with the dedicated Arduino library and is connected with Arduino by connecting adapter’s Tx to Arduino’s Rx (D0) and adapter’s Rx to Arduino’s Tx (D1). If you want to connect and disconnect the adapter with your Arduino effortlessly, it’s recommended to use a common I/O breakout shield or use an Arduino board with breakout pins for Rx/Tx/VCC/GND.
Q: Is the power provided by the adapter always available in car?
A: This depends on whether the OBD-II port of your car still has power after ignition is off. Actually it is so with most cars.
Q: What’s the maximum frequency of data polling?
A: The OBD-II PIDs are polled one after another. The time for a polling depends on the speed of car’s ECU computer and how busy the computer is in different status. With a typical modern car with CAN bus, the time can be as low as 10ms. In other word, up to 100 times of data polling can be done in one second.
Q: What if I have questions/obstacles about Arduino programming?
A: Sorry it is not our responsibility to provide any instructions on Arduino programming. There are abundant online guides and tutorials about Arduino programming for reference.
Q: What's the difference between product version and firmware version?
A: Freematics OBD-II UART Adapter V2 uses a firmware versioned 1.1. Freematics OBD-II UART Adapter V1 uses a firmware versioned 1.0.