Skip to content
View in the app

A better way to browse. Learn more.

The AVSIM Community

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Saitek Proflight FSUIPC button programing

Featured Replies

So, I don't have a set of rudder pedals. Just can't afford them right now. I do have A2A's 172 and have been using autorudder but want to get a little more control so I programmed buttons 6&7 on the yoke as my rudder buttons with auto center when released. I am wondering if there is anyway to slow the move back to center. Right now it slams back to center and is causing some issues.

Boeing777_Banner_Pilot.jpg

Russell Homan

I am wondering if there is anyway to slow the move back to center. Right now it slams back to center and is causing some issues.

 

You could do it with a Lua script that you would call from your button release event. This would just be a loop that winds your rudder back to the centre, maybe with some delays built in. Something like this:

local OFST_RUDDER = 0xBBA

local RudderPos = ipc.readUW(OFST_RUDDER)  -- Range -16383 to +16383

while RudderPos ~= 0 do
    if RudderPos < 0 then
        RudderPos = RudderPos + 1
    else
        RudderPos = RudderPos - 1
    end
    ipc.writeUW(OFST_RUDDER, RudderPos)
    if abs(RudderPos) % 16 == 0 then ipc.sleep(1) end  -- Delay 1ms, a maximum of (16384 / 16) times
end

This would centre the rudder from full deflection in about a second. I have not tried it so you will need to tinker!

MarkH

https://www.youtube.com/@AlmostAviation
AMD Ryzen 7 9800X3D / 64Gb DDR5 / Zotac RTX 5070 Ti / 2560 x 1440 display

  • Author

hmm never thought of being able to do something like this. yeah I will give it a try. It is better than nothing. Thanks a bunch

Boeing777_Banner_Pilot.jpg

Russell Homan

Create an account or sign in to comment

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.