Just upgraded to the new version of MDX with COM support. Awesome! Got Steering wheel controls working great with RR.
Now question #2, how do I control Fusion Brain from AutoIt using COM?
I'm guessing something like this:
Code:
$FB = ObjGet("","FusionCOM.FusionServer")
$FB.usboff
And in the Fusion Config
Code:
<com status="enabled">
<commands>
<command id="usboff" minimum_delta_vote_time="100">
<do function="trigger output" functionTargetID="Digital Output 0" vote_opinion="off" vote_priority="medium"></do>
</command>
</commands>
...etc
But of course it's not that simple. Anyone have any ideas?