• Which the release of FS2020 we see an explosition of activity on the forun and of course we are very happy to see this. But having all questions about FS2020 in one forum becomes a bit messy. So therefore we would like to ask you all to use the following guidelines when posting your questions:

    • Tag FS2020 specific questions with the MSFS2020 tag.
    • Questions about making 3D assets can be posted in the 3D asset design forum. Either post them in the subforum of the modelling tool you use or in the general forum if they are general.
    • Questions about aircraft design can be posted in the Aircraft design forum
    • Questions about airport design can be posted in the FS2020 airport design forum. Once airport development tools have been updated for FS2020 you can post tool speciifc questions in the subforums of those tools as well of course.
    • Questions about terrain design can be posted in the FS2020 terrain design forum.
    • Questions about SimConnect can be posted in the SimConnect forum.

    Any other question that is not specific to an aspect of development or tool can be posted in the General chat forum.

    By following these guidelines we make sure that the forums remain easy to read for everybody and also that the right people can find your post to answer it.

P3D v4 SimConnect + PMDG 737 NGX + Selectors

Messages
7
Hi all,

I am trying to access my PMDG 737 NGX in P3Dv4 via SimConnect. Reading of the whole state and toggling switches is working fine. But I cannot set knobs and selectors to a specific value - neither by writing to the "control structure" nor by "TransmitClientEvent".

So I went back to the example code from PMDG (PMDG_NGX_ConnectionTest.cpp) and replaced
C++:
    SimConnect_TransmitClientEvent(hSimConnect, 0, EVENT_HEADING_SELECTOR, MOUSE_FLAG_WHEEL_UP,
        SIMCONNECT_GROUP_PRIORITY_HIGHEST, SIMCONNECT_EVENT_FLAG_GROUPID_IS_PRIORITY);
by
C++:
    SimConnect_TransmitClientEvent(hSimConnect, 0, EVENT_HEADING_SELECTOR, 120,
        SIMCONNECT_GROUP_PRIORITY_HIGHEST, SIMCONNECT_EVENT_FLAG_GROUPID_IS_PRIORITY);

According to the PMDG documentation, this should set the heading selector to "120":
Sending a value via the numeric parameter will tell the
simulation to place the switch/knob/lever/control into a specific position.
All values below 8192 are treated as a numeric position to which the item
being controlled should be placed.

The actual behavior is quite strange: When I trigger this event with the value "120", the heading selector is incremented by 1. If I send the event again, nothing happens. Only if I change the heading selector inside of the cockpit to a new value, the event will again (but only once) increment the selector by 1. The same happens with every knob or selector (e.g. main panel brightness). Or did I misunderstand the documentation and I have to use "wheel down" / "wheel up" in combination with reading the "data structure" until the selector is in the correct position?

Do you have any ideas?

Regards,
Martin
 
Back
Top