Search found 70 matches
- Wed Mar 18, 2015 2:38 am
- Forum: RaceCapture/Pro General Q&A
- Topic: Data Analysis Software - Motec, Gems, AEM
- Replies: 119
- Views: 123280
Josh, The untouched racecapture logs are named RC_x.LOG, not .CSV, this is important. Try cding to your directory and just typing RC_0.log, notepad should open the (gibberish looking) log file, if it doesn't then make sure you have the name and extension correct. Once you've got it opening like tha...
- Wed Mar 18, 2015 1:57 am
- Forum: Lua Scripting
- Topic: getAccel function not working mk2 v2.7.8
- Replies: 8
- Views: 4008
- Wed Mar 18, 2015 1:49 am
- Forum: RaceCapture App Operation and General Q&A
- Topic: Adding OBD2 channels that aren't on the list
- Replies: 9
- Views: 4977
While you could certainly sample the actual steering angle sensor at 100Hz, it very well might not be updating that quickly on the CAN bus. The controller that is directly reading the sensor (BCM?) may be polling it faster than it gets broadcast onto the CAN bus for other controllers (and you) to co...
- Tue Mar 17, 2015 10:02 pm
- Forum: Lua Scripting
- Topic: getAccel function not working mk2 v2.7.8
- Replies: 8
- Views: 4008
- Tue Mar 17, 2015 1:40 pm
- Forum: RaceCapture/Pro General Q&A
- Topic: Abreviations
- Replies: 2
- Views: 2379
Most will probably be the top result if you Google the acronym followed by "definition". API = Application Programming Interface GPIO = General Purpose Input/Ouput PWM = Pulse width modulation RCP = RaceCapture/Pro (okay, this one probably isn't google-able) I do think it would be helpful for the fo...
- Tue Mar 17, 2015 1:16 pm
- Forum: RaceCapture/Pro General Q&A
- Topic: Data Analysis Software - Motec, Gems, AEM
- Replies: 119
- Views: 123280
First off, thanks for all those who put time and effort into making this script. I copied and pasted Copper280z's script into a new file called rccsv2gems_copper280z.pl then ran the following script at the windows command line: perl rccsv2gems_copper280z.pl RC_0.csv NewFile1 As someone else mentione...
- Tue Mar 17, 2015 12:34 pm
- Forum: Lua Scripting
- Topic: getAccel function not working mk2 v2.7.8
- Replies: 8
- Views: 4008
- Tue Mar 17, 2015 12:26 pm
- Forum: RaceCapture App Operation and General Q&A
- Topic: Adding OBD2 channels that aren't on the list
- Replies: 9
- Views: 4977
I thought I read something elsewhere on the forum about custom PIDs not yet being available. Found it: http://www.autosportlabs.org/viewtopic.php?p=22182#22182 No idea if there is a way to create them now by editing certain files. What make/model/year car are you trying to get the data from? Due to ...
- Tue Mar 17, 2015 2:28 am
- Forum: RaceCapture App Operation and General Q&A
- Topic: Adding OBD2 channels that aren't on the list
- Replies: 9
- Views: 4977
- Tue Mar 17, 2015 2:17 am
- Forum: Lua Scripting
- Topic: getAccel function not working mk2 v2.7.8
- Replies: 8
- Views: 4008
getAccel function not working mk2 v2.7.8
I've been trying to learn how the lua scripting works, so I thought I'd try to start the logger based on an accel threshold. I copied and pasted the example code: setTickRate(30) function onTick() local arm = getGpio(0) local g = getAccel(1) if arm == 0 then stopLoggi...