Page 1 of 1

Honda reverse lock script help

Posted: Thu Jul 21, 2016 10:25 pm
by PopKorn78
Hi guys,

I did a k series swap in my race car. Long story short, I need to activate the reverse lock when racing to not go to far when shifting in fifth.

Common way to fix this is to put the lock wire to the ground with a switch. That can be an issue if reverse is required after a spin and the driver forgets to flip the switch back.

I wonder if someone could help me with a script that could do the same as the switch(wire to ground) when the car gets to a speed over 20 mph and disengage when under 20.

Thanks in advance

Posted: Wed Jul 27, 2016 1:48 am
by PopKorn78
So I thought about it and I thinking that this script should do it.

function onTick()
if getGpsSpeed() > 10 then
setGpio(0, 1)
else
setGpio(0, 0)
end
end


Is running my "switch" trough the GPIO to get it to ground a good idea?

Posted: Mon Aug 22, 2016 7:06 am
by brentp
Correct, you can use a GPIO to drive a circuit up to 1A - such as an indicator light or relay.

Specs here: http://wiki.autosportlabs.com/RaceCapture

Whether this is a good idea for your race car, I cannot say! :D

Hope it helps