Search the Community
Showing results for tags 'mfd'.
-
I recently moved, so I had to completely tear down my setup and move it. After setup, I can't get my Winwing MFDs to work. I have the full "top gun MIP" setup, with the UFC, HUD unit, and 3x MFDs w/ displays. The displays are working properly. The MFD portion with the buttons is not responding at all, on any of the 3 MFDs. When I plug them in I don't get a ding from Windows saying a USB device has been plugged in. I've tried moving the cables around. I plugged the USB-C cable from the working UFC unit into the MFD and nothing. I have everything plugged into a powered USB hub. I tried plugging the MFD directly into my computer, still nothing. They don't show up in SimAppPro or in DCS. I tried restarting with them plugged directly into my computer. Still nothing. Any suggestions?
-
Всем привет, на связи RTFC. Мы разработчики игровых устройств для авиасимуляторов. В этой теме мы будем выкладывать новости о наших устройствах и показывать как происходит их разработка и изготовление. Всем привет! Показываем вам наши рабочие будни, сегодня мы печатаем рамку для обновленного MFD - Bullseye из ABS-CF. ABS-CF - это пластик наполненный мелким углеволокном, благодаря чему детали из этого материала обладают повышенной прочностью и имеют красивую текстуру из за высокой спекаемости слоев. Как вам качество? А больше информации вы найдете у нас в группе 3d print_frame.mp4
-
Total Controls is right now cooking up something new. An Apache MFD frame sized as the real deal. The buttons will be backlit with adjustable lighting. The VID-knob will have a center detent just like in the real helicopter. There will be an option to use it to the left or to the right to avoid input conflicts in Windows. The image shows a mock up, but it is very close tho the final product, however it will be more polished. We can not say an exact price rigth now, but we aim at around 100-120 USD per unit and release it planed to sometime this spring. We will sell discount bundles and separate table mounts.
- 230 replies
-
- 24
-
-
-
I managed to scrounge up information from various scattered forum posts a while ago to make this monitor config a while ago, which currently has no issues working: However, I recently got 2 more MFD screens, but when I tried to add them to my monitor config file the main menu now stretches across all the MFDs, is there something I missed? Was hoping there would be some centralized up to date area where I can find out what I need to edit. EDIT: I plugged the code into copilot and it managed to pull the answer out of the ether for me, here it is in case it helps anyone.
- 3 replies
-
- monitor lua
- monitor config
-
(and 6 more)
Tagged with:
-
Всем привет. Некогда посетила меня идея попробовать сделать с нуля MFD панели как у F-16 с дисплеями. Хочу поделиться с сообществом результатом моих экспериментов. Возможно этот пост вдохновит на создание подобных элементов кокпита других вирпилов или может кому-то поможет упростить этот процесс, получив большую часть необходимой информации в одном топике. Вдохновило меня на это - видео от GENA PILOT: Настройка LCD экранов под TM COUGAR MFD для DCS. Идея заключалась в следующем: На 3D принтере сделать рамки MFD панелей с кнопками. На базе одного Arduino сделать схему джойстика на 56 кнопок под 2 MFD панели. Запрограммировать Arduino с помощью MMJoy. Разработать схему печатной платы под тактовые кнопки, которые поместятся в MFD рамки. Сделать печатную плату из фольгированного текстолита по ЛУТ-технологии. Найти подходящие LCD дисплеи на Ali Express и собрать все в кучу. Настроить кнопки и отображение MFD экранов из DCS на LCD дисплеях. 1. 3D печать рамок и кнопок. За основу были взяты 3D модели рамок с сайта: https://www.thingiverse.com/thing:3327543/files. Однако, модель имеет не оригинальные размеры, поэтому модель пришлось подгонять под чертежи. Кроме того, в модели есть множество мелких и не очень нужных элементов и пазов, которые могут криво напечататься, а использовать мелкие сопла или более дорогие виды пластика может существенно увеличить цену изделия. Также кнопки не имеют фасок и кнопки-качалки плоские, а в реале они вогнутые. В общем, методом тыка и с помощью какой-то матери я подогнал 3D модели под свою задачу убрав лишние и плохопечатуемые детали, а также немного улучшив модели кнопок: 3D модель MFD рамки 3D модель квадратной кнопки 3D модель прямоугольной кнопки-качалки Рамки решил печатать черным пластиком, а кнопки - прозрачным, с расчетом на то, чтоб сделать им еще подсветку. Важно! 3D модели кнопок имеют размер 1 в 1 под отверстия в рамке, поэтому их нужно печатать в масштабе 95-94% от оригинала, чтоб был зазор, иначе кнопки придется долго и нудно обтачивать на этапе постобработки, чтоб они "сели" на свои места в рамке. Результат получился таким: 2. Arduino и схема подключения В качестве основы для контроллера джойстика решил взять Arduino Pro micro на базе чипа ATmega32U4. Девайс вроде минимальный по размерам, а контактов достаточно для создания нужного числа кнопок. Каждая MFD-панель имеет 28 кнопок, соответственно для двух панелей необходимо по крайней мере 56 кнопок. В Arduino для настройки множества кнопок применяются схемы в виде матрицы состоящая из "строк" и "столбцов". Выглядит это примерно таким образом: Как видно из схемы для каждой кнопки также нужно подключать диод для того, чтоб Arduino смог определять какая из кнопок в "строке" нажата. Путем нетрудных расчетов для получения 56 кнопок нам необходима матрица из 8 строк и 7 столбцов. Итоговая схема для 2 панелей у меня получилась такой: 3. Программирование контроллера с помощью MMJOY Для программирования контроллера я использовал информацию и софт с сайта проекта mmjoy. Вкратце опишу процесс подключения, настройки и загрузки прошивки в контроллер исходя из текущей схемы. Скачай архив с актуальной версией MMJOY2 и распакуй в корень диска C (не рекомендуется, чтоб в пути к MMJOY была кириллица или пробелы). Подключи плату контроллера Arduino к компьютеру. Устройство должно определиться как Arduino Leonardo и должны установиться драйверы. Если драйверы не установятся, то установи их вручную через диспетчер устройств (devmgmt.msc), указав папку разархивированного MMJOY2 в качестве источника драйверов. Переведи в режим bootloader, для этого на плате ProMicro нужно кратковременно замкнуть и отпустить два контакта GND и RST. При этом в диспетчере устройств пропадет Arduino Leonardo и появится новое устройство Arduino Leonardo bootloader и в диспетчере устройств запомни номер COM порта, который отобразиться рядом с именем устройства. Через 8 сек. Arduino вернется в обычный рабочий режим. Запусти MMJoySetup.exe из распакованного архива MMJOY2. Перейди на вкладку "Прошивка". Укажи следующие значения в полях: Файл прошивки: C:\MMjoy2\Firmware\Firmware_lufa_[MMJOY2_ATMEGA32U4].hex Чип: ATmega32U4 Загрузчик: Arduino Порт: COM порт из предыдущего шага, например, COM4 (у тебя может быть другой порт!) Теперь переведи Arduino в режим bootloader замкнув кратковременно контакты RST + GND. После того как bootloader определится в системе поле с номером порта должно стать зеленым. В этот момент нужно сразу нажать "Загрузить прошивку". Если все сделано верно, то появится окно с терминалом cmd.exe в котором будет отображаться процесс загрузки прошивки. В результате в системе должно определиться новое устройство MMJOY2. Выбери устройство в "Список устройств и конфигурация". Изображение джойстика слева должно стать синего цвета, это будет означать, что MMJoySetup определил контроллер с новой прошивкой и готов к программированию. Перейди на вкладку "Настройка кнопок". И задай такие значения для рядов и строк, а также укажи напротив полей "Кнопка 1" - "Кнопка 56" соответствующие номера 1 - 56: Ряды и колонки соответствуют таковым из принципиальной схемы, которую я приводил выше. Только название контактов несколько отличается, от их маркировки на плате. Приведу, на всякий случай, схему какому контакту на плате соответствуют адреса в конфигураторе MMJoySetup: Нажми "Записать в контроллер". На этом программирование завершено. 4. Разработка печатной платы Печатную плату я решил делать сам "по старинке": фольгированный текстолит + трафарет на лазерном принтере перенесенный утюгом на плату + хлорное железо. Теплая, ламповая, Классика! Однако метод изготовления не принципиален. У меня было несколько идей какую именно конфигурацию платы использовать. Сначала я хотел сделать квадратную цельную плату, которая помещалась бы полностью внутрь рамки, однако из-за того, что у меня не оказалось подходящего инструмента, чтоб аккуратно выпилить такой квадрат в текстолите, и после нескольких неудачных попыток от такой идеи я решил отказаться, а вместо этого сделать 4 отдельные платки на каждую "грань" MFD панели, которые планировал соединить друг с другом проводами. Для реализации схемы нужен двусторонний текстолит, так как схема достаточно плотной получается, и на одной стороне все контакты не помещаются. Ближе к делу. Трафарет я нарисовал в sPlan6. На всякий случай выложу 2 варианта: Вариант цельной платы (требует доработок, так как в корпус MFD-рамки она не влезет!) Вариант цельной платы (PDF версия для печати) Вариант с 4 отдельными платами Вариант с 4 отдельными платами (PDF версия для печати) Background для sPlan схемы Нужно распечатать один из вариантов (рекомендую вариант из 4 плат) в 100% масштабе, желательно, на термотрансферной бумаге. Я печатал на мелованной бумаге (тоже пригодна для ЛУТ-технологии изготовления плат). Трафарет подготовлен таким образом, что при складывании листа одна сторона платы будет как-раз на своем месте над обратной стороной. При переносе тонера на текстолит, нужно очень точно расположить трафарет и желательно проверять "на просвет" что все дорожки на своих местах. 5. Делаем печатную плату Печатаем трафарет, утюжим, травим платы в хлорном железе: Лудим сплавом розе. Далее нужно аккуратно распилить плату на 4 отдельные, просверлить отверстия сверлом в 1 мм. Я использовал такую микродрель с цанговым патроном (на фото установлена фреза вместо сверла ). Отверстия в плате рассчитаны под тактовые кнопки TACT 6x6-4.3, высотой в 4,3 мм: Запаиваем кнопки и диоды по схеме. Диоды желательно использовать минимального размера. Впихнуть на плату их не просто. (Фото итогового результата распаянных элементов, к сожалению, я не сделал). 6. Подбираем LCD дисплеи Здесь я пытался найти 5-дюймовые квадратные дисплеи, чтоб максимально уменьшить колхоз, и приблизиться к оригиналу, однако ничего подобного я найти так и не смог. Поэтому остановился на аналогичном варианте на AliExpress, который предлагал GENA PILOT в своем видео (спасибо ему) в полной комплектации. LCD приехали ко мне за месяц: Робит! Убедись, что у тебя найдется 2 лишних HDMI порта на видеокарте 7. Сборка, настройка, проверка Платы спаиваем по схеме тонкими проводами. Фиксируем их на плате спермотермоклеем, так как они легко отрываются от посадочных мест. Проверяем, что все кнопки работают, и нигде не ошиблись на этапе пайки/прогроммирования. Тестировать удобно в MMJoySetup, выбрав контроллер из списка и перейдя на вкладку "Настройка кнопок". Нажми также "Считать из контроллера". Нажатие кнопок будет отображаться красным цветом. Подгоняем пластиковые кнопки и устанавливаем их в корпус MFD-панели. Если нужно дорабатываем их напильником надфилем и наждачкой. Устанавливаем платы в корпус MFD рамки. Фиксируем немного термоклеем по краям. Нужно убедиться, что кнопки встали ровно и нормально нажимаются. Если необходимо, "подравниваем" кнопки на плате, особенно это касается кнопок под "качалками", если впаять кнопки криво, то они могут плохо нажиматься. Если все ок - приклеиваем термоклеем основательно. LCD дисплеи я также аккуратненько по краям посадил на термоклей. Плату управления и контроллер LCD с обратной стороны экранов прикрепил на толстый двусторонний скотч. По 4 "жвачки" по углам платы, чтоб был зазор и плата как бы висела в воздухе (тут желательно под плату положить еще диэлектрик, так как корпус LCD металлический и можно легко замкнуть что-то на плате). Подключаем USB + HDMI к компу. Теперь нужно настроить расположение LCD экранов в конфигурации мониторов DCS. Для этого в папке DCS World\Config\MonitorSetup необходимо создать новый файл конфигурации мониторов. Здесь все индивидуально и зависит от разрешения и конфигурации ваших мониторов. В моем случае конфигурация такая (маленькие LCD в настройках Windows я развернул в вертикальное "книжное" положение, по умолчанию они используют "альбомное" отображение). Глобальные координаты рендера в DCS отсчитываются из верхнего левого угла самого левого дисплея. Поэтому необходимо подгадать координаты таким образом, чтоб каждый дисплей ровно отображал информацию и "вписывался" в свое место. В моем случае координаты получились такими: _ = function(p) return p; end; name = _('Camera + LMFCD + RMFCD + Custom'); Description = 'Left MFCD on the left, Right MFCD on the right and camera on the center' Viewports = { Center = { x = 768; y = 0; width = 1920; height = 1080; viewDx = 0; viewDy = 0; aspect = 1920 / 1080; } } LEFT_MFCD = { x = 60; y = 280; width = 688; height = 688; } RIGHT_MFCD = { x = 2748; y = 280; width = 688; height = 688; } UIMainView = Viewports.Center GU_MAIN_VIEWPORT = Viewports.Center Запусти DCS: Установи разрешение экрана исходя из суммы ширины всех дисплеев и высоты самого высокого. В моем случае это 768+1920+768 = 3456x1080. Выбери конфигурацию мониторов. Назначь кнопки OSB1 - OSB20 а также GAIN +-, SYM +-, BRT +-, CON +-. Результат Также записал коротенькое видео (снимал на кусок текстолита, за качество сорян) Имеющиеся косяки и планы На текущий момент я сделал только 1 MFD (для второго жду необходимые материалы, текстолит и прочую мелочь). Нет крепления, его я не продумывал и поэтому пока колхоз. Дисплеи не всегда с первого подключения определяются в системе (возможно у меня плохой кабель). В корпусе не предусмотрены нормальные посадочные места для платы, поэтому все держится на термоклее. Подсветку планирую сделать, но пока не знаю как. Внутри все довольно плотно, но что-то придумаю. На кнопках нет символики. Я планировал сделать трафарет и покрасить кнопки серой краской поверх трафарета, чтоб прозрачными были только символы и при наличии подсветки все было бы аутентичненько, но я пока не знаю как сделать такой мелкий трафарет с буквами SYM, GAIN и т.д. Внутри текущей рамки, есть посадочные места и отверстия под крепление, которые видимо планировал использовать автор 3D модели, однако мне они помешали и мне пришлось их спилить фрезой. Поэтому 3D модель, вероятно, придется оптимизировать с учетом этого недостатка. Расходы 3D печать 2 рамок с кнопками - $ 35 2 x LCD панели - $ 78 Текстолит, хлорное железо, диоды (FR207), кнопки (TACT 6x6-4.3) прочая мелочь ~ $ 10 Arduino Pro Micro - $ 8 Ссылки на файлы одним архивом: Яндекс Диск Google Drive MMJOY2 Конфиг дисплеев Camera+LMFCD+RMFCD+Custom.lua Пост писал на одном дыхании, так что мог что-то забыть/упустить. Задавайте свои ответы если что, буду рад ответить
-
reported earlier Sighting point label on FCR and TGP formats
Frederf posted a topic in Bugs and Problems
Label next to OSB10 on the FCR format shows "STP" instead of the correct "TGT" on FCR format when no TGP is carried. "TGT" label should be used in all preplanned AG modes instead of "STP" and labels for FCR and TGP format should always match. Aircraft without TGP Situation in which STP should be displayed: NAV, ACAL, FIX, AG MAN, SJ/EJ* Situation in which STP should not be displayed: AG VIP/VRP, NAV VIP/VRP**, CCRP, LADD, EO PRE, EO BORE, DTOS, CCIP, STRF^ Aircraft with TGP Situation in which STP should be displayed: NAV, ACAL, FIX, AG MAN, SJ/EJ* Situation in which STP should not be displayed: AG VIP/VRP, NAV VIP/VRP**, CCRP, LADD, EO PRE, EO BORE, DTOS, CCIP, STRF^ Correct Cannot Observe Not Correct Unknown *Unable to change FCR to GM type mode in JETT **Unable to select VIP/VRP in NAV master mode ^Documentation says that sighting rotary should be blank in AG visual modes which is the case in AGR but unsure if it should also be blank if the pilot changes the FCR to GM type as well. In DCS in AG visual attack modes and FCR shows a label it is "STP" or "TGT" depending on if TGP is loaded and not blank. F16 Sighting Point Label STP without TGP.trk -
I've been trying to learn how to export cockpit displays for a while. I've searched both ED forums and basic Google searches. There is so much content on the subject now, and a lot of it contradicts the other. Could someone please, either point me to a column or post that explains the basics for exporting MFDs, etc. to my second monitor? Or, post a tut or demo .lua on which file and what lines need to be modified to do a basic second monitor export? I'm wanting to export to my second monitor for now. But, I'm scratch building a universal panel and would like to learn this, so I can export to the small monitors I'll be using when it's finished. Here is my display setup now, it's a really basic stacked. Thanks for any help
-
Just peeled my first rough draft/prototype part off of the printer bed. I'm building a rudimentary, universal front panel for DCS. I'm finishing up on designing the MFD housing. The recessed, through hole perf board will hold my tac buttons and hopefully have my small displays centered on them. I'm just getting started on the UFC, not sure what all I want to include on the up front control. Want to keep it fairly simple, fairly portable. And, universal for all the modern aircraft in DCS, especially the Apache Mod. Not a big deal, but I'm pretty excited for my first 3D design and print....and it's for DCS!
-
Hi. This issue exists for a long time really. When I press HUD button on MFD-Cougar, my 8" TFT screen displays really heavy blurred HUD. It has been there for months, maybe more... I may be wrong but I remember that I've opened a thread or written on a thread about this, but couldn't find. So, opened again. Is there any move on this issue? Thank you.
-
Check out the link-http://ebay.us/sLfZdx?cmpnId=5338273189 LILLIPUT UM-80/C/T 8” USB Touch Screen Monitor | Plug&Play | USB Only | 2 Screens Included 2 LILLIPUT 8” touch screen monitors with USB cables. Great condition due to not using them very much in the past year. Simply plug the usb into any computer or laptop and you have an additional touchscreen monitor! One cable was missing when I bought this so i replaced it with a working cable last year, everything is still in perfect working order. Still have box and instructions!
-
Got a new SSD. I "cut" then "pasted" DCS from my HDD to my new SSD. I sometimes run IHOPIworks Device Server. Screen Exporter Every MFCD in the game is now blank. A10cii, Ka50, Harrier (with export app not running or not) Im Constantly losing my Game Settings. (Once a day i have to change Audio levels/Music off, change cockpits to english, turn on rudder trim in Special, driving me nuts) The Export App, starts then disappears. I cant run it, even if i wanted to. I deleted, SCRIPTS folder in the Users/SavedGames I ran repair a couple days ago, no change. This morning, DCS is crashing just trying to boot fast-game to take screenshots I pay for data.. so id rather not re-download 200 gigs. I spend more time trying to fix DCS than playing it.
-
When attempting to boresight thermal MAVs in the F16 at night (day too I believe) it is impossible to see the OSB button prompts on the screen due to a bright white background (usually sky or even buildings) because the OSB text is also white. I am at work at the moment and I don't have any screenshots but I imagine someone has run into this issue or could reproduce (I will edit in screenshots when possible). I tried adjusting all the brightness/gain/contrast controls around the MFD but it did not help make the OSB text visible. I am curious if anyone has any tips or even a mod to add an outline around the OSB text to help distinguish it from bright backgrounds. Thanks
-
OSB 6 contains in the rotary BARO (default), RALT, PR for barometric, radar altimeter, passive ranging (DTS) respective selection for secondary AG ranging sensor. OSB 9 has CZ for cursor zero function. Lower left corner has "W" navigation symbol or bullseye bearing-range symbol depending on UFC option selection. Colors are not representative of actual. Text OSB labels are white and navigation symbol is cyan.
-
Just installed a pair of lcd screens behind the Cougars. It looked okay, but the frame drop and stutter is unforgiving. I have a Ryzen 5600x, 6800xt, 32gb, 165hz monitor @ 3440x1440 rig which is quite smooth with all graphic options pushed to max except for AA and RT . (only play SP so far) But once I start pushing screens to the MFDs, it is choppy as @!₩#. (freesync is off) I am exporting via monitorsetup lua file adjustment(file attached). Freesync is off and total resolution on options is 4240x1440p (MFD LCDs are 800x600 each and are stacked on top of each other/ to the right of center screen) ANY Help would be greatly appreciated MFD export.lua
-
After I drop the tanks, the right MFD screen swaps to show that, but I can't figure out how to set it how it was before I drop the tanks. After the drop, I can no longer switch between A/A A/G or Nav anymore. I must be doing something dumb or there's a helpful action I don't have mapped.
-
As someone who flies aircraft with mirrors and multi-function displays such as the F/A-18, AV-8B, and soon the F-15E, I would like to suggest something. In the settings, you have "Res. of Cockpit Displays", which controls the resolution of the MFDs' image quality and cockpit mirrors. Personally, even though it decreases performance, I like to use my mirrors, but if I want to reduce the MFD resolution to have a more realistic LITENING image, my mirrors will also have their resolution halved. Since it's something simple and the F-15E is very close, I think it'd be a good idea to make a setting "Res. of Cockpit Mirrors" and change "Res. of Cockpit Displays" to only affect the MFDs.
-
I did a lot of research on this one and found several people with a similar issue, but no correct answers, so I figured I would post my solution. Issue: I received my new Cubesim MFD and hooked them up. When I added the Cubesim lua it did not work. This lead me to download and configure my viewports with Helios 1.6. This work great to get the viewports using the generic MFD left and MFD right onto the Cubesims, but when I jumped into my trusty F-16C the backgrounds on the MFD were transparent and showing the clouds and ground as I flew (see photo of Cubesims). After hours of troubleshoot and endless Google search's I realized what has happening on my setup. I had my monitor setup to the top right of the main screen (see attached red frame drawing). What the view port was doing was displaying an extension of the main screen view similar to using multiple monitor setups where you want to see more of the world to the left and right of the main monitor. Solution: Simply relocated the Cubesim monitor to the bottom of my main screen and redoing my monitorsetup with Helios. Now everything functions fine. I also switched to the Helios F-16 patched viewports. This affected the location of the viewport from the original location with the generic MFD viewport. I seen in other post that people were have an issue with the alignment of the view port in Cubesim MFDs so I will share my setup using Helios 1.6 to help. Main monitor 3440x1440 Left MFD 800x600 Right MFD 800x 600 Helios setting for both MFD 600x600 left 90 top 0
-
Hello F/A-18 pilots and LUA programmers, Using the provided display preset to export the left and right DDI's on the same monitor. I can use those because of my ultrawide. The DDI's are not readable without a background. i managed to add a mesh to the DDI's but i cant get them to be fully opaque. This is the code used in MPD_BASE.lua. the colour of the material is for debug purposes. The goal is to get the yellow square to be fully opaque so i can make it black and use it as the background. Thanks for the help in advanced, NCC1701JR MPD_base.lua
-
Hmm how to fix this in the Home Cockpit, the Thrustmasters MFDs have way to little buttons to could accommodate this. The Apache MFD has 31 buttons and 3 knobs, see the picture. I am considering changing the Thrustmaster MFD with two Elgato Steamdeck XL, they got 32 buttons. Any of you guyz have come up with a solution to this.
-
With the new patch update in open beta, the harrier MFD labels are beyond blurry. It’s like they are too bold of a font. I have used the gain and other buttons but still blurry. I never had this issue prior to the update and if I didn't know which buttons to hit, I wouldn't know where to click. Anyone else having this issue or how to fix it? I dont have this problem in the F18 or A10
-
This is my idea, but not finished yet. Basic parts: 2x Thrustmaster MFD Cougar 2x ZGYNK 8' 2x DP to HDMI conversion cable 1,5m 1x USB hub D-LINK H7 1x Lenovo TAB 3 8' + DCS UFC apk 1x Xinmotek XM-08 (button bar) 10x Button TS-12 (green light) Button bar 3D print https://www.thingiverse.com/thing:4755643 1x Lenovo TAB 3 8' + DCS UFC apk 4x USB extension cable 30cm (wireless headset, wireless mouse, PS2cam for TrackIR, free) 1x USB to Micro USB extension cable 20cm (Xinmotek XM-08) DDI panel - Plán.pdf DDI panel - Díly 7_2MM - TAB 8.pdf FA-18 BTN BAR PCB.pdf
- 2 replies
-
- 1
-
-
- thrustmaster
- mfd
-
(and 7 more)
Tagged with:
-
So this was driving me insane... one of my MFD 's would consistently disappear... but, I couldn't find the conditions under which it would disappear, I thought I had a cabling problem ... nope... I thought it was that the script I was using to create 128 buttons in TARGET... nope etc... A little about my controller set up: Thrustmaster Warthog HOTAS which I configure using TARGET, to get a full 128 buttons MFG Crosswinds v2 3 x Thrustmaster Cougar MFD 1 x Razer Tartus (configured as a joystick button box, because I prefer discrete DX button presses, as it creates less confusion keyboard collisions etc) 1 x Stream deck (configured as a joystick button box, using vjoy, because I prefer discrete DX button presses, as it creates less confusion keyboard collisions etc) I obviously turned of vjoy first and thought that fixed it but then in game, nope it would not work, re scanned device etc... nope still nothing ... I start looking into the Game Controller UI in desperation. Clue 1 I noticed that my MFD2 wouldn't configure correctly via the Game controller UI (even though it would still work in game) it would just show as a joystick, but, labelled as the Tartus so I pulled each of the controllers in turn, until i got it up as MFD... turned out it was the Tartus Resolution 1 I changed the MFD from MFD 2 to MFD 4 (luck more than logic) in the Game Controller UI, with the Tartus unplugged, each MFD number has a different VID in windows, so i guessed it was colliding. Each MFD now showed up correctly as an MFD the the Game controller UI. I ran Target and low there were still three MFD's hurrah ... or so i thought... I get into game and the MFD3 has gone AGAIN... some muttering (well swearing) what the hell is going on. Clue 2 why the hell do i have VIVE controller listed in DCS. 2nd order diagnostics (when does the MFD vanish) ... after many stages of testing it MFD3 only vanishes once Steam VR starts only when i have one or more hand controllers active (assumption what if to do the game controller mapping in SteamVR they are mapping the controllers to a VID that just happens to have collided with the MFD, as the newer device they would overwrite the existing device and the MFD vanishes, only if you run TARGET Resolution 2 Change MFD 3 to MFD 8 to see if that works it does hurrah Are we nearly there yet... no we bloody aren't Turn back on vjoy that works, turn back on the tartus and OFFS the configuration of the MFD4 via the Game Controller UI has c*cked up again... note the device works in game but FFS I won't less this beat me... Resolution 3 Turn the Tartus off Move the MFD to 7 because that is next to 8 that will be safe right ... wrong ... well 5 is next to 4 ... wrong ... 6 hurrah! Finally Left MFD1 is fine, my Right MFD is set to MFD6 in the UI, and the Center to MFD 8... conclusion getting multiple MFD's to work with multiple joystick devices is a complete pain in the bottom, and it would be really nice if the manufacturers would use a mechanism of ensuring their virtual joysticks dont collide with each other...
-
I know there is a lot of talk about homemade MFD setups. I found one video in particular where the guy connects a lilliput USB monitor to his setup. What is appealing about this is that my Graphics card has just two outputs (well three if you include VGA). So I cannot have 3 separate outputs for DDIs and then one for the main screen. A USB monitor fits my setup best. My question is, in the video below the guy says the screens have a USB input as well so the MFD Cougar can plug into the screen and both output/connect to the PC through the Lilliput USB cable. However, I have seen nothing in the description of the Lilliputs that confirms that they have a USB input. Does anyone know? I suppose I could connect both separately to the PC but his setup looks so streamlined. Anyone know anything about these screens?