MobiFlight Community Support

Welcome to the forum for MobiFlight! Feel free to reach out to the community in case you have questions, issues or just want to share great ideas or details about your latest home cockpit project.

You like MobiFlight? Donate via PayPal and support the MobiFlight development. Thanks! 

05/03/2024 - This forum is read-only

The community support for MobiFlight has moved exclusively over to our Discord server. Register for free and enjoy more interactive functions like image and video upload, voice chat. More than 7,000 registered users around the world make it a great experience!

See you on our MobiFlight Community Discord server.

A HUGE Thank You to everyone who participated in the forum, especially obviously to Pizman and Stephan who did an outstanding job over so many years providing an incredible service to the MobiFlight community.

The forum is still providing a lot of good content, hence we keep this information accessible.

icon
Avatar
clop6719
Posts: 2
Hello:

I'm trying to use a pot as a rudder trim set analog input. I've configured everything using this formula (from hubhop):

@ 12 - 32.506 * 16383 - -16383 max 16383 min (>K:RUDDER_TRIM_SET_EX1).

Everything is working fine. Now...I want to use a dead zone in the middle of the pot values. I checked that my pot goes from 12 to 1020, so I need a deadzone between lets say 480 and 520.

Can you help me in which way I have to change the above formula to make it work?. I know I need some kind of if statement:

if(@<480,formula,if(@<520,0,formula)) (aprox.)

Thanks in advance
Carlos
2022-12-13 21:25
Avatar
pizman82
Moderator
From: ETSI, Germany
Posts: 6010
Supporter
Hi

Sorry for late reply.... Hopefully you already solve this.

If not.... Please contact "JaimeLeon" on our Discord https://discord.gg/99vHbK7
He pretty sure can help you.
And be so kind to post here the final code so other users can see the solution, too.
Good Luck !
2022-12-29 16:27
Avatar
clop6719
Posts: 2
I found it:

@ 650
@ 750 <= and
if{ 0 (>K:AILERON_TRIM_SET_EX1) }
@ 650 <=
if{ @ 21 - 26.0461 * 16383 - -16383 max 0 min (>K:AILERON_TRIM_SET_EX1) }
@ 750 >=
if{ @ 750 - 62.5305 * 0 max 16383 min (>K:AILERON_TRIM_SET_EX1) }

deadzone between 650 and 750.
2023-01-09 19:33
icon