* SENT: typo
* SENT: separate menu for input configuration
* SENT: pass SENT input number to decoder function
* SENT: is optional
* SENT: move gauges to "Sensors - SENT" category
* SENT: gauges show first channels statsistic only
* SENT: channels abstraction
First we define gpios used for SENT channels
Then we glue sensors to SENT channels
* SENT: fix gauges
* SENT: guards
* use tabs
* SENT: Lua glue: getSentValue returns ETB position now
Can be tested with following LUA script:
setTickRate(100)
function onTick()
pos = getSentValue(1)
setLuaGauge(1, 10000 * pos)
print(pos)
end