You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I´am currently setup my Taranis QX7 with that lovely Lua Script.
Unfortunitly there are some promplems that i have encountered.
My VFAS Sensor getting me values from 10.8 to 16.8 depends on the battery i fly,
which i want to show on the bottom.
If I disconnect the VFAS sensor the script works fine with my switches, clock, RSSI, Timer and QX7 Voltage. There is only a problem when i activate that voltage sensor in my OpenTX.
I think there is this problem because the script expects an lower number.
I tried my best for several hours but nothing seems to help.
I want to show the VFAS Voltage on the Bottom with the fat numbers and that divided by 4(because i fly an 4s Lipo) shown in the graph on the left side on the screen as supposed.
Thank you, stay healthy and some some happy easter days.
Greetings from germany,
Chris
The text was updated successfully, but these errors were encountered:
I had the same issue with the left bar always being full. I found that since the latest updates of betaflight/opentx the average cell voltage has been named A4. By changing the following in line 388 of the farl.lua script you can get correct average voltage for your cells again.
From:
387 -- Now draw how full our voltage is...
388 local voltage = getValue('VFAS')
To:
387 -- Now draw how full our voltage is...
388 local voltage = getValue('A4')
Please confirm if this has solved your issue.
I've added the modified farl.lua here for convenience: farl.zip
I´am currently setup my Taranis QX7 with that lovely Lua Script.
Unfortunitly there are some promplems that i have encountered.
My VFAS Sensor getting me values from 10.8 to 16.8 depends on the battery i fly,
which i want to show on the bottom.
If I disconnect the VFAS sensor the script works fine with my switches, clock, RSSI, Timer and QX7 Voltage. There is only a problem when i activate that voltage sensor in my OpenTX.
I think there is this problem because the script expects an lower number.
I tried my best for several hours but nothing seems to help.
I want to show the VFAS Voltage on the Bottom with the fat numbers and that divided by 4(because i fly an 4s Lipo) shown in the graph on the left side on the screen as supposed.
Thank you, stay healthy and some some happy easter days.
Greetings from germany,
Chris
The text was updated successfully, but these errors were encountered: