Page 1 of 1

RPM of 3 cylinder engine

Posted: Fri Oct 06, 2017 5:15 pm
by Yu
Ihave a 3 cylinder engine.
So, When setting RPM, Pulse Per Revolution is 3/2.
I would like to be able to select Pulse Per Revolution 3/2.
When will you look to add it as an option app release?
I hope for early release.

Posted: Fri Oct 06, 2017 6:03 pm
by Yu
I have created Lua Scripting.
Is this OK?

---
setTickRate(10)
local rpm = getTimerRpm(0)
local rpmLimit = 12000
local rpmId = addChannel("RPM",10,0,0,rpmLimit)

function doRPM()
if rpm < rpmLimit then
end
setChannel(rpmId, rpm/1.5)
end

function onTick()
doRPM()
end
---

Posted: Thu Oct 19, 2017 3:13 pm
by brentp
That seems reasonable. Does it work correctly?