AhSoul Posted June 25, 2023 Posted June 25, 2023 (edited) 13 hours ago, Trigati said: Hi all, not had time to work on the UFC, Radios etc for the more advanced stuff but I was able to re-format the BIOs data so this version 0.2 now includes the indicator lights and the raw gauges. F-15ESE.lua 39.65 kB · 17 downloads Thanks for the update - now my master mode and master caution buttons reflect the cockpit which is great Currently have a cut-down UFC on the right of my 'top level' page, then a full UFC on its own page. Graphics are taken from a mix of F-18 and other profiles for now. Edited June 25, 2023 by AhSoul [sIGPIC][/sIGPIC] Soul's pit thread
Wostg Posted June 25, 2023 Posted June 25, 2023 (edited) Nice! Tested the UFC, all good except the right side in the script needs correcting for UFC_Data.UFC_SC_12-07 Edited June 25, 2023 by Wostg I can think of nothing heavier than an airplane I can think of no greater conglomerate of steel and metal I can think of nothing less likely to fly
AhSoul Posted June 25, 2023 Posted June 25, 2023 (edited) Made it a bit more realistic. On the actual SD the backgrounds of the button show up more grey than in screenshots of the app Edited June 25, 2023 by AhSoul [sIGPIC][/sIGPIC] Soul's pit thread
AhSoul Posted June 25, 2023 Posted June 25, 2023 I'm starting to think I need 2 stream decks 33 minutes ago, Wostg said: Nice! Tested the UFC, all good except the right side in the script needs correcting for UFC_Data.UFC_SC_12-07 How are you getting the UFC values into the buttons? I can't see them in the lua [sIGPIC][/sIGPIC] Soul's pit thread
Wostg Posted June 25, 2023 Posted June 25, 2023 35 minutes ago, AhSoul said: I'm starting to think I need 2 stream decks How are you getting the UFC values into the buttons? I can't see them in the lua If I tell you can I ask you to squeeze the lot into a 5x3 profile? Its from line 868 of the 0.3 file, 82021 is the top line righthand e.g. 'STR 1A': if UFC_Data.UFC_SC_12 ~= nil then ExportScript.Tools.SendData(82021,UFC_Data.UFC_SC_12) else ExportScript.Tools.SendData(82021," ") end 1 I can think of nothing heavier than an airplane I can think of no greater conglomerate of steel and metal I can think of nothing less likely to fly
AhSoul Posted June 25, 2023 Posted June 25, 2023 13 minutes ago, Wostg said: If I tell you can I ask you to squeeze the lot into a 5x3 profile? Its from line 868 of the 0.3 file, 82021 is the top line righthand e.g. 'STR 1A': if UFC_Data.UFC_SC_12 ~= nil then ExportScript.Tools.SendData(82021,UFC_Data.UFC_SC_12) else ExportScript.Tools.SendData(82021," ") end Oooh how did I miss that post!!! [sIGPIC][/sIGPIC] Soul's pit thread
AhSoul Posted June 25, 2023 Posted June 25, 2023 (edited) Hmm the left side works but if I use the right side starting at 82021, the values are the same as the left??? Edited June 25, 2023 by AhSoul [sIGPIC][/sIGPIC] Soul's pit thread
Wostg Posted June 25, 2023 Posted June 25, 2023 Yeah, there's typos in that section @Trigati, needs replacing with: -- RIGHT SIDE DESCENDING FROM THE TOP if UFC_Data.UFC_SC_12 ~= nil then ExportScript.Tools.SendData(82021,UFC_Data.UFC_SC_12) else ExportScript.Tools.SendData(82021," ") end if UFC_Data.UFC_SC_11 ~= nil then ExportScript.Tools.SendData(82022,UFC_Data.UFC_SC_11) else ExportScript.Tools.SendData(82022," ") end if UFC_Data.UFC_SC_10 ~= nil then ExportScript.Tools.SendData(82023,UFC_Data.UFC_SC_10) else ExportScript.Tools.SendData(82023," ") end if UFC_Data.UFC_SC_09 ~= nil then ExportScript.Tools.SendData(82024,UFC_Data.UFC_SC_09) else ExportScript.Tools.SendData(82024," ") end if UFC_Data.UFC_SC_08 ~= nil then ExportScript.Tools.SendData(82025,UFC_Data.UFC_SC_08) else ExportScript.Tools.SendData(82025," ") end -- THIS IS THE RADIO LINE 1 if UFC_Data.UFC_SC_07 ~= nil then ExportScript.Tools.SendData(82026,UFC_Data.UFC_SC_07) else ExportScript.Tools.SendData(82026," ") end 1 I can think of nothing heavier than an airplane I can think of no greater conglomerate of steel and metal I can think of nothing less likely to fly
Trigati Posted June 25, 2023 Posted June 25, 2023 Sorry, will correct it soon and re-post for all.Sent from my iPhone using Tapatalk 1 1
AhSoul Posted June 25, 2023 Posted June 25, 2023 Much better Long strings on the Data page (like Time and Wind) don't fit well in one SD button. Not sure if they should be split into the centre column? [sIGPIC][/sIGPIC] Soul's pit thread
Max0oh Posted June 25, 2023 Posted June 25, 2023 Hello guys ! Sorry to bothering. Relatvly news Streamdeck user, can i ask where you found these F-15E icons ? I'm trying to understand how it works to create also a profile Thanks a lot !
AhSoul Posted June 25, 2023 Posted June 25, 2023 2 minutes ago, Max0oh said: Hello guys ! Sorry to bothering. Relatvly news Streamdeck user, can i ask where you found these F-15E icons ? I'm trying to understand how it works to create also a profile Thanks a lot ! I've taken some from other profiles, but a for a lot of the F-15 I've just created a blank button graphic and then I'm using the SD app to put the text over the top 1 [sIGPIC][/sIGPIC] Soul's pit thread
Trigati Posted June 25, 2023 Posted June 25, 2023 Much better Long strings on the Data page (like Time and Wind) don't fit well in one SD button. Not sure if they should be split into the centre column?You might have a good idea there, once I’ve had time to fix the basics I’ll look at a version with stuff like that…but using different exports codes so it stays backward compatible or something. Wont be straight away as I’m still at work for 3-4 hours before I can look at anything.Sent from my iPhone using Tapatalk 1
AhSoul Posted June 25, 2023 Posted June 25, 2023 1 minute ago, Trigati said: You might have a good idea there, once I’ve had time to fix the basics I’ll look at a version with stuff like that…but using different exports codes so it stays backward compatible or something. Wont be straight away as I’m still at work for 3-4 hours before I can look at anything. Sent from my iPhone using Tapatalk No panic mate - appreciate all the effort!!! [sIGPIC][/sIGPIC] Soul's pit thread
AhSoul Posted June 25, 2023 Posted June 25, 2023 (edited) Anyone know how to get buttons to move the radio channel knob left and right? nullThis makes the channels go up, but I can't seem to make a button to go down.... Also is there a binding to push it in? Edited June 25, 2023 by AhSoul [sIGPIC][/sIGPIC] Soul's pit thread
sobe Posted June 25, 2023 Posted June 25, 2023 (edited) New to this stuff. Is Ahsoul's profile available for download? I would like to try it even if it is not obviously finished. Does the icon package come with the lua profile? Edited June 25, 2023 by sobe Trackir4 using the latest Trackir 5 software, Win10 Pro [Creator Update] updated from Win7Pro Pro 64Bit, Intel® Core™ i5-2500 3.30 GHz 6M Intel Smart Cache LGA115 , GigaByte GA-Z68XP-UD4 Intel Z68 Chipset DDR3 16GB Ram, GTX MSI Gaming 1060 [6 GB] Video Card, Main Monitor 1 on left 1920x1080 Touchscreen Monitor 2 on right 1920x1080 .
Wostg Posted June 25, 2023 Posted June 25, 2023 (edited) 45 minutes ago, AhSoul said: Anyone know how to get buttons to move the radio channel knob left and right? The push will be a separate button command. For dials you can only use the 'allow cyle to beginning' so it resets to the first value. If you want it to go backwards you need to make a separate dial with negative increments. Edited June 25, 2023 by Wostg I can think of nothing heavier than an airplane I can think of no greater conglomerate of steel and metal I can think of nothing less likely to fly
AhSoul Posted June 25, 2023 Posted June 25, 2023 (edited) Started on a Sensors page with some 3 way toggles etc. 22 minutes ago, sobe said: New to this stuff. Is Ahsoul's profile available for download? I would like to try it even if it is not obviously finished. Does the icon package come with the lua profile? I'm not sure if the graphics get included if I export. Happy to try it (I'll need to split into it's own profile as right now I have all my aircraft in 1 large DCS profile). Aren't you on my Discord already Sobe? Edited June 25, 2023 by AhSoul [sIGPIC][/sIGPIC] Soul's pit thread
Trigati Posted June 25, 2023 Posted June 25, 2023 Still working but saw my idiot mistake on the right hand UFC so fixed it. I can't test as cannot actually run DCS at work (big boss would not like it) but will be online later on where I will attempt to look at the WSO UFC and any crashes to the export that can occur. Thanks all! F-15ESE.lua 1 2
Trigati Posted June 25, 2023 Posted June 25, 2023 Before I start working on this tonight…does anyone have any requests for export fields they would like setup?I’m thinking Fuel readout, but post up some requests here and I’ll see what I can do.Sent from my iPhone using Tapatalk
AhSoul Posted June 25, 2023 Posted June 25, 2023 (edited) 2 hours ago, Wostg said: The push will be a separate button command. For dials you can only use the 'allow cyle to beginning' so it resets to the first value. If you want it to go backwards you need to make a separate dial with negative increments. Ahh maybe I need to use the UFC button control then not the rotaries. First off, lights panel Edited June 25, 2023 by AhSoul [sIGPIC][/sIGPIC] Soul's pit thread
sobe Posted June 25, 2023 Posted June 25, 2023 AhSoul Not sure if I am on your discord. Please send me the link to see. Trackir4 using the latest Trackir 5 software, Win10 Pro [Creator Update] updated from Win7Pro Pro 64Bit, Intel® Core™ i5-2500 3.30 GHz 6M Intel Smart Cache LGA115 , GigaByte GA-Z68XP-UD4 Intel Z68 Chipset DDR3 16GB Ram, GTX MSI Gaming 1060 [6 GB] Video Card, Main Monitor 1 on left 1920x1080 Touchscreen Monitor 2 on right 1920x1080 .
Wostg Posted June 25, 2023 Posted June 25, 2023 (edited) 2 hours ago, Trigati said: Before I start working on this tonight…does anyone have any requests for export fields they would like setup? I can't think of anything clever, but maybe whatever would be good to have 2/3 in one icon - all the bottom right HUD nav items in one grouping, RALT/BALT, stuff like that? When you were first looking into the script, did you find where all the gauges were hiding - usually they're in mainpanel_init.lua but that's empty and I want to find the fuel and engine monitor displays. Edited June 25, 2023 by Wostg I can think of nothing heavier than an airplane I can think of no greater conglomerate of steel and metal I can think of nothing less likely to fly
AhSoul Posted June 25, 2023 Posted June 25, 2023 2 hours ago, Trigati said: Before I start working on this tonight…does anyone have any requests for export fields they would like setup? I’m thinking Fuel readout, but post up some requests here and I’ll see what I can do. Sent from my iPhone using Tapatalk Total/Left/Right fuel amounts as a nice string plz? [sIGPIC][/sIGPIC] Soul's pit thread
bones1014 Posted June 25, 2023 Posted June 25, 2023 (edited) 5 hours ago, Trigati said: Still working but saw my idiot mistake on the right hand UFC so fixed it. I can't test as cannot actually run DCS at work (big boss would not like it) but will be online later on where I will attempt to look at the WSO UFC and any crashes to the export that can occur. Thanks all! F-15ESE.lua 42.41 kB · 17 downloads Seems to be working well in the Pilot seat. Great work! I've been trying to see how you did it. I found the file that lists the lines you used for the UFC data. I have no idea how to differentiate between the front and back seats. They seem to use the same lines. Something to do with this I assume. getListIndicatorValue(8) Edited June 25, 2023 by bones1014
Recommended Posts