--FunctionScript to loop the mixer values to telemetry sensors to log it in the logfile --Copyright LShems --GNU free to share -- --once installed, detect sensors. --after install, delete logfile from the instal date --this to allow the new columns to be created correctly in the new logfile. return { run=function() for i=1,7 do setTelemetryValue(0X0000,0,100+i,math.max(-1024,math.min(1024,getValue('ch' .. i))),0,0,"ch".. i) end end, }