Search found 17 matches

by td1973
Sun Apr 16, 2017 11:25 am
Forum: Freematics Products
Topic: complile error with obd.h&obd.cpp
Replies: 3
Views: 8715

Re: complile error with obd.h&obd.cpp

I had the same error.

You need to copy OBD.h and OBD.cpp to the libraries root directory, not in the source folder!

IE: ProgramFiles(x86)]\Arduino\libraries\OBD.h
IE: ProgramFiles(x86)]\Arduino\libraries\OBD.cpp
by td1973
Fri Apr 14, 2017 1:22 pm
Forum: Freematics Products
Topic: ODB-II Adapter with Arduino Serial Monitor
Replies: 4
Views: 8903

Re: ODB-II Adapter with Arduino Serial Monitor

I tried other Example programs and nothing seems to work. I tried uninstalling and re-installing the Arduino IDK and the Freematics GITHUB files. The error I'm receiving is: obd_uart_test.ino:10:22: fatal error: OBD2UART.h: No such file or directory compilation terminated. Error compiling. or obd_ua...
by td1973
Thu Apr 13, 2017 6:50 am
Forum: Freematics Products
Topic: Acceleration
Replies: 1
Views: 4362

Re: Acceleration

RE: #2 I suspect this has to do with the orientation of the OBDII port in your vehicle and whether the Freematics dongle is 'phased' properly. Some code will need to be written to calibrate the x, y, z axis with respect to the port. For instance in one of my vehicles the port allows the Freematics d...
by td1973
Thu Apr 13, 2017 6:45 am
Forum: Freematics Products
Topic: Maximum number PIDs that can be configured through the OBD port
Replies: 2
Views: 6105

Re: Maximum number PIDs that can be configured through the OBD port

Vasanthi91 wrote:
> Is there a specific way to figure out the available PIDs in a vehicle?

You can send the 0100 request which will produce a response from the PCM/ECU.
by td1973
Thu Apr 13, 2017 2:55 am
Forum: Freematics Products
Topic: ODB-II Adapter with Arduino Serial Monitor
Replies: 4
Views: 8903

Re: ODB-II Adapter with Arduino Serial Monitor

td1973 wrote: " Adapter that connects to serial TX1/RX1 of the Arduino Mega." Thank you for the reply Stanley. I have already done this as stated above. I'm getting an initialization response from the adapter, as well as a voltage reading, but I cannot see the PID's on the serial monitor i...
by td1973
Mon Apr 10, 2017 12:17 pm
Forum: Freematics Products
Topic: How to add PID for oil pressure
Replies: 3
Views: 10140

Re: How to add PID for oil pressure

I'm not sure that it's a supported PID:

https://en.wikipedia.org/wiki/OBD-II_PIDs

I believe the code that you are showing is a DTC code, not a CAN bus PID from the sensor?

Please correct me if I'm wrong as I'd be interested in knowing if an update has been made in the protocol.
by td1973
Mon Apr 10, 2017 4:46 am
Forum: Freematics Products
Topic: ODB-II Adapter with Arduino Serial Monitor
Replies: 4
Views: 8903

ODB-II Adapter with Arduino Serial Monitor

Hello Everyone, I recently purchased a Freematics ONE (OBD-II) Adapter that connects to serial TX1/RX1 of the Arduino Mega. I'm trying to make the code work with the Arduino Serial monitor because I do not have an LCD. I'd like to simply use my laptop as the dispLAY. The following is my code and the...