Search found 29 matches

by madjak
Mon Nov 07, 2016 7:51 am
Forum: Feature Requests
Topic: Sensor Warning Display
Replies: 3
Views: 7610

yeah and I use them, but they are hard to see when looking at certain dashboards.
by madjak
Thu Oct 06, 2016 5:51 am
Forum: Feature Requests
Topic: Sensor Warning Display
Replies: 3
Views: 7610

Sensor Warning Display

It would be awesome to be able to create a list of min - max values for various channels that sets the warning and error values across the entire RCP app. This could be read by the system and provide the coloured shading for all the gauges in every view as well as show a master warning / alarm. exam...
by madjak
Tue Jan 12, 2016 1:52 am
Forum: Sensors
Topic: Bosch Brake Pressure Sensor
Replies: 3
Views: 4599

I use the $30 ebay 1000PSI pressure sensors and they work very well.
by madjak
Mon Jan 04, 2016 3:38 am
Forum: Sensors
Topic: DIY ride height sensor
Replies: 4
Views: 6723

I haven't mounted it to the car yet... been busy on other things.

The sensor itself works fine, I get a variable voltage based on angle, it's just a matter of making some brackets to mount to the suspension.
by madjak
Thu Oct 01, 2015 5:27 am
Forum: Lua Scripting
Topic: AEM infinity CAN BUS data
Replies: 23
Views: 20972

you could probably program a work around by detecting if there a zero values in the data that correspond to set unique locations in the data chain. 32546820.0, 129.0, 0.0, 0.0, 0.0, 5.0, 48.0, 220.0, 96.0, 32546820.0, 3.0, 185.0, 0.0, 3.0, 3.0, 0.0, 0.0, 8.0, 32546820.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0...
by madjak
Tue Sep 22, 2015 4:34 am
Forum: Hardware and Installation
Topic: Bricked MK2?
Replies: 5
Views: 4698

This happened to me once, to reset the RCP back to default settings you can do this: 1) Hold down the logging button when you power it up. Red light should flash repeatedly 2) Start up the Race Capture app, goto the firmware section and roll back to an earlier revision (ie 2.7.9). You won't be able ...
by madjak
Tue Sep 15, 2015 2:12 am
Forum: Lua Scripting
Topic: AEM infinity CAN BUS data
Replies: 23
Views: 20972

you probably need someone else to help out regarding debugging the CAN log, however I can see no "32546819" values in the stream. Either you don't have an o2 sensor hooked up or that value is streaming out somewhere on another value. Also there are three "32546820.0" values in a ...
by madjak
Mon Sep 14, 2015 5:29 am
Forum: Lua Scripting
Topic: AEM infinity CAN BUS data
Replies: 23
Views: 20972

Can you please copy everything out of the script window and post it here. There is an error on line 13 of the script.
by madjak
Fri Sep 11, 2015 4:50 am
Forum: Lua Scripting
Topic: AEM infinity CAN BUS data
Replies: 23
Views: 20972

Are you sure thats all there is in the script window? I think the 196 is the line number and you should only have 50 lines of code.

make sure that script window is completely clear before you paste in the script.
by madjak
Fri Sep 11, 2015 2:25 am
Forum: Lua Scripting
Topic: AEM infinity CAN BUS data
Replies: 23
Views: 20972

I can't verify it works... I don't have AEM. Just written via the pdf found online.
by madjak
Thu Sep 10, 2015 8:15 am
Forum: Lua Scripting
Topic: AEM infinity CAN BUS data
Replies: 23
Views: 20972

here try this: setTickRate(25) initCAN(0, 500000) CAN_chan = 0 CAN_map = { [32546816] = function(data) map_chan(rpmId, data, 0, 2, 0.39063, 0) map_chan(tpsId, data, 4, 2, 0.0015259, 0) map_chan&a...
by madjak
Thu Sep 10, 2015 8:09 am
Forum: Lua Scripting
Topic: AEM infinity CAN BUS data
Replies: 23
Views: 20972

setChannel is the RCP command to map a virtual channel.

eg:
setChannel(rpm, 3000)

Can you post your full script?
by madjak
Thu Sep 10, 2015 2:38 am
Forum: Lua Scripting
Topic: AEM infinity CAN BUS data
Replies: 23
Views: 20972

close... but should be: CAN_map = { [32546816] = function(data) map_chan(rpmId, data, 0, 2, 0.39063, 0) map_chan(tpsId, data, 4, 2, 0.0015259, 0) map_chan(atsId, data, 6, 1, 1, 0) map_chan(ctsId, data, 7...
by madjak
Wed Sep 09, 2015 7:58 am
Forum: Lua Scripting
Topic: AEM infinity CAN BUS data
Replies: 23
Views: 20972

Just noticed you're in the US... so you need to change the lines: map_chan(atsId, data, 6, 1, 1, 0) map_chan(ctsId, data, 7, 1, 1, 0) to map_chan(atsId, data, 6, 1, 1.8, 32) map_chan(ctsId, data, 7, 1, 1.8, 32) so that you get it in Fahrenheit ... you'll also need to change the units in your virtual...
by madjak
Wed Sep 09, 2015 7:51 am
Forum: Lua Scripting
Topic: AEM infinity CAN BUS data
Replies: 23
Views: 20972

it'll only take me a sec... here you go: --Designed for AEM CAN Logging --AEM CAN V2 Broadcast Protocol --============================== Set Variables ================================= setTickRate(25) initCAN(0, 500000) CAN_chan = 0 -- 0=first CAN channel, 1=second --...