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.
Search found 24 matches
- 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: 15621
- Tue Apr 23, 2019 10:34 pm
- Forum: Lua Scripting
- Topic: Virtual Channel help please
- Replies: 4
- Views: 13558
- Tue Apr 23, 2019 12:59 am
- Forum: Lua Scripting
- Topic: Virtual Channel help please
- Replies: 4
- Views: 13558
- Mon Apr 22, 2019 10:53 pm
- Forum: Lua Scripting
- Topic: Virtual Channel help please
- Replies: 4
- Views: 13558
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...
- Fri Jan 18, 2019 2:44 pm
- Forum: RaceCapture/Pro General Q&A
- Topic: Display the Time Of Day on tablet?
- Replies: 2
- Views: 5591
- Tue Dec 11, 2018 7:13 pm
- Forum: RaceCapture/Pro General Q&A
- Topic: Display the Time Of Day on tablet?
- Replies: 2
- Views: 5591
- 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: 17619
- Wed May 09, 2018 6:17 pm
- Forum: Lua Scripting
- Topic: Flashing Warning Light
- Replies: 4
- Views: 6993
- Wed Feb 28, 2018 5:03 pm
- Forum: Lua Scripting
- Topic: Warning light trouble
- Replies: 3
- Views: 5023
- Wed Feb 28, 2018 5:02 pm
- Forum: Telemetry
- Topic: MK3 connection trouble
- Replies: 3
- Views: 12743
- Wed Feb 28, 2018 3:16 pm
- Forum: Lua Scripting
- Topic: Warning light trouble
- Replies: 3
- Views: 5023
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...
- Wed Feb 28, 2018 2:28 pm
- Forum: Telemetry
- Topic: MK3 connection trouble
- Replies: 3
- Views: 12743
- Wed Feb 28, 2018 2:27 pm
- Forum: Telemetry
- Topic: MK3 connection trouble
- Replies: 3
- Views: 12743
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.
- Tue Feb 27, 2018 3:52 pm
- Forum: Lua Scripting
- Topic: Warning light trouble
- Replies: 3
- Views: 5023
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...
- Tue Oct 10, 2017 2:50 pm
- Forum: Lua Scripting
- Topic: Going crazy over Gpio....
- Replies: 4
- Views: 5785
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