--IG 20220615 local SkipLoop = 10 --0,1s local function loop() SkipLoop = SkipLoop - 1 if(SkipLoop <= 0) then SkipLoop = 10 --0,1s system.getTxTelemetry() local txTel = system.getTxTelemetry() local Rx1Q = txTel.rx1Percent --local Rx2Q = txTel.rx2Percent --local RxBQ = txTel.rxBPercent if(Rx1Q <= 0.1) then --Q <= 10% SkipLoop = 400 --4s system.playSystemSound (SOUND_LOWQ) end end end return { loop=loop, version="0.10", name="Q-Bad"}