Search found 99 matches

by protomor
Tue Feb 07, 2017 10:23 pm
Forum: Freematics Products
Topic: Modifying datalogger.h data format?
Replies: 5
Views: 9528

Re: Modifying datalogger.h data format?

I just whipped up some code to translate from the output of the freematics unit to the way torque reads. That way, DashWare doesn't need to know the information came from somewhere else (I'm going to use DashWare too). For right not, I'm being lazy and just dropping the missing data points but avera...
by protomor
Fri Feb 03, 2017 10:35 pm
Forum: Freematics Products
Topic: How to view .CSV files
Replies: 3
Views: 7436

Re: How to view .CSV files

Why not just make your own? The data isn't too difficult to parse. worst case, you can use excel to plot a simple graph.
by protomor
Fri Feb 03, 2017 10:31 pm
Forum: Freematics Products
Topic: Understanding logged data
Replies: 15
Views: 29501

Re: Understanding logged data

I have some poorly written windows forms code that puts the information into a graph form. I also have the accelerometer setup to display as a little bubble in a box that moves around and gets bigger or smaller. You might be able to plot something with excel's graphing functions. pull everything 20/...
by protomor
Fri Feb 03, 2017 5:52 am
Forum: Freematics Products
Topic: Modifying datalogger.h data format?
Replies: 5
Views: 9528

Re: Modifying datalogger.h data format?

With coding you can do that. I'm not sure what your aim is. Are you trying to do a live data feed to gauges? Or are you trying to do some ex post facto data overlay on videos? If so, I'm already working on it. The current issue with the out of the box code is that it doesn't log data all at once. It...
by protomor
Wed Jan 11, 2017 11:30 pm
Forum: Freematics Products
Topic: Tractor ISOBUS
Replies: 4
Views: 10435

Re: Tractor ISOBUS

See page 23/24 on this document - https://www.scantool.net/scantool/downl ... 327dsh.pdf

The ELM327 is the chip used in this hardware to read the OBD2 data. I don't see the ISO 11783 (I think that's your protocol). So I don't think it's possible with this solution.
by protomor
Mon Jan 09, 2017 11:30 pm
Forum: Freematics Products
Topic: Megalogger pin usage
Replies: 3
Views: 7722

Re: Megalogger pin usage

Hi Stevie. I have the non HD megalogger kit. From what I Can tell, the LCD uses up most/all of the digital IO pins but I don't see anything used on the analog IO pins. I think you're trying to do the same thing I am. I'm building a datalogger for a race car that I have. I've decided to use the I2C c...
by protomor
Mon Jan 09, 2017 11:27 pm
Forum: Freematics Products
Topic: kit #3, OBD-2 "UNABLE TO CONNECT"
Replies: 10
Views: 36676

Re: kit #3, OBD-2 "UNABLE TO CONNECT"

What protocol does it use? I wish there was a simple way to lookup what cars have what protocols. Googling around seems to come up with mixed results for every car I look at. My 2007 subaru for instance didn't work with the auto select. But if I force the right protocol (PROTO_KWP2000_FAST), it work...
by protomor
Fri Dec 30, 2016 11:55 pm
Forum: Freematics Products
Topic: backup
Replies: 1
Views: 4663

Re: backup

You mean a backup of your code? Just get a github or make just zip a copy of the code folder lol.
by protomor
Tue Dec 27, 2016 11:26 pm
Forum: Freematics Products
Topic: Fail to find protocol, any guess?
Replies: 3
Views: 7322

Re: Fail to find protocol, any guess?

I don't have the list in front of me. What's the 2101 command?

I don't have the one so I don't know much about how it works. I'm at the limit of how I can help you.
by protomor
Tue Dec 27, 2016 4:42 am
Forum: Freematics Products
Topic: Fail to find protocol, any guess?
Replies: 3
Views: 7322

Re: Fail to find protocol, any guess?

I can't see your code but how are you initializing the OBD class? Default is "PROTO_AUTO" but I've had to manually force it a few times. I think you're looking for PROTO_CAN_11B_500K . You can look in the OBD.H for more informatoin but here's the enum definition. typedef enum { PROTO_AUTO ...