

jonny415
Members-
Posts
127 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Everything posted by jonny415
-
STREAM DECK PROFILES LIBRARY
jonny415 replied to ZQuickSilverZ's topic in PC Hardware and Related Software
@skypickle your welcome, the reason I asked was cuz i was thinking of buying 5x3 stream deck. -
STREAM DECK PROFILES LIBRARY
jonny415 replied to ZQuickSilverZ's topic in PC Hardware and Related Software
I am not sure why u need linking profiles unless have multiple stream deck and still could use folders. Here are the icons if needed it's not mine. A-10.zip -
Thanks for this, awesome work on that project, not a lot people worked on JF-17. I was thinking of using the BBI-32 and just use push buttons, but I have not made my mind yet about the size of the MFD since it's not 1-1 it's just desk simpit
-
STREAM DECK PROFILES LIBRARY
jonny415 replied to ZQuickSilverZ's topic in PC Hardware and Related Software
Yeah I can’t find anyone who has made it yet, but I don’t have that aircraft I wouldn’t even know which switches are needed. usually I like to start with cold start up then move to whatever other switches are needed to min the use of mouse, but I do have 2wk trial I can use. Let me read about it hope it can fit in stream deck XL without adding to many sub menu. -
So I just made a diagram of the right panel box 10 by 6 inches might not fit. Now looking in to buying the parts. Any suggestion would be welcome for the parts trying to keep plug and play.
-
I was just curious if anyone has made cockpit for JF-17 or panels. I am thinking to make desk panels, but have never worked with arduinos. I have 3d printer so I was thinking to start with right side panel box. Then left side panel and maybe do the MFD and UFC in future.
-
STREAM DECK PROFILES LIBRARY
jonny415 replied to ZQuickSilverZ's topic in PC Hardware and Related Software
Updated the F-16c profile F-16C VIPER stream deck XL profile (digitalcombatsimulator.com) -
yeah I could not get it to work, i will keep testing it from time to time the 1st row is working that was the main one I need. The arrow and Am won't show either for me. Mean while I am just updating all my profiles. Thanks for looking in to it.
-
updated the JF-17 stream deck profile JF-17 Thunder Stream Deck XL profile with cold quick start up (digitalcombatsimulator.com)
-
STREAM DECK PROFILES LIBRARY
jonny415 replied to ZQuickSilverZ's topic in PC Hardware and Related Software
Updated the JF-17 stream deck profile XL and 5x3 JF-17 Thunder Stream Deck XL profile with cold quick start up (digitalcombatsimulator.com) -
Got the JF-17 manual radio display working, but the second row won't display some of the text like arrows or Am. I just added the strings next to UFCP idk how to make them separate section when ever I do it crashes. Probably not the correct way of doing it 1st time trying it. function ExportScript.ProcessIkarusDCSConfigLowImportance(mainPanelDevice) -- UFCP Text Display Windows 1-4 local ufcp_1 = ExportScript.Tools.split(list_indication(3), "%c")[6] local ufcp_2 = ExportScript.Tools.split(list_indication(4), "%c")[6] local ufcp_3 = ExportScript.Tools.split(list_indication(5), "%c")[6] local ufcp_4 = ExportScript.Tools.split(list_indication(6), "%c")[6] local radio1 = ExportScript.Tools.split(list_indication(7), "%c")[3] local radio2 = ExportScript.Tools.split(list_indication(7), "%c")[8] -- Temporary fix: DCS-ExportScript uses colons (:) as separation between uplink messages. -- Replace all colons with semicolons for TOT view, TODO: add escape char parsing in streamdeck plugin (ctytler). ufcp_1 = ufcp_1:gsub(":",";") ufcp_2 = ufcp_2:gsub(":",";") ufcp_3 = ufcp_3:gsub(":",";") ufcp_4 = ufcp_4:gsub(":",";") radio1 = radio1:gsub(":",";") radio1 = radio1:gsub(":",";") -- The below logic handles the case where a UFCP display has been selected for entry and -- has blinking "--". -- Additional logic could be added to handle the blinking itself and show the other side -- with the e.g. win1fill value, however this logic seemed sufficient for now. if ufcp_1 == nil then ufcp_1 = "" elseif list_indication(3):match("txt_win1r") then ufcp_1 = string.format("%8s", ufcp_1) end if ufcp_2 == nil then ufcp_2 = "" elseif list_indication(3):match("txt_win2r") then ufcp_2 = string.format("%8s", ufcp_2) end if ufcp_3 == nil then ufcp_3 = "" elseif list_indication(3):match("txt_win3r") then ufcp_3 = string.format("%8s", ufcp_3) end if ufcp_4 == nil then ufcp_4 = "" elseif list_indication(3):match("txt_win4r") then ufcp_4 = string.format("%8s", ufcp_4) end if radio1 == nil then radio1 = "" elseif list_indication(7):match("txt_win4r") then radio1 = string.format("%8s", radio1) end if radio2 == nil then radio2 = "" elseif list_indication(7):match("txt_win4r") then radio2 = string.format("%8s", radio2) end -- Full 8 character strings. ExportScript.Tools.SendData(2001, string.format("%-8s", ufcp_1)) ExportScript.Tools.SendData(2002, string.format("%-8s", ufcp_2)) ExportScript.Tools.SendData(2003, string.format("%-8s", ufcp_3)) ExportScript.Tools.SendData(2004, string.format("%-8s", ufcp_4)) ExportScript.Tools.SendData(2013, string.format("%-8s", radio1)) ExportScript.Tools.SendData(2016, string.format("%-8s", radio2)) -- Left-Hand 4 character strings. ExportScript.Tools.SendData(2005, string.format("%-4s", ufcp_1:sub(1,4))) ExportScript.Tools.SendData(2006, string.format("%-4s", ufcp_2:sub(1,4))) ExportScript.Tools.SendData(2007, string.format("%-4s", ufcp_3:sub(1,4))) ExportScript.Tools.SendData(2008, string.format("%-4s", ufcp_4:sub(1,4))) ExportScript.Tools.SendData(2014, string.format("%-4s", radio1:sub(1,4))) ExportScript.Tools.SendData(2017, string.format("%-4s", radio2:sub(1,4))) -- Right Hand 4 character strings. ExportScript.Tools.SendData(2009, string.format("%-4s", ufcp_1:sub(5,8))) ExportScript.Tools.SendData(2010, string.format("%-4s", ufcp_2:sub(5,8))) ExportScript.Tools.SendData(2011, string.format("%-4s", ufcp_3:sub(5,8))) ExportScript.Tools.SendData(2012, string.format("%-4s", ufcp_4:sub(5,8))) ExportScript.Tools.SendData(2015, string.format("%-4s", radio1:sub(5,8))) ExportScript.Tools.SendData(2018, string.format("%-4s", radio2:sub(5,8))) end
-
STREAM DECK PROFILES LIBRARY
jonny415 replied to ZQuickSilverZ's topic in PC Hardware and Related Software
update the F/A-18C profile F/A-18C Hornet Stream Deck XL profile with cold start up (digitalcombatsimulator.com) -
Has anyone have the JF-17 radio panel frequency display done, saw one of the ctytler video it's possible like the UFCP he has made. I wanted to update my JF-17 stream deck profile. I tired doing it like the UFCP but didn't worked out. Thanks
-
STREAM DECK PROFILES LIBRARY
jonny415 replied to ZQuickSilverZ's topic in PC Hardware and Related Software
Was trying to update the JF-17 profile today I added a lot of missing button/knobs, but got stuck at the radio panel frequency display could not get that to display I saw on Tytler video where he found the strings. Has anyone manage to to get it working? -
STREAM DECK PROFILES LIBRARY
jonny415 replied to ZQuickSilverZ's topic in PC Hardware and Related Software
@Mongo5725 @Dallenbach I am not sure what's causing the issue with DCS bios hopefully someone can help you guys out in the forum. check if stream deck is running with or without admin, it should match with your DCS world, check the installation is in correct folder, and all the setting is correct I am posting pic check if they match. I use open beta -
STREAM DECK PROFILES LIBRARY
jonny415 replied to ZQuickSilverZ's topic in PC Hardware and Related Software
If you followed the videos correctly, then try to update your stream deck software and firmware, also check if stream deck is running with or without admin, it should match with your DCS world. Check if DCS bios is running. -
STREAM DECK PROFILES LIBRARY
jonny415 replied to ZQuickSilverZ's topic in PC Hardware and Related Software
Sorry I don't get it what is happening? Please explain more so someone can help you out. -
STREAM DECK PROFILES LIBRARY
jonny415 replied to ZQuickSilverZ's topic in PC Hardware and Related Software
here the link MUSTANG P-51D Stream Deck Profile (DCS-BIOS) Rel. 1.0 (digitalcombatsimulator.com) -
STREAM DECK PROFILES LIBRARY
jonny415 replied to ZQuickSilverZ's topic in PC Hardware and Related Software
It does take time to make a profile from scratch, I have made the profiles for F14,F18,F16,Harrier,JF17,Mig21, flaming cliffs3. You can download them and install it, regarding speeding up the time to make a new one is to find the profile you like and make changes to icons and add more switches to ur liking. Creating a icons takes the most time for me. -
STREAM DECK PROFILES LIBRARY
jonny415 replied to ZQuickSilverZ's topic in PC Hardware and Related Software
I have added the 5x3 format to the F-14B and Mig21bis, so just redownload and you will see 2 files XL and 5x3. Just move the icons where ever you like. -
STREAM DECK PROFILES LIBRARY
jonny415 replied to ZQuickSilverZ's topic in PC Hardware and Related Software
Yeah sure but tomorrow, I will just put all icons into 5x3 just fix the format to ur liking after. -
STREAM DECK PROFILES LIBRARY
jonny415 replied to ZQuickSilverZ's topic in PC Hardware and Related Software
I added the F-16 5x3 format u requested. -
F-14 TOMCAT stream deck XL profile with RIO cockpit
jonny415 replied to jonny415's topic in DCS: F-14A & B
Glad you liked it. Thanks