Search found 24 matches

by ross2004
Wed Aug 07, 2019 7:33 pm
Forum: RaceCapture/Pro General Q&A
Topic: Race Capture Pro Mk3 will not connect to Race Capture App
Replies: 6
Views: 6683

I noticed the same last night- MK3 and a Fire tablet both on the latest app & firmware. Tablet would not connect to the RCP in the dashboard page when it first opened. I then went into setup, read config, and it connected.

Haven't had a chance to diagnose any further.
by ross2004
Tue Apr 23, 2019 10:34 pm
Forum: Lua Scripting
Topic: Virtual Channel help please
Replies: 4
Views: 5701

True, but we power cycle the RCP at every pit stop, so that will serve us.
by ross2004
Tue Apr 23, 2019 12:59 am
Forum: Lua Scripting
Topic: Virtual Channel help please
Replies: 4
Views: 5701

Bravo sir! Thank you very much, somewhere along the way I assume copy/pasting back and forth from the Notes app the quotes got messed up. Now it's working perfectly. Thanks again!
by ross2004
Mon Apr 22, 2019 10:53 pm
Forum: Lua Scripting
Topic: Virtual Channel help please
Replies: 4
Views: 5701

Virtual Channel help please

I'm trying to create a virtual channel called "StintTime" to serve as a driver stint timer. I'm attempting to pull the getUptime() command to pull the time the unit has been powered up (divided by 60,000 to convert to minutes). This is my first time I've tried creating a Virtual Channel so...
by ross2004
Fri Jan 18, 2019 2:44 pm
Forum: RaceCapture/Pro General Q&A
Topic: Display the Time Of Day on tablet?
Replies: 2
Views: 4483

Any news on this?
by ross2004
Tue Dec 11, 2018 7:13 pm
Forum: RaceCapture/Pro General Q&A
Topic: Display the Time Of Day on tablet?
Replies: 2
Views: 4483

It certainly would be nice. I thought it was being worked on, but I still don't see it anywhere.
by ross2004
Wed May 09, 2018 6:23 pm
Forum: RaceCapture App Bug Reporting / Feature Requests
Topic: Need more obvious warning indicators - cost us an engine...
Replies: 4
Views: 14751

Until the app update is released...
Image
by ross2004
Wed May 09, 2018 6:17 pm
Forum: Lua Scripting
Topic: Flashing Warning Light
Replies: 4
Views: 5308

Nice, I'm going to try and implement that this weekend. I like the simple "on" along with "flashing" combo.
by ross2004
Wed Feb 28, 2018 5:03 pm
Forum: Lua Scripting
Topic: Warning light trouble
Replies: 3
Views: 4070

In regards to your reply to my telemetry issue, I think the problem is I installed the Mk2 firmware update by accident instead of Mk3...
by ross2004
Wed Feb 28, 2018 5:02 pm
Forum: Telemetry
Topic: MK3 connection trouble
Replies: 3
Views: 6035

Whoops.....I'll correct that this evening and report back. Thanks!
by ross2004
Wed Feb 28, 2018 3:16 pm
Forum: Lua Scripting
Topic: Warning light trouble
Replies: 3
Views: 4070

So, I seemed to have sorted things out. I changed the script formatting to match my accusump script which I knew worked. Also, I had to change getAnalog(8 ) to getAnalog(7) for purposes of reading battery voltage. I'm not quite sure why, as I understood lua-channel 8 to be internal battery voltage o...
by ross2004
Wed Feb 28, 2018 2:28 pm
Forum: Telemetry
Topic: MK3 connection trouble
Replies: 3
Views: 6035

another
by ross2004
Wed Feb 28, 2018 2:27 pm
Forum: Telemetry
Topic: MK3 connection trouble
Replies: 3
Views: 6035

MK3 connection trouble

Trying to figure out why my MK3 box won't connect via cellular and transmit to Podium. I'm using the FreedomPop SIM card. Below are some screen shots, let me know if there's any other information you need I left out.
by ross2004
Tue Feb 27, 2018 3:52 pm
Forum: Lua Scripting
Topic: Warning light trouble
Replies: 3
Views: 4070

Warning light trouble

Having a little trouble with my warning light....it won't turn off. I have GPIO 1 set for output providing ground for a LED light. It comes on immediately and stays on, even if all of my scripted parameters are in-line. Can someone check my script please, thanks!: https://s10.postimg.org/b9ie5h8ux/I...
by ross2004
Tue Oct 10, 2017 2:50 pm
Forum: Lua Scripting
Topic: Going crazy over Gpio....
Replies: 4
Views: 4605

You have no scripting for checking the oil pressure/temp it looks like. From the Wiki, you'd need something like this:

Code: Select all

function onTick()
 if getAnalog(0) > 212 then
   setGpio(0, 1)
 else
   setGpio(0, 0)
 end
end