Jump to content

emc

Members
  • Posts

    231
  • Joined

  • Last visited

Everything posted by emc

  1. As far I know it is impossible enable/disable AIRIO with out reset Vaicom/DSC due to how jester wheel menu is implemented in DCS. For the seme reason you can not have both. So I would do not expect there will be this functionality at all! Nokia 6.1 with Tapatalka
  2. This due to somebody not solved merge conflict and leave git markers.... those <<<<<<<
  3. I just searching how to export some screens form DCS. Never hear about UltraMFCD... found DCS Virtual Cockpit, Helios etc. But UltraMFCD looks promissing. Is there anyway to support you with money... I would like to pre-order! If you really succeeded release 3.0 version, I think you should think about some pay-model.... hold on... before you will say anything... generally I really like idea what Hollywood do with ViacomPro... most of features are free with just few extra in paid version. I really prefer pay $5-8 to get SW which is updated, supported and keeping up with changes in DCS, rather it's superb tool but stop working in DCS 3.0+... you know what I mean ;) cheers!
  4. Yes my favorite module I invest a lot of time to learn it... still not fill comfortable for 100% ;) but pedals IMHO is a must I have "Saitek Pro Flight Rudder Pedals" not the best but they do their job, better then nothing...
  5. @QuiGon: looks like this is what you asking for... they said Ka-50 can carry A-A missiles... or isn't enough?
  6. differently you need large page file... I have 16 GB and I got few DCS crashes due to low memory, so I have setup page file as well. Yes, SSD/NVMe is a killer... it is good idea to buy one, since prices suppose get higher this year. If it is a option, upgrade RAM as well, but when you do consider 32 GB, or skip RAM nad invest just in NVMe ;)
  7. This is thread for DSCpy: https://www.digitalcombatsimulator.c...files/3307532/ https://github.com/emcek/dcspy https://discord.gg/SP5Yjx3 dcspy ---------------- DCSpy is able to pull information from DCS aircraft and display on Logitech G-series keyboards LCD. It supports: * Logitech device with 160x43 px (4 lines) monochrome LCD display - G13, G15 (v1 and v2) and G510 * Logitech device with 320x240 px (8 lines) full RGBA LCD display - G19 * F/A-18C Hornet UFC - Up Front Controller * F-16C Viper DED - Data Entry Display * Ka-50 Black Shark PVI-800 and autopilot channels * F-14B Tomcat - basic support for RIO CAP * more to come.... Requirements ---------------- * Python 3.8 but 3.6+ (with tcl/tk support, see installation) should be fine, please choose Windows x86-64 version, file should be python-3.8.5-amd64.exe https://www.python.org/downloads/ * Logitech Gaming Software 9.02.65 https://support.logitech.com/software/lgs * Logitech LCD SDK 8.57.148 extract to C:\Program Files\Logitech Gaming Software\LCDSDK_8.57.148 http://gaming.logitech.com/sdk/LCDSDK_8.57.148.zip * DCS-BIOS 0.7.34 (or newer) https://github.com/DCSFlightpanels/dcs-bios/releases/latest Installation ---------------- Package is available on PyPI, open Command Prompt and type: $ pip install dcspy or use attached wheel file: $ pip install dcspy-1.2.0-py3-none-any.whl Usage ---------------- 1. pip should install into you python installation directory: i.e.: * d:\python38\dcspy_data\dcspy.ico * d:\python38\scripts\dcspy.exe 2. You can drag and drop dcspy.exe to desktop and make shortcut (with custom icon). 3. Double click on dcspy icon or type dcspy.exe from Command Prompt. 4. LCD display should update with dcspy basic info, waiting to connect to DCS. 5. Run DCS and start any mission. Contributing ------------------ * You want contribute, perfect see: contributing guide https://github.com/emcek/dcspy/blob/master/CONTRIBUTING.md Mono vs. Color ----------------- DCSpy do not uses full potential of G19, which support full RGBA, 8-lines LCD with 7 programmable buttons. In contrast to mono devices (like G13, G15 and G510), which support mono, 4-lines LCD with only 4 buttons. Right now DCSpy use only top 4 lines of LCD and 4 buttons. Way in which actions assign to buttons for G13 (4 buttons form left to right) are mapped to G19 looks: * G13 1st button -> G19 left button * G13 2nd button -> G19 right button * G13 3rd button -> G19 down button * G13 4th button -> G19 up button Maybe in future when settings via config file will be added, then it allowed usage all 7 buttons in G19. Changelog 1.2.0: ------------------ * Simple Tkinter GUI - to sel ect your Logitech keyboard * Support for G19 - Big thanks for BrotherBloat who makes this release possible. He spent countless hours to share his G19 and let me troubleshoot remotely. * F/A-18C shows Total Fuel instead of Total Internal Fuel Changelog 1.1.1: ------------------ Basic support for F-14B Tomcat RIO CAP (Computer Address Panel): * CLEAR - button 1 * S-W - button 2 * N+E - button 3 * ENTER - button 4 Changelog 1.1.0: ------------------ * dcspy use now UDP multicast connection do DCS-BIOS, since each TCP connection slightly increases the amount of work that is performed inside of DCS (blocking the rest of the simulation). * support for integer data to be fetch from DCS-BIOS - using IntegerBuffer() * bios_data in Airplanes instances allow both StringBuffer() and IntegerBuffer() * reformat waiting time before DCS connected * fix Data Entry Display for F-16C Viper - DCS-BIOS 0.7.34 is required Changelog 1.0.0: ------------------ * Ka-50 data from PVI-800 shows (in similar boxes) on LCD * ProtocolParser for DCS-BIOS has new optimized state machine * LCD SDK is re-written from scratch: * low and high level API * auto-loading C library during importing * all API is type annotated and well documented * move loading LCD C library from G13 handler * internal: * refactoring and rename internals of G13 handler module * add unit tests Changelog 0.9.2: ------------------ * You can drag and drop dcspy.exe to desktop and make shortcut (with custom icon) * LCD prints current waiting time to connect to DCS * when DCS exit from plane/mission exception is catch and handle correctly * lots of internal changes, preparing for new features, most important: * change structure of AircraftHandler, move subscription to DCS-BIOS changes out of planes * update and clear methods move from G13 handler to LCD SDK Changelog 0.9.1: ------------------ * G13 handler have display property to send text to LCD * rename starting script to dcspy.exe * starting script now show waiting time for DCS connection * minor code optimization and refactoring Changelog 0.9.0: ------------------ * based on version specelUFC v1.12.1 * added basic handling for Ka-50 PVI-800 data are received but not formatted properly * F-16C DED should working but not 4 buttons under LCD - I don't have it so it is hard to test * G13 handler detect 32/64 bit of Python and load correct version of LCD Logitech C library * adding basic logging for debuging - prints on console * all defined aircraft are detected and loaded on-the-fly during operation * define new plane should be easy just use AircraftHandle as base class * Python LCD SDK was clean-up * other refactorings and code duplication removal Credits ---------------- This project has been heavily inspired by https://github.com/specel/specelUFC, and I want to thank specel, the author of that project for his work and the inspiring ideas. dcspy uses: ---------------- * DCS-BIOS fork by DCSFlightpanels for exporting data from DCS to local network https://github.com/DCSFlightpanels/dcs-bios * jboecker's parser to read data stream fr om DCS-BIOS https://github.com/jboecker/python-dcs-bios-example
  8. https://forums.eagle.ru/showthread.php?p=4170672 I sent them paper copy... But nothing really happen.
  9. Another ones this time in Krasnodar Track file https://1drv.ms/u/s!AolLiU3fMaHMithG0xFXyULxMGg7JQ?e=YkIBVn
  10. :( sad to hear it... so maybe stick it self is broken... but probably you don't have anybody around with different X56 :( keep us posted.... with tablet test.... hope you will fix this soon!
  11. It can be important... befor I bought X-56 I just watch some reviews and I remember somebody pointed it out it is really important do not connect HOTAS to before installation. Just connected them when instalator prompt it... They had really strange issues with HOTAS when thwy didn't follow procedure... sink it my mind. If you have some spare old PC install fresh win10, or maybe make quick virtualbox machine and share USB device with guest system.... see if it works....
  12. I just wonder why you can not use https://developer.elgato.com/documentation/stream-deck/sdk/overview/ (it support java scrip - anyway I'm not a fan of JS) to develop plugin to use DCS-BIOS And what you rally mean by 'not support windows10` which software https://www.elgato.com/en/gaming/downloads ??? I'm just thinkin of buy used one... but I want make a research first
  13. really helpful... in DCS you can not use all special buttons/toggles of X56, so you end up with part of configuration in DCS and part in SST or any other tool... So, I use SST to have one single place of configuration... SST could be better bu, it get jobs done most of a time....
  14. Yes I have X56_profiler process up and running, and everything is fine. I notice one one, I get similar issue to yours when I disconnect stick, while throttle is connected then I go to programming stick and I do not see modes changed, but when I connect stick to USB, back to normal.... so for some reason in your case profiler do not see stick... of course due to process in not working.... I have HUD.exe process running as well when I start configuring HOTAS I have sw ver: 8.0.213.0 driver: 8.0.197.0 Do you had HOTAS connected while installing software???
  15. can you post screenshoot, I don't have F-16.... should be easy to fix it.... EDIT: screenshot of G13 and DED from DCS ;)
  16. Hard to compare, never used old one. But I really happy, no issues, plug and play...
  17. Is there a way install some version earlier then latest, I have 1.3.8.0 and I would like update to latest stable not bata....
  18. Here is my story in short: Realteus version: - order 11-04-2019 - e-mail 12-08-2019 from them there is a delay - in meantime I try contact them many times... no success... - finally I found way to cancel my order: https://cdn.shopify.com/s/files/1/0001/8153/4732/files/Withdrawal_Form_Realteus.pdf?9884443220196200476 I sent them email with scanned signed copy and hardcopy by smail - 02-10.2019 I got email confirmation they cancel my order and said in 5 working day I will got my money back - 11-01-2020 no money, no product... no love... I leave you decision to you... how to call this.... :[ EDIT: Andre version: - 02-10-2019 - order - 02-10-2019 - mail with information - out of stock question: when I can expected delivery: answer: will be shipped before 28-11.2019 - 14-11.2019 - email - item was shipped - 27-11-2019 - package is in my hands (i choose cheaper delivery)
  19. @truhlik_fredy did you know this: https://forums.eagle.ru/showthread.php?p=4164582#post4164582
  20. Regarding DCS-BIOS I found this: https://forums.eagle.ru/showthread.php?t=259088
  21. emc

    Rudder Pedals?

    Never used others, but they are fine. I'm flying mostly shark and I haven't got any issue.
  22. You lucky bastard! :D I was thinking about it, but it is so expensive:cry:! No windows 10 support :huh: it sound like a joke with that price for device. Anyway I just bought used Logitech G13 and start developing in python fetching PVI-800 information via DCS-BIOS and display them on LCD. https://github.com/emcek/dcspy https://www.digitalcombatsimulator.com/en/files/3307532/
  23. Hi, I have problem with one minor key binding in Ka-50. Lighting auxiliary panel - RCtrl + RAlt + K Default key combination do not work. I assign new combination LWin + K and it doesn't work. I have to flip switch with mouse.
  24. Hi, I have problem with one minor key binding in Ka-50. Lighting auxiliary panel - RCtrl + RAlt + K First I bind it to my X56 (btw. here my X56 profile) and it doesn't working... but quickly I find out that default key combination do not work as well, I have to flip switch with mouse. I know, I know... it is totally minor issue but I just want find out is it just my or anybody else have same problem? EDIT: I assign new combination LWin + K and it doesn't work, I think I will report it ;)
  25. Hmmm... nice idea bur few question: 1. how set silver wheel as mouse wheel 2. I can't assign mouse wheel (I believe MOUSE_Z) in DCS to zoom it working only for external view all zoom commands axis commands
×
×
  • Create New...