Search found 62 matches
- Wed Jan 10, 2018 5:42 pm
- Forum: Telemetry
- Topic: FreedomPop $ZERO/month plan works with RaceCapture telemetry
- Replies: 26
- Views: 89848
- Thu Oct 05, 2017 2:52 pm
- Forum: RaceCapture App Bug Reporting / Feature Requests
- Topic: Reset Best Lap
- Replies: 2
- Views: 6506
- Tue Oct 03, 2017 2:50 pm
- Forum: RaceCapture App Bug Reporting / Feature Requests
- Topic: Reset Best Lap
- Replies: 2
- Views: 6506
Reset Best Lap
Hi guys,
I'm looking for a way to reset the app for the best lap without killing the app.
The problem that I have right now is that when we change driver, the next one is stuck with the previous driver best lap and predictive lap times. We don't have much time during driver changes and pit stops.
I'm looking for a way to reset the app for the best lap without killing the app.
The problem that I have right now is that when we change driver, the next one is stuck with the previous driver best lap and predictive lap times. We don't have much time during driver changes and pit stops.
- Fri May 05, 2017 9:04 pm
- Forum: Lua Scripting
- Topic: Help with shift light script
- Replies: 21
- Views: 47835
- Fri May 05, 2017 10:59 am
- Forum: Lua Scripting
- Topic: Help with shift light script
- Replies: 21
- Views: 47835
Hi Brent, I used the script from GTSpirit. I'm using it for a base to improve that what I really want. In the end, what I want is to have the lights to be solid while the RPM rises and the all lights to start blinking when RPM gets to 500 of the upper limit. IE: LL1: 6200 (Solid Green) LL2: 6700 (So...
- Wed May 03, 2017 8:06 pm
- Forum: Lua Scripting
- Topic: Help with shift light script
- Replies: 21
- Views: 47835
Here it is, I changed it for the ligths part to try to have them blinking. I used another script that was on the forum. Right now, they are only solid, but at least the work and I have RPM on the tablet. FREQ_HZ = 30 loop_time = 1000/ FREQ_HZ MAX_BLINK_PERIOD = 1000 DUTY_CYCLE = 0.2 --testRPM = 2000...
- Wed May 03, 2017 1:43 am
- Forum: Lua Scripting
- Topic: Help with shift light script
- Replies: 21
- Views: 47835
- Tue May 02, 2017 11:55 pm
- Forum: Lua Scripting
- Topic: Help with shift light script
- Replies: 21
- Views: 47835
- Tue May 02, 2017 7:59 pm
- Forum: Lua Scripting
- Topic: Help with shift light script
- Replies: 21
- Views: 47835
- Tue May 02, 2017 5:42 pm
- Forum: Lua Scripting
- Topic: Help with shift light script
- Replies: 21
- Views: 47835
A couple things: Does your RPM show up on the dashboard when you select RPM? I didn't see anything passing the RPM value back to the channel. Try these changes: function setRpm(value) RPM = value setChannel(rpmId, RPM) end function onTick() processCAN(CAN_chan) Shift() end Yes, the RPM on the table...
- Sun Apr 30, 2017 1:31 am
- Forum: Lua Scripting
- Topic: Help with shift light script
- Replies: 21
- Views: 47835
- Sat Apr 22, 2017 7:26 pm
- Forum: Lua Scripting
- Topic: Help with shift light script
- Replies: 21
- Views: 47835
- Sat Apr 22, 2017 3:32 am
- Forum: Lua Scripting
- Topic: Help with shift light script
- Replies: 21
- Views: 47835
I ran other test. When I try with a testRpm line, light works fine, but when I use the scipt for the CAN, the lights stay on the last setting I tryed with the testRpm. The RPM on the App works fine, but it looks like the script for the lights does not get the value of the RPM virtual channel. I have...
- Sat Apr 22, 2017 12:24 am
- Forum: Lua Scripting
- Topic: Help with shift light script
- Replies: 21
- Views: 47835
- Wed Apr 19, 2017 2:16 am
- Forum: Lua Scripting
- Topic: Help with shift light script
- Replies: 21
- Views: 47835
Help with shift light script
Hi all, I need help to get my shift light to work. With my script, I get this error: [lua] Script error: [string "tickrate = 30..."]:35.0: attempt to compare number with nil If I change line 35 from "local r = rpm" to "local r = rpmId", I'm not getting any errors, but t...