Search found 1027 matches

by stanley
Thu Apr 30, 2015 5:00 pm
Forum: Freematics Products
Topic: Android bluetooth connection with OBD-II Adapter
Replies: 4
Views: 11553

Re: Android bluetooth connection with OBD-II Adapter

The freematics vehicle data logger is a programmable device. So you can make your own command-set and simply let it stream out data like reference datalogger sketch does.
by stanley
Thu Apr 30, 2015 4:58 pm
Forum: Freematics Products
Topic: Adding and modifying PIDS.
Replies: 4
Views: 13994

Re: Adding and modifying PIDS.

To request for PID 2101 (if it's valid in your car), you can do like this:

Code: Select all

int value;
obd.dataMode = 2;
if (obd.read(1, value)) {
  // do something with 'value'
}
by stanley
Thu Apr 30, 2015 4:55 pm
Forum: Freematics Products
Topic: Data with ignition off
Replies: 3
Views: 8443

Re: Data with ignition off

Just check RPM regularly.
by stanley
Thu Apr 30, 2015 2:13 pm
Forum: Freematics Products
Topic: Issues with NMEA logging
Replies: 9
Views: 17742

Re: Issues with NMEA logging

Please tell us the result. If it is good, I will update the sketch.
by stanley
Thu Apr 30, 2015 2:12 pm
Forum: Freematics Products
Topic: Kit 2 - Error compiling
Replies: 7
Views: 20726

Re: Kit 2 - Error compiling

I didn't update the code for UART version in previous update and that caused your problem. I've just committed an update and please try with the new code.
by stanley
Thu Apr 30, 2015 1:42 pm
Forum: Freematics Products
Topic: Data with ignition off
Replies: 3
Views: 8443

Re: Data with ignition off

Your car's ECU might be still reponding to PID request even if iginition is off. This is not the case for most cars and this causes the logger to continue logging data. You can tweak the code by adding a check for RPM and let the logger stop logging.
by stanley
Thu Apr 30, 2015 1:39 pm
Forum: Freematics Products
Topic: OBD-II Model A printing wierd values
Replies: 1
Views: 6679

Re: OBD-II Model A printing wierd values

While the OBD adapter is using the serial UART, you can't use serial monitor or add Serial.println and that will simply interferece with the data communication.
by stanley
Mon Apr 27, 2015 11:54 pm
Forum: Freematics Products
Topic: MegaLogger sketch updated
Replies: 0
Views: 11913

MegaLogger sketch updated

The update sketch added test procedures and support for MPU-9150 9-axis MEMS module available in the new OBD-II I2C Adapter while 6-axis MPU-6050 is also supported with the same MPU9150 Arduino library. OBD library was also update recently. All the latest code and libraries were already committed to...
by stanley
Sat Apr 25, 2015 11:18 am
Forum: Freematics Products
Topic: Voltage Control
Replies: 3
Views: 11049

Re: Voltage Control

The voltage is not manipulated by the emulator. So the current workaround is using a voltage adjustable power supply. We might add that voltage emulation in future.
by stanley
Sat Apr 25, 2015 11:15 am
Forum: Freematics Products
Topic: Android App talking to the Freematics v2
Replies: 11
Views: 28260

Re: Android App talking to the Freematics v2

For just testing, you can use a android serial terminal app.