Search found 18 matches

by jonathan
Mon Sep 25, 2017 5:44 pm
Forum: Freematics Products
Topic: Issues compiling older OBD-II Telematics Kit Mega kit
Replies: 3
Views: 7062

Re: Issues compiling older OBD-II Telematics Kit Mega kit

I used the datalogger.ino file in firmware_v4/datalogger.

What .ino file are you using? In order to use the libraries, if your .ino file is under the firmware_v4 folder, you need to copy firmware_v4/libraries contents into your home directory/Arduino/libraries folder.
by jonathan
Wed Sep 20, 2017 1:02 pm
Forum: Freematics Products
Topic: Issues compiling older OBD-II Telematics Kit Mega kit
Replies: 3
Views: 7062

Re: Issues compiling older OBD-II Telematics Kit Mega kit

After contacting Stanley, I fixed this by using the libraries in the firmware_v4 folder here:

https://github.com/stanleyhuangyc/Freem ... /libraries

And not the libraries folder from the root directory of the code. The libraries in the root directory of the repo are only for firmware_v5.
by jonathan
Wed Sep 20, 2017 1:01 pm
Forum: Freematics Products
Topic: Latest FreematicsONE arduino library does not compile
Replies: 1
Views: 4852

Re: Latest FreematicsONE arduino library does not compile

Follow up: After contacting Stanley, I fixed this by using the libraries in the firmware_v4 folder here:
https://github.com/stanleyhuangyc/Freem ... /libraries

And not the libraries folder from the root directory of the github repo.
by jonathan
Thu Sep 14, 2017 12:52 pm
Forum: Freematics Products
Topic: Latest FreematicsONE arduino library does not compile
Replies: 1
Views: 4852

Latest FreematicsONE arduino library does not compile

I'm using the freematics datalogger v4 with my Freematics ONE. The latest code on the github repository does not compile.

I've reported this to the github issue tracker here along with my error messages:

https://github.com/stanleyhuangyc/Freematics/issues/41


It's disappointing that non-compiling code is pushed to master.
by jonathan
Tue Sep 12, 2017 4:47 pm
Forum: Freematics Products
Topic: Undocumented AT functions
Replies: 4
Views: 8778

Re: Undocumented AT functions

Setting ignition off and then on again within the same power cycle of the emulator worked for me. Additionally, the freematics one logger stopped and started logging appropriately.
by jonathan
Thu Aug 10, 2017 3:03 pm
Forum: Freematics Products
Topic: Undocumented AT functions
Replies: 4
Views: 8778

Re: Undocumented AT functions

You can view my library here: https://github.com/JonnoFTW/py-obd-ii-emulator

The Emulator AT Commands are listed in full here: http://freematics.com/pages/products/fr ... mmand-set/
by jonathan
Wed Jun 28, 2017 3:50 pm
Forum: Freematics Products
Topic: Suggestion: Link data logger with emulator?
Replies: 2
Views: 8400

Re: Suggestion: Link data logger with emulator?

I've written a library to control the emulator. A playback script would be very easy to write since you only need to send a bunch of ATSET commands to the emulator with a delay..

Here's the playback script that will work with the freematics emulator: https://github.com/JonnoFTW/py-obd-ii-e ... layback.py
by jonathan
Mon Jun 26, 2017 1:04 pm
Forum: Freematics Products
Topic: Reciveing Passive Information on the CAN-BUS (Not Querying)
Replies: 15
Views: 36154

Re: Reciveing Passive Information on the CAN-BUS (Not Querying)

I talked to stanley on facebook about this. He said it's not possible to do sniffing with the STM32 chip and no firmware is available. He advised to get a CAN shield if you want to do sniffing. We tried setting the chip in to Monitor All mode (by sending the ATMA command and trying to read constantl...
by jonathan
Tue Jun 20, 2017 1:32 pm
Forum: Freematics Products
Topic: Reciveing Passive Information on the CAN-BUS (Not Querying)
Replies: 15
Views: 36154

Re: Reciveing Passive Information on the CAN-BUS (Not Querying)

I'm working on a custom firmware to sniff CAN data from Tesla vehicles. I'll make a post here once it's finished.
by jonathan
Mon Jun 19, 2017 4:16 pm
Forum: Freematics Products
Topic: Need to Add Custom PID
Replies: 4
Views: 16968

Re: Need to Add Custom PID

It's quite simple really. Download the freematics repo from github. Make sure you move the libraries folder to your home directory (Documents/Arduino/libraries on windows) 1. Define the pids you want to log here: m 2. Add a new entry to the switch here: m You may need to write a custom function to i...