Jump to content

Roger01

Members
  • Posts

    236
  • Joined

  • Last visited

Everything posted by Roger01

  1. I change ExportScript.Config.ExportLowTickInterval to 0.1 and it's better, without any fps drop. :)
  2. Yes but it's not that I Want. 1/ Only move JHMS with the Track IR (not the camera/head + JHMS) 2/ If camera + JHMS, move the JHMS following the curve or the track IR and not staying in the center of the screen : if I move my head to the left, the JHMS should also move to the left more and more to the left too, to "follow" the eyes and not just stay in the center of the monitor [Edit] I see i'm not alone : https://forums.eagle.ru/showthread.php?t=199495
  3. Hi, Is it possible to use the track IR to move the JHMCS instead of the camera? Or at least moving the JHMCS exponentially with the track IR curve. For people how have a large view (3 screens) I think he's a good idea. Thanks a lot! [Edit] Screen :
  4. It's better with Ikarus, I just got a drop of 5-10 fps (70-75 instead of 80) but there's a low refresh rate on the "LCD screen" like IUEF and UFC, between 1 and 2 sec. However I have this : ExportScript.Config.ExportInterval = 0.05 -- export evry 0.05 secounds ExportScript.Config.ExportLowTickInterval = 0.5 -- export evry 0.5 secounds
  5. It's already done, I tested with many other versions but nothing to do ...
  6. Perfect, I don't find why I get a FPS drop (I think there's a problem with the export code) So I will try with Simpit. Can't read now the 137 pages of the thread, anyone have a F18 profil like the Capt Zeen's one, or a least a beginning of profile ? Thanks!
  7. Thanks a lot. Last question, I think the answer is YES but it for to be sure. With Simpit, can I do same think like helios with the f18c profil? Because Helios do a huge FPS drop... :( Thanks again!
  8. Hello, I have the same problem. Fresh install Helios 1.4 (tested with the 1.3 too) : https://www.digitalcombatsimulator.com/fr/files/3302014/ I just add the line "(lfs.writedir()..'Scripts\\Helios\\HeliosExport.lua')" in export.lua and I get a huge FPS drop (45~ fps instead of 80~ ) just loading a game, doing nothing more. This is not the Capt Zeen profil (f18c) et not the Helios app itself (I don't launch the Control Center att all for testing) , but I think is HeliosCore.lua coz I just rename HeliosCore and I left (lfs.writedir()..'Scripts\\Helios\\HeliosExport.lua') without any fps drop (it's sure that Helios does not work without HeliosCore). Windows 10, 1070ti, 16go DDR4, i5 7600k, SSD.
  9. Hmm, under $1000, I take it for sure! (hotas + panel). I look forward a demo of the final product!
  10. Hello! I must get this : https://github.com/s-d-a/Ikarus or this: https://github.com/H-J-P/Ikarus ? Thanks a lot!
  11. Hello, I use Capt Zeen F/A-18C Beta Helios Profile https://forums.eagle.ru/showthread.php?t=212725 And I use only 2/3 items (just 15/20 lights) but the more I'm playing, the less fps I have ingame (40 instead of 75/80) If I delete this line : (lfs.writedir()..'Scripts\\Helios\\HeliosExport.lua') I get max FPS all the time. So, it's a helios "bug" or the profil of Capt Zeen? Thanks a lot!
  12. Dcs bios : I would like to use the data of dcs bios to create instruments on a 2nd screen. Helios. It's Helios, coz i use it on the same screen of my mfd export and I export only 2/3 lights from Helios.
  13. Hi, I use Helios to get some instruments informations but Helios do a hudge fps drop . Can I use dcs bios to create virtual instrument like an export (like Helios...)? Using c++ builder and import dcs bios output. (I'm noob on programmation) thx!
  14. Do you have a price range? 300-500? 500-1000? 2000-3000? I think more people can say yes or no if they know a price range.
  15. Nice work! Hope it will be affordable but I think buy it, if it's really perfect. I follow the thread.
  16. Thanks a lot. And Helios (the export.lua command line, not the software) do a hudge fps drop, the more memory dcs take, more is the drop (40fps with the export commande line, 70 without.)
  17. Thanks 98abaile, your .obj works well, but the other .obj on this post won't work (object is too small), even with cura 3.6. Any idea? I read this post but I don't find the solution.
  18. Hi! Great job! Is it possible to export the helios profil + MFD/RWR etc.. to an other computer? Thanks a lot!
  19. Hello! Any one know how works the EMERGENCY_PARKING_BRAKE_PULL ? Then the brake is pulled I cant use any "dcs bios message" to push de brake. Any idea? Thanks! [Edit] WING_FOLD_PULL worls perfectly for exemple.
  20. I master better and better the code of Ranma13 : It's very easy once understand how the api works .
  21. I found the perfect code§ HURRAY§ For the 3 peoples how want : On start (after var streamDeck = streamDeckApi.getStreamDeck(); ): var etat; on "function initializeKey(key)", add : case 'switch': createSwitchButton(key); break; -------- "function addKeyListener(key)", after the "ledbutton" code : else if (key.type == 'switch') { streamDeck.on(`down:${key.number}`, () => { if (key.etat == 1) { api.sendMessage(`${key.button} 0\n`); } else if (key.etat == 0) { api.sendMessage(`${key.button} 1\n`); } }); } ---------- after the "function addKeyListener(key)" add all of this (yeah I copy the code already present :music_whistling: I just add : "key.etat = value;") function createSwitchButton(key) { var upImagePath = path.resolve(IMAGE_FOLDER + key.upImage); var downImagePath = path.resolve(IMAGE_FOLDER + key.downImage); if (!key.currentImage) { key.currentImage = upImagePath; } // Draw the key immediately so that we can see it. draw(key); // Draw the new image when the LED etat changes. api.on(key.led, (value) => { key.currentImage = value ? downImagePath : upImagePath; key.etat = value; draw(key); }); } That's all! Now, you can type this on menu code (for exemple, you must create your own .jpg/png): 1: { type: 'switch', button: 'APU_CONTROL_SW', led: 'APU_CONTROL_SW', upImage: 'rwrpwroff.png', downImage: 'rwrpwron.png' }, For controlling the APU switch et get the APU state. This code read the state of the LED code and draw the right picture. :thumbup: switch works indirectly with stream desk and mousse click without error.
  22. I think I found a code how works, but only if : 1/ I press the switch ingame before (with click mouse or button of the stream deck) and 2/ I must stay in the same page If not, the button won't work. In the video Case 1 is the switch key and Case 3 is the ledbutton key : function addKeyListener(key) { if (key.type == 'switch') { api.on(key.led, (value) => { streamDeck.on(`down:${key.number}`, () => { if (value==1) { api.sendMessage(`${key.button} 0 `); } else if (value==0) { api.sendMessage(`${key.button} 1 `); } }); }); } I get errors in powershell but the script continue to run without other problem: (node:6224) MaxListenersExceededWarning: Possible EventEmitter memory leak detected. 11 down:1 listeners added. Use emitter.setMaxListeners() to increase limit I have this error if I switch page, back to F18 page and press a lot on the switch button.
  23. Ok thanks a lot :thumbup:
  24. Is there a very big différence with War brd base and the warthog base? Or use just based on feeling? Why you say War brd is better? Thanks a lot!
×
×
  • Create New...