pilotjohn Posted September 6, 2020 Report Share Posted September 6, 2020 Are there any plans to support Stream Deck in FSUIPC? While it seems the device could be used to trigger FSUIPC through hotkeys (or vJoy with an existing plugin), there doesn't seem to be a clean way to have it switch profiles on plane changes (for example). Link to comment Share on other sites More sharing options...
Thomas Richter Posted September 6, 2020 Report Share Posted September 6, 2020 Hi, Quote there doesn't seem to be a clean way to have it switch profiles on plane changes (for example). when you create profiles in FSUIPC then they are related to Aircraft/planes only and change automatic when you change the Aircraft/plane. Check the FSUIPC manuals for Profiles and how to create them. Thomas Link to comment Share on other sites More sharing options...
John Dowson Posted September 6, 2020 Report Share Posted September 6, 2020 6 hours ago, pilotjohn said: Are there any plans to support Stream Deck in FSUIPC? No, I've never even heard of this before now! Seems to be something used for 'live streaming'. I'm not sure what support FSUIPC could provide for such a device. Link to comment Share on other sites More sharing options...
pilotjohn Posted September 6, 2020 Author Report Share Posted September 6, 2020 1 hour ago, John Dowson said: No, I've never even heard of this before now! Seems to be something used for 'live streaming'. I'm not sure what support FSUIPC could provide for such a device. I think the idea started for streaming, but it's essentially a button interface box (that happens to have a screen to allow you to "label" the buttons). It has an intuitive UI for configuring behaviors and an API for interfacing with it. I've seen several people use it for simming but it's a total kludge in most cases. There's a vJoy plugin for their app which would allow me to use it with FSUIPC, but the device itself can have profiles and the buttons themselves can actually show state (since it's just a screen). These are things that are missing. It would be nice to be able to use aircraft changes to load different button configurations (e.g. instead of having a generic panel with all the buttons for any airplane, load a config for specific planes), and to actually show the state of things (e.g. gear up/down, lights on/off). Link to comment Share on other sites More sharing options...
pilotjohn Posted September 6, 2020 Author Report Share Posted September 6, 2020 4 hours ago, Thomas Richter said: Hi, when you create profiles in FSUIPC then they are related to Aircraft/planes only and change automatic when you change the Aircraft/plane. Check the FSUIPC manuals for Profiles and how to create them. Thomas It's not about the FSUIPC profiles, but the Stream Deck profiles (e.g. what button does what and show what image). Link to comment Share on other sites More sharing options...
John Dowson Posted September 6, 2020 Report Share Posted September 6, 2020 Sorry, no plans to add any special support for this device in FSUIPC. However, it seems that you can do quite a bit with this and FSUIPC with LINDA. See John Link to comment Share on other sites More sharing options...
Pete Dowson Posted September 6, 2020 Report Share Posted September 6, 2020 9 hours ago, pilotjohn said: It would be nice to be able to use aircraft changes to load different button configurations (e.g. instead of having a generic panel with all the buttons for any airplane, load a config for specific planes), and to actually show the state of things (e.g. gear up/down, lights on/off). Apart from LINDA, you could do all that yourself with a Lua plug-in, assuming that you have appropriate (accessible) interfaces to that device. Pete Link to comment Share on other sites More sharing options...
Andydigital Posted September 7, 2020 Report Share Posted September 7, 2020 Spad.Next is adding support for the Stream Deck, its already available in the beta version. Unfortunately the trial version doesn't allow for testing of beta builds, but I took the plunge anyway and it is working great and Spad.Next is a very powerful tool anyway. They are even adding support for VRInsight gear in the not too distant future. 1 Link to comment Share on other sites More sharing options...
pilotjohn Posted September 7, 2020 Author Report Share Posted September 7, 2020 6 hours ago, Andydigital said: Spad.Next is adding support for the Stream Deck, its already available in the beta version. Unfortunately the trial version doesn't allow for testing of beta builds, but I took the plunge anyway and it is working great and Spad.Next is a very powerful tool anyway. They are even adding support for VRInsight gear in the not too distant future. Good to know, thanks. For now I'll probably use the vJoy actions without changing the button display state. Link to comment Share on other sites More sharing options...
RedSpinnaker Posted September 7, 2020 Report Share Posted September 7, 2020 Use the Streamdeck-vJoy plugin for the StreamDeck and vJoy. That will allow you to assign StreamDeck buttons to a virtual joystick button push. FSUIPC will see those button pushes and you can do what you want from there (either FSUIPC actions or LINDA). Link to comment Share on other sites More sharing options...
Conz Posted September 12, 2020 Report Share Posted September 12, 2020 (edited) I actually ended up on this thread while looking for a bi-directional way of using the stream deck with a flight sim. For those unaware, stream deck is sold as a button panel originally intended for 'streamers' but it is in fact just a configurable button panel you can technically use for anything. The software supports custom plugins written in Java / c++ or objective C I was really surprised the deck creators are not actually marketing this panel to Sim enthusiasts (Space / Flight / Farming etc etc), but it should be possible to make a custom plugin that connects to FSUIPC or even Simconnect and actually have 2 way communication between the buttons and FS in this case. Edited September 12, 2020 by Conz Typo Link to comment Share on other sites More sharing options...
pilotjohn Posted September 12, 2020 Author Report Share Posted September 12, 2020 1 hour ago, Conz said: I actually ended up on this thread while looking for a bi-directional way of using the stream deck with a flight sim. For those unaware, stream deck is sold as a button panel originally intended for 'streamers' but it is in fact just a configurable button panel you can technically use for anything. The software supports custom plugins written in Java / c++ or objective C I was really surprised the deck creators are not actually marketing this panel to Sim enthusiasts (Space / Flight / Farming etc etc), but it should be possible to make a custom plugin that connects to FSUIPC or even Simconnect and actually have 2 way communication between the buttons and FS in this case. There are two projects that you can use: https://github.com/nguyenquyhy/Flight-Tracker-StreamDeck which doesn't need FSUIPC and is bidirectional (e.g. update state) https://github.com/ashupp/Streamdeck-vJoy for which you probably want FSUIPC, but can always directly map to MSFS as well Link to comment Share on other sites More sharing options...
W4rl0ck Posted September 15, 2020 Report Share Posted September 15, 2020 Hi, I think it would be possible to create a native plugin using the .net framework, as I wrote in this thread: There is a .net library https://github.com/OpenMacroBoard/StreamDeckSharp that allows updating the screens in the buttons. Link to comment Share on other sites More sharing options...
W4rl0ck Posted September 17, 2020 Report Share Posted September 17, 2020 I have created a small proof of concept addon that only has a gear button. it shows the current state ( no gear / up / in transition / down ) and toggles the gear with a keypress. this is superior to using just any keypress or joystick animation since it can show the current state in the little screen. It would probably even be possible to draw a artificial horizon or something like that in the icons 🙂 I would like help in form of ideas, code support, icons / graphics and stuff like that. I'll definatly make it open source. here is a small video capture of the gear button in action: https://imgur.com/a/aUZ3Jl9 Link to comment Share on other sites More sharing options...
Cloudbuster Posted February 22, 2021 Report Share Posted February 22, 2021 On 9/7/2020 at 5:36 AM, Andydigital said: Spad.Next is adding support for the Stream Deck, its already available in the beta version. Unfortunately the trial version doesn't allow for testing of beta builds, but I took the plunge anyway and it is working great and Spad.Next is a very powerful tool anyway. They are even adding support for VRInsight gear in the not too distant future. HI I'm a newbie and I have both Spad.Next (full version) and Streamdeck XL. There is a paucity of info out there, at least as far as I can find. Did you install your streamdeck, software and all, and it then appears in Spad.Next? I'm more than a bit confused. Wish there was a tutorial or YouTube video walking through it. Thanks Link to comment Share on other sites More sharing options...
John Dowson Posted February 24, 2021 Report Share Posted February 24, 2021 On 2/22/2021 at 9:37 PM, Cloudbuster said: Did you install your streamdeck, software and all, and it then appears in Spad.Next? Thats probably a question you should ask on the SPAD.Next support forums. There is this plugin for Streamdeck for FSUIPC - not sure if it also works for the XL but if not it should be adaptable.: Link to comment Share on other sites More sharing options...
Crisu Posted January 9, 2023 Report Share Posted January 9, 2023 Hello, I have found the following solution but not tested so far: GitHub - Fragtality/PilotsDeck: Directly control the FlightSim from your StreamDeck via FSUIPC! Link to comment Share on other sites More sharing options...
John Dowson Posted January 9, 2023 Report Share Posted January 9, 2023 1 hour ago, Crisu said: I have found the following solution but not tested so far: GitHub - Fragtality/PilotsDeck: Directly control the FlightSim from your StreamDeck via FSUIPC! That is the same one as referenced in the following User Contributions topic: John Link to comment Share on other sites More sharing options...
Recommended Posts