Search found 99 matches

by protomor
Sat Mar 04, 2017 12:12 pm
Forum: Freematics Products
Topic: Telematics Kits control LM
Replies: 1
Views: 4778

Re: Telematics Kits control LM

All the Freematics kits run off the ELM327 chip which polls the OBD2 DME. If it can be done via that interface, it can do it on your car. As a fellow BMW guy, lemme answer. No. It cannot do that.
by protomor
Fri Mar 03, 2017 5:56 am
Forum: Freematics Products
Topic: R61581 mirroring image/touch
Replies: 4
Views: 8939

Re: R61581 mirroring image/touch

Ok so I figured out the flip. Line 120 needs to be changed to 8A. Like this: LCD_Write_COM(0x36); //LCD_Write_DATA(0x0A); LCD_Write_DATA(0x8A); Now you can uncomment the landscape code in "SetXY". But now all of the characters are flipped. This is likely due to the original flip issue. So ...
by protomor
Fri Mar 03, 2017 1:46 am
Forum: Freematics Products
Topic: R61581 mirroring image/touch
Replies: 4
Views: 8939

R61581 mirroring image/touch

I just got the new megaloggerHD and I'm trying to port over code from my old kit 3. Most things work fine out of the box but my old touch screen code (using Utouch and now URTouch) and my UTFT_SdRaw image loader is doing everything horizontally mirrored. I noticed the R61581.cpp file does some weird...
by protomor
Wed Mar 01, 2017 10:37 pm
Forum: Freematics Products
Topic: V4 Not working?
Replies: 15
Views: 31177

Re: V4 Not working?

What year volvo v70 is it? I actually found this funny thing with the ISO9141-2 cars that I tested. Plug in the freematics unit with the car on. Wait for it to try to connect and fail out, then unplug it and plug it back in without turning the car off. I think the ELM327 chip responds too quickly fo...
by protomor
Wed Mar 01, 2017 10:29 pm
Forum: Freematics Products
Topic: Data2KML
Replies: 7
Views: 11214

Re: Data2KML

No problem. I'm still working on it but it has the basics for you. I don't have much time to work on it so hopefully this is enough for now.
by protomor
Wed Mar 01, 2017 2:06 am
Forum: Freematics Products
Topic: Data2KML
Replies: 7
Views: 11214

Re: Data2KML

by protomor
Mon Feb 27, 2017 12:31 pm
Forum: Freematics Products
Topic: Data2KML
Replies: 7
Views: 11214

Re: Data2KML

Everyone has modified their code a little. It's hard to code for all of those differences. Send a version of your csv file and I can make my stuff work for you. I've never seen that Data2KML work. I can at least make mine work for you.
by protomor
Sun Feb 26, 2017 9:57 am
Forum: Freematics Products
Topic: Data2KML
Replies: 7
Views: 11214

Re: Data2KML

Magic.

The stuff I gave you also has a kml export.
by protomor
Sun Feb 26, 2017 1:04 am
Forum: Freematics Products
Topic: Raw data from can bus
Replies: 3
Views: 7675

Re: Raw data from can bus

The OBD2 port ONLY responds to certain things. Manufacturers purposefully block things from fully being read through the port. So you cannot read everything from that port. What you want to do is what car manufacturers specifically try not to let you do.
by protomor
Sun Feb 26, 2017 12:12 am
Forum: Freematics Products
Topic: Raw data from can bus
Replies: 3
Views: 7675

Re: Raw data from can bus

The OBD2 port is an interface to the CAN BUS system. It is not direct access to it. The port will only answer to commands. Each PID you poll responds within a certain time frame. So you could theoretically throw the whole PID book at the port. But each request will take time to respond. I'd imagine ...