Search found 62 matches

by PopKorn78
Wed Jan 10, 2018 5:42 pm
Forum: Telemetry
Topic: FreedomPop $ZERO/month plan works with RaceCapture telemetry
Replies: 26
Views: 68772

Will it work with an older 2.5g Mk2 unit?
by PopKorn78
Thu Oct 05, 2017 2:52 pm
Forum: RaceCapture App Bug Reporting / Feature Requests
Topic: Reset Best Lap
Replies: 2
Views: 5843

Thanks Brent, I thought there was already a way to do it, just did'nt find it. Guess I should have asked before, we have a race in 2 weeks :)
by PopKorn78
Tue Oct 03, 2017 2:50 pm
Forum: RaceCapture App Bug Reporting / Feature Requests
Topic: Reset Best Lap
Replies: 2
Views: 5843

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.
by PopKorn78
Fri May 05, 2017 9:04 pm
Forum: Lua Scripting
Topic: Help with shift light script
Replies: 21
Views: 43445

No, blinking is not working. I will use the solid for now, by I will work on the blink and come back with results.
by PopKorn78
Fri May 05, 2017 10:59 am
Forum: Lua Scripting
Topic: Help with shift light script
Replies: 21
Views: 43445

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...
by PopKorn78
Wed May 03, 2017 8:06 pm
Forum: Lua Scripting
Topic: Help with shift light script
Replies: 21
Views: 43445

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...
by PopKorn78
Wed May 03, 2017 1:43 am
Forum: Lua Scripting
Topic: Help with shift light script
Replies: 21
Views: 43445

Got it to work, needed to add a return value.

Now I need to figure out a way to have the lights to blink 😄

Thanks for the help
by PopKorn78
Tue May 02, 2017 11:55 pm
Forum: Lua Scripting
Topic: Help with shift light script
Replies: 21
Views: 43445

Good news, light works.

Bad news, I lost RPM on the tablet
by PopKorn78
Tue May 02, 2017 7:59 pm
Forum: Lua Scripting
Topic: Help with shift light script
Replies: 21
Views: 43445

Thanks, will try that.

Can you give me an example for the print for the RPM please? I tried it once, but could not get it to work. Real newb at LUA here
by PopKorn78
Tue May 02, 2017 5:42 pm
Forum: Lua Scripting
Topic: Help with shift light script
Replies: 21
Views: 43445

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...
by PopKorn78
Sun Apr 30, 2017 1:31 am
Forum: Lua Scripting
Topic: Help with shift light script
Replies: 21
Views: 43445

Does someone as a clue to what I'm doying wrong?
by PopKorn78
Sat Apr 22, 2017 7:26 pm
Forum: Lua Scripting
Topic: Help with shift light script
Replies: 21
Views: 43445

Here it is tickRate = 30 --the CAN baud rate CAN_baud = 250000 --CAN channel to listen on. 0=first CAN channel, 1=second CAN_chan = 0 --virtual channels --addChannel( name, sampleRate, [precision], [min], [max], [units] ) rpmId = addChannel("RPM", 100, 0, 0, 8000, "RPM") vltId = ...
by PopKorn78
Sat Apr 22, 2017 3:32 am
Forum: Lua Scripting
Topic: Help with shift light script
Replies: 21
Views: 43445

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...
by PopKorn78
Sat Apr 22, 2017 12:24 am
Forum: Lua Scripting
Topic: Help with shift light script
Replies: 21
Views: 43445

It kind of work, I don't get the message, but shift light are not working
by PopKorn78
Wed Apr 19, 2017 2:16 am
Forum: Lua Scripting
Topic: Help with shift light script
Replies: 21
Views: 43445

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...