Search found 99 matches

by protomor
Sun Feb 26, 2017 12:09 am
Forum: Freematics Products
Topic: Real time temperature display vs logged temp value?
Replies: 1
Views: 4787

Re: Real time temperature display vs logged temp value?

What real time temperature are you looking at? 30s are about ambient temperature. 90s is correct for coolant temperatures.

Please post more information.
by protomor
Sun Feb 26, 2017 12:05 am
Forum: Freematics Products
Topic: Problems getting a GPS signal and switching to MPH
Replies: 10
Views: 20793

Re: Problems getting a GPS signal and switching to MPH

In the OBD.cpp file, there's a function called "int COBD::normalizeData(byte pid, char* data)". It contains all translations if they need to be something other than what comes out. The reason you don't see kph is because speed already comes out kph. So there's no translation. You need to a...
by protomor
Sat Feb 25, 2017 12:28 pm
Forum: Freematics Products
Topic: DTC codes aren't P0xxx.
Replies: 8
Views: 18984

Re: DTC codes aren't P0xxx.

Staaaaaanleeeeeeeey HAAALP!
by protomor
Thu Feb 23, 2017 1:06 am
Forum: Freematics Products
Topic: Understanding logged data
Replies: 15
Views: 29393

Re: Understanding logged data

Anyone get a chance to try out my stuff? Latest version here: https://drive.google.com/file/d/0ByBda7 ... sp=sharing
by protomor
Thu Feb 23, 2017 1:05 am
Forum: Freematics Products
Topic: Cannot view CSV data in freematics chart
Replies: 8
Views: 12709

Re: Cannot view CSV data in freematics chart

You can give my log viewer a shot (requires windows).

https://drive.google.com/file/d/0ByBda7 ... sp=sharing

There's no GPS data that I could find so the google map plugin won't work. But you can at least get some graphs.
by protomor
Wed Feb 22, 2017 5:18 am
Forum: Freematics Products
Topic: Cannot view CSV data in freematics chart
Replies: 8
Views: 12709

Re: Cannot view CSV data in freematics chart

You talking about: http://freematics.com/chart/view.html ?

I've never been able to get that to work lol.
by protomor
Wed Feb 22, 2017 2:17 am
Forum: Freematics Products
Topic: Cannot view CSV data in freematics chart
Replies: 8
Views: 12709

Re: Cannot view CSV data in freematics chart

Did you edit the code? Your log looks weird. What is A B C D? Why does your log start with "#"?

If you modify your code, stanley's stuff will no longer work for you.
by protomor
Mon Feb 20, 2017 6:50 am
Forum: Freematics Products
Topic: DTC codes aren't P0xxx.
Replies: 8
Views: 18984

DTC codes aren't P0xxx.

So the code I have to consume Stanley's DTC read is: unsigned int numberofcodes = obd.getDTCCount(); lcd.println(numberofcodes); if (numberofcodes > 0) { uint16_t codes[8]; byte dtcCount = obd.readDTC(codes, numberofcodes); if (dtcCount == 0) { lcd.println("No DTC"); } else { for (byte i =...
by protomor
Mon Feb 20, 2017 2:22 am
Forum: Freematics Products
Topic: Problems getting a GPS signal and switching to MPH
Replies: 10
Views: 20793

Re: Problems getting a GPS signal and switching to MPH

There's a big switch statement in the OBD library that does some basic conversions. You can do it there. Or in your own sketch somewhere it would fit. It's not like there is a right answer. I think all OBD2 outputs are in kph by default but I don't remember.