Auto Logging using increased RPM
Posted: Thu Jun 23, 2016 10:47 pm
Hi Guys,
I currently have Lua Script entered to auto-log using GPS speed. I'd like to change this & start auto-logging when the engine starts using over 500 RPM. I'm wondering how you delete the old script (do you just delete & rewrite on the app?) & can any tech experts let me know if the below script should work (using the RPM1 input)? Cheers!
function onTick()
if getTimerRpm() > 500 then
startLogging()
else
stopLogging()
end
end
I currently have Lua Script entered to auto-log using GPS speed. I'd like to change this & start auto-logging when the engine starts using over 500 RPM. I'm wondering how you delete the old script (do you just delete & rewrite on the app?) & can any tech experts let me know if the below script should work (using the RPM1 input)? Cheers!
function onTick()
if getTimerRpm() > 500 then
startLogging()
else
stopLogging()
end
end