Search found 97 matches
- Thu Mar 12, 2020 1:14 pm
- Forum: RaceCapture/Pro introductions
- Topic: Not the "norm"
- Replies: 4
- Views: 1756
Welcome, finally more non-ECM, Carb & a Dizzy guys. I got a Twin AFR setup up on my Vintage Dirt late model here in upsate NY. 4150xp 4bbl & 500xp 2bbl. 355 w/MSD dist. would be interested to here some of youre results. Dave MK2 w/Rpi Dash & ShiftX3 (F&R brake pressure/fuel level/fuel press/tps/man ...
- Mon Feb 24, 2020 1:01 pm
- Forum: RaceCapture/Pro General Q&A
- Topic: RPM signal from MSD 6AL
- Replies: 2
- Views: 1061
- Thu Jan 09, 2020 12:57 pm
- Forum: Sensors
- Topic: Temperature Sensor Calibration
- Replies: 3
- Views: 1544
both these sensors are available as presets in the app. just click the preset button within the channel your setting up, choose the correct sensor and it'll fill the values in for you.
more info here in the wiki. https://wiki.autosportlabs.com/RaceCapt ... ure_Sensor
more info here in the wiki. https://wiki.autosportlabs.com/RaceCapt ... ure_Sensor
- Thu Sep 26, 2019 5:05 pm
- Forum: AnalogX
- Topic: Canbus using 2 AnalogX's
- Replies: 3
- Views: 1682
- Thu Sep 26, 2019 2:40 pm
- Forum: AnalogX
- Topic: Canbus using 2 AnalogX's
- Replies: 3
- Views: 1682
Canbus using 2 AnalogX's
Seasons over so im looking to clean up/simplify my wiring. I am looking to switch every sensor over to a canbus style harness. 8 linear sensors and two canbus AFR controllers. by using two AX's (one each end) and the AFR's/MK2 in the middle. would this work properly as far as canbus termination. see...
- Tue Feb 26, 2019 1:06 pm
- Forum: RaceCapture App Operation and General Q&A
- Topic: Raspberry Pi support - enables a hard-wired, dedicated dash
- Replies: 119
- Views: 63063
of the two you listed I would choose the Waveshare. mostly because it has the lugs in the four corners which would make install easier. both appear to have lugs for mounting the Pi. I used an older Waveshare which does not, so my Pi just hangs of the header. mine is a Waveshare 1024x600 resistive to...
- Fri Feb 15, 2019 2:03 pm
- Forum: RaceCapture App Bug Reporting / Feature Requests
- Topic: Rpi gpios to RCapp inputs
- Replies: 1
- Views: 1081
Rpi gpios to RCapp inputs
Brent, did I read somewhere in one of your posts your looking at being able to import the Rpi gpios into racecapture as sensor inputs? i'm looking at using HR-SC04 ultrasonic sensors to measure static ride heights (used during shop chassis set-up). if so, how difficult would it be to add a dash page...
- Mon Feb 11, 2019 10:50 pm
- Forum: RaceCapture App Bug Reporting / Feature Requests
- Topic: Raspberry Pi 3+ Touch Screen
- Replies: 12
- Views: 3155
- Thu Feb 07, 2019 7:15 pm
- Forum: RaceCapture/Pro General Q&A
- Topic: RPM Input
- Replies: 6
- Views: 2219
- Tue Feb 05, 2019 11:25 pm
- Forum: RaceCapture/Pro General Q&A
- Topic: RPM slow response to app
- Replies: 5
- Views: 2478
- Tue Dec 18, 2018 6:33 pm
- Forum: RaceCapture App Operation and General Q&A
- Topic: Raspberry Pi support - enables a hard-wired, dedicated dash
- Replies: 119
- Views: 63063
here's a link to a step by step a did for another racer. it may help. also has some tricks for faster boot speed.
https://drive.google.com/open?id=1CwOL8 ... 8fBBMHqcpA
https://drive.google.com/open?id=1CwOL8 ... 8fBBMHqcpA
- Tue Dec 18, 2018 6:23 pm
- Forum: RaceCapture App Operation and General Q&A
- Topic: Raspberry Pi support - enables a hard-wired, dedicated dash
- Replies: 119
- Views: 63063
Ok, so for future reference the logs are located in /home/pi/.kivy/logs. (I think, going by memory lol). you'll see a bunch of kivy_xx_x-x.txt because it logs a new one each time you open RCapp. personally, i'd like to see it overwrite, hint for brent. I think your next fix is in the /.kivy/config.i...
- Tue Dec 18, 2018 3:20 pm
- Forum: RaceCapture App Operation and General Q&A
- Topic: Raspberry Pi support - enables a hard-wired, dedicated dash
- Replies: 119
- Views: 63063
i'll try to help, but not an expert. I don't have the 7" official screen, but have run into a similar problem. try this first. if you can get to a pi command line (with internet access connected) type: sudo apt-get install xsel (that should install the xsel library) then type: sudo apt-get install x...
- Mon Dec 10, 2018 11:49 pm
- Forum: Lua Scripting
- Topic: Help with setting u calculated channel for F/R brake balance
- Replies: 3
- Views: 1834
This will read the % of front vs rear. avgId = addChannel("FwdBrkBias", 10, 0, 0, 100, "%") function doBias() local a1 = getAnalog(0) local a2 = getAnalog(6) setChannel(avgId, ((a1 / (a1 + a2)) * 100)) end setTickRate(10) function onTick() doBias() end in this example: getAnalog(0) is the front pres...
- Thu Dec 06, 2018 1:07 pm
- Forum: Lua Scripting
- Topic: Calculated channel - brake bias
- Replies: 6
- Views: 2827
I'm not a lua expert but i'll try to help. If your pulling two analog channels then try this from the Lua Scripting examples. you'll end up with a virtual guage that will show front bias as a percent of front plus rear. should get you started in the right direction. prior to all this technology I've...