The Caution Panel (with a Typo) - A10C Warthog Simulator

Sdílet
Vložit
  • čas přidán 9. 09. 2024
  • This video is a look at the Caution Panel in my A-10C Home Cockpit
    It is run uysing a 'Phidgets LED64 Advanced' USB Interface- www.phidgets.c...
    Here is the orginal video i made on how i cut/paint and engrave the Panels for my cockpit- • Making Flight Sim Pane...
    All my plans, panel files, and 3D printing .stls are free for download at thewarthogproj...
    I sometimes livestream on twitch- / thewarthogproject
    Or check out my Instagram at- / thewarthogproject
    FREQUENTLY ASKED QUESTIONS:
    How much did this cost?
    Answer is explained fully right here! - • What it Cost! - A10C W...
    What Game/Sim is this?
    Digital Combat Simulator World (A-10C Tank Killer II) - www.digitalcom...
    Can I have a free copy of all your panel design files?
    Yes you can! - thewarthogproj...
    What software do you use to warp the projector image? Fly Elise-ng Immersive Diplay Pro - fly.elise-ng.n...
    What software do you use to export the gauges on the main panel?
    Helios - github.com/Hel...
    What are your PC Spec?
    Gigabyte Z390 Aorus Master, Intel i7-9700k OC to 5ghz, 32GB Corsair RAM, Gigabyte Aorus GTX1080ti Waterforce Extreme Edition, Samsung 920 EVO M.2 1TB SSD (OS and DCS), Samsung 860 QVO 2TB 2.5" SATA SSD (Storage), Two XSPC 360mm Radiators, EKWB Velocity CPU Waterblock, EK-RES X3 250mm with D5 water pump, Custom Hard Tubing, Lian Li PC-011 Dynamic Black Case. All RGB turned off!

Komentáře • 114

  • @mike_van_in
    @mike_van_in Před 4 lety +102

    I don't know if enough people have told you this - but your video production and your narration is really good. No unpleasant verbal mannerisms, just clear, well prepared speech, well edited transitions, practical lighting - all things that are invisible when done properly. Most of all; consistent! Excellent work!

    • @RobotoForgoto
      @RobotoForgoto Před rokem +2

      I don't know....what about the dodgy accent! 🤣 just pulling yer leg!

  • @philiplitvin3914
    @philiplitvin3914 Před 4 lety +60

    I keep waiting for the video of you installing an engine and taking off out of your living room.

  • @robbieh1899
    @robbieh1899 Před 4 lety +73

    Mate, you've my ULTIMATE respect and appreciation in what you've accomplished.
    I only worked out recently how to release bombs on the A10C...

    • @sporehux8344
      @sporehux8344 Před 3 lety +8

      Fun fact, you can catch up to your bombs when diving after release. :(

    • @recklesflam1ngo968
      @recklesflam1ngo968 Před 3 lety +9

      @@sporehux8344 That sad face tells me you learning this did not end well :(

    • @WarrenPostma
      @WarrenPostma Před 2 lety +2

      Hello other me.

    • @icemarkom
      @icemarkom Před rokem

      @@sporehux8344 You can do that in Hornet, too. Ask me how I know :-)

  • @jwracingteam
    @jwracingteam Před rokem +1

    Didn't know I needed a laser cutter/engraver until I just viewed this :)

  • @scottcampbell96
    @scottcampbell96 Před 2 lety +15

    The real panels have two bulbs per status light (for redundancy) and they are definitely not of equal brightness. Since some of your status lights will be a little dim because of the slightly burned pieces, they actually contribute to more realistic lighting.

  • @matk4731
    @matk4731 Před 4 lety +5

    That’s sick. You must be looking forward to the update A-10. Thanks for sharing 👍🏻👍🏻🙃🙃

  • @terranovarain6570
    @terranovarain6570 Před 4 lety +12

    Amazing skills 👏 love your passion

  • @Squog
    @Squog Před 4 lety +15

    Good job dude! super jelly of your setup! Looking forward to you getting a fully working HUD and then completing the whole shebang with a canopy frame (hint hint hint!) ;)

  • @Waylander131
    @Waylander131 Před 2 lety

    fantastic, I can't get enough of your videos, Sir! I will use this knowledge on building my cockpit for a different type of aircraft but the know-how you show is priceless! Due to budget constraints, I can't afford a K40 or similar laser cutter so I am building a laser CNC myself and I'm going to use the machine for engraving only and do the cutting by hand.

  • @RainmanHST
    @RainmanHST Před 4 lety +3

    Fantastic video.. Man I REALLY wish I purchased a laser cutter like yours when I started my project.

  • @No1sonuk
    @No1sonuk Před 4 lety +5

    My first thought on LEDs for this panel is "Neopixels".
    The wiring is easy - Power all in parallel, data all in series.
    Control is easy - One data line from the Arduino, each LED is individually RGB addressable.

    • @bretttoddable
      @bretttoddable Před 3 lety

      I've been fiddling around with doing this with Neopixels, any pointers on the required Arduino code required to address each Led?

    • @No1sonuk
      @No1sonuk Před 3 lety

      @@bretttoddable I use the FastLED library here:
      github.com/FastLED/FastLED

    • @bretttoddable
      @bretttoddable Před 3 lety

      @@No1sonuk thanks for that, I'm having a hard time getting dcs bios to run the fastled code, don't suppose you mind sharing yours?

    • @No1sonuk
      @No1sonuk Před 3 lety

      @@bretttoddable I've only tried a simple backlight brightness thing so far.
      This code also includes some LCD stuff you'll need to extract. One thing to remember is to do all the other library includes BEFORE the DCS BIOS library include.
      '
      '
      /*
      Tell DCS-BIOS to use a serial connection and use interrupt-driven
      communication. The main program will be interrupted to prioritize
      processing incoming data.

      This should work on any Arduino that has an ATMega328 controller
      (Uno, Pro Mini, many others).
      */
      #define DCSBIOS_IRQ_SERIAL
      #include
      // #include
      #include
      #include
      // I2C connections:
      // Board I2C / TWI pins
      // Uno, Ethernet A4 (SDA), A5 (SCL)
      // Mega2560 20 (SDA), 21 (SCL)
      // Leonardo 2 (SDA), 3 (SCL)
      // Due 20 (SDA), 21 (SCL), SDA1, SCL1
      #include
      LiquidCrystal_I2C lcd(0x27,20,4); // set the LCD address to 0x27 for a 20 chars and 4 line display
      #include "DcsBios.h"
      /* paste code snippets from the reference documentation here */
      // Which pin on the Arduino is connected to the NeoPixels?
      #define BACKLIGHTPIN 9
      // How many NeoPixels are attached to the Arduino?
      #define NUMPIXELS 12
      CRGB leds[NUMPIXELS]; // For fastLED
      uint8_t backlightBrightness = 64; // initial value - will be set in brightness function later (255 max)
      uint8_t backlightBrightnessOld = 64; // initial value - for use in loop code
      DcsBios::LED masterCaution(0x1012, 0x0800, 13); // Master caution light
      DcsBios::Switch2Pos ufcMasterCaution("UFC_MASTER_CAUTION", 10); // Master caution reset
      // This secction determines which control the backlight LEDs respond to
      void onLcpConsoleChange(unsigned int newValue) {
      /* your code here */
      backlightBrightness = map(newValue,0, 65535, 0, 255); // Change 16-bit input to 8-bit for FastLED brightness function
      FastLED.setBrightness(backlightBrightness); // Set the new level
      FastLED.show(); // Send it to the LEDs
      }
      DcsBios::IntegerBuffer lcpConsoleBuffer(0x1150, 0xffff, 0, onLcpConsoleChange);
      void onCmsp1Change(char* newValue) {
      lcd.setCursor(0,0); // set cursor position (column,line) starting at 0
      lcd.print(newValue);
      }
      DcsBios::StringBuffer cmsp1Buffer(0x1000, onCmsp1Change);
      void onCmsp2Change(char* newValue) {
      lcd.setCursor(0,1); // set cursor position (column,line) starting at 0
      lcd.print(newValue);
      }
      DcsBios::StringBuffer cmsp2Buffer(0x1014, onCmsp2Change);
      void setup() {
      DcsBios::setup();
      lcd.init(); // initialize the lcd
      lcd.backlight();
      lcd.setCursor(0,0); // set cursor position (column,line) starting at 0
      lcd.print("Disply online");
      lcd.setCursor(0,1); // set cursor position (column,line) starting at 0
      lcd.print("Awaiting DCS");
      FastLED.addLeds(leds, NUMPIXELS);
      FastLED.setBrightness(backlightBrightness);
      fill_solid( leds, NUMPIXELS, CRGB(0,255,0)); // Fill strip with green
      leds[0] = CRGB::Red; // Set 1st led as red - because why not?
      FastLED.show();
      }
      void loop() {
      DcsBios::loop();
      }
      '
      '
      BTW, I use this username over on the ED forums if you'd prefer to continue this in a better format.

    • @bretttoddable
      @bretttoddable Před 3 lety +1

      @@No1sonuk Many thanks for this bud, I will look you up in the forums... Thanks again!

  • @randycarter2001
    @randycarter2001 Před 5 měsíci

    I don't know if you know this but an Arduino Uno and a single MAX7219 can turn on 64 LED's individually. The MAX7219 has all of the current limiting circuitry built in. The current is set by a single resistor. No other components needed. You wire the LED's in an 8 row by 8 column matrix. Adafruit sells a product that can do 128 LED's in a 16 x 8 matrix.
    Only 3 pins from the microcontroller.

  • @Jager-er4vc
    @Jager-er4vc Před 4 lety +1

    Absolutely love your A-10C project! Keep the videos coming!!!

  • @GeoFry3
    @GeoFry3 Před 3 lety +2

    Looked like you are using regular screws for you panels. Look up dzus/zloc fasteners for that authentic touch. They are quick release fasteners used on many instrument panels.

  • @ALPHARICCO875
    @ALPHARICCO875 Před rokem

    Fantastic work Congratulations 👌👏

  • @Datttsnake
    @Datttsnake Před 4 lety +1

    This is great Ive been trying to figure out how to make a annunciator panel and this is exactly what I needed!

  • @WarrenPostma
    @WarrenPostma Před 2 lety +1

    This is really cool. It makes me wanna go out and buy one of these laser cutter dealies. I am thinking of making a thing that looks like it could be either a caution panel or an MFD, or a glass cockpit module (thing general aviation garmins), and is mounted in a cockpit, but the display will be entirely handled by an android tablet.

  • @MrHichammohsen1
    @MrHichammohsen1 Před 4 lety +1

    Amazing work as usual! Very inspiring.

  • @james2563
    @james2563 Před 4 lety

    Perfect, I love your videos. It will be very helpfull when I start with my own Cockpit.

  • @lucachacha71
    @lucachacha71 Před 2 lety

    Thanks to the algorithme for this

  • @CasaDeLoco_BoredBob
    @CasaDeLoco_BoredBob Před 2 lety

    This is a thing of beauty.

  • @yorgle
    @yorgle Před 2 lety

    Really great technique to make this panel! Love it! Thanks!

  • @paulb36utube
    @paulb36utube Před 4 lety +4

    I can’t wait until the arduino build

  • @owensparks5013
    @owensparks5013 Před 4 lety +1

    Top bloke 👍

  • @biiLL4bonG
    @biiLL4bonG Před 2 lety

    This is just awesome, hure respect for that project! Would love to build some cockpit to - so thanks for sharing your files! Maybe i can get in touch some day with this :)

  • @Xeus1985
    @Xeus1985 Před 4 lety

    What amazing work Sir! Keep on!

  • @pethoviejo
    @pethoviejo Před 2 lety

    Awesome!

  • @SVgamer72
    @SVgamer72 Před 4 lety

    Love the work! Thanks for sharing. Very inspiring!

  • @bryanmorgan356
    @bryanmorgan356 Před 3 lety

    There is a new alternative to TrackIR, its called Smooth Track, it uses a mobile phone, (needs a certain type) but very good works via wifi to your dcs pc. I love it so much better.

  • @GaryMCurran
    @GaryMCurran Před 4 lety

    I have to wonder which you like more, the fling of your sim, or the actual building of it!
    I'm not in a position right now, but after watching your video, and the new Flight Simulator 2020, I want to build a GA, complex single or twin cockpit.
    I'd like to find a wrecked fuselage for something like a Piper Seminole, Arrow, or Malibu. Cut off the fuselage right before the firewall and aft of the two front seats. Then, start to fill in the cockpit. A couple of G1000 displays, a yoke that gets connected behind the panel to both yokes in the cockpit. Not sure about the rudder pedals.
    Anyway, your work on your son is very encouraging for those of us who can't fly the real stuff anymore

  • @rafbarkway5280
    @rafbarkway5280 Před 2 lety

    Strange fact-the early bulb versions of these pannels with twin bulbs were upgraded to fixed LED versions,the LED's are more reliable but if ONE fails
    the whole panel needs to be replaced..NOT cheap.i have one somewhere but my place is a mess.

  • @zimbakin
    @zimbakin Před 4 lety

    Great video. Really well explained, thanks.

  • @JamesP33R
    @JamesP33R Před 4 lety +1

    No! Your other Left! ;) Hate when that happens. I printed a set of UFC Buttons with engraved text in them. Up until I installed it, I thought it had a 'Back' button, when in fact, it's supposed to be a 'Hack' button. Oops.

  • @noel12397
    @noel12397 Před 4 lety

    Really cool mate! Keep it up!

  • @theperpetual8348
    @theperpetual8348 Před 4 lety +3

    I wonder if there's any way to give DCS your head position (eg trackir) without that translating into a camera movement. Then you could use the scorpion with your projectors, if you found a headtracker that does those very wide angles anyway. Perhaps a gyroscope track? There are people that use old phones for that stuff so it's not impossible.

  • @D4NS80
    @D4NS80 Před 2 lety

    Awesome job! Are you an avionics tech as a day job by any chance? Very tidy work.
    Interesting seeing the slow mo at 13:00, it only cuts in one direction not on the return to the left.
    Pretty cool project.

  • @cklescewski
    @cklescewski Před 2 měsíci

    I love this project, and I want to use some of what you've done for a project of mine. I want to use this panel (the caution panel) as part of my vehicle. I have this in place of the idiot light in my 2001 GMC Sierra 2500HD. If I could pick your brain that would be great.

  • @Nanne118
    @Nanne118 Před 4 lety +1

    So, are you looking forward to making an adaption for the new upcoming A-10C II module (upgrade)?
    Love your work mate, it is a true inspiration :D

  • @AurelTristen
    @AurelTristen Před 4 lety +3

    I'm guessing you'll be first in line for DCS A-10C II? If so, are you looking forward to cutting those new panels? Fingers crossed that there will be a way to use the helmet mounted hud with a static screen.

    • @thewarthogproject
      @thewarthogproject  Před 4 lety +3

      I think the only thing i wont be able to use is the new HMD- unless i go back to using trackir. That is unlikley.

    • @schmiddy8433
      @schmiddy8433 Před 4 lety +2

      @@thewarthogproject maybe you could un-assign head movement in DCS from trackir but assign HMD movement to it, might require some additional software as a proxy for those axes.

  • @LukeAinsworth
    @LukeAinsworth Před 4 lety +4

    Looks awesome man, where do you get your acrylic from? Sounds like you're in Australia too!

    • @thewarthogproject
      @thewarthogproject  Před 4 lety +3

      I get some in bulk on ebay, and some of the harder to find stuff here- www.acrylicsonline.com.au/

  • @Peteskis
    @Peteskis Před 4 lety +1

    Great Vid, Sorry if it has been asked but what laser do you have please? Thank you

  • @sorryforcallingyouanelonga1766

    I love your videos

  • @nikosgeorgakis6759
    @nikosgeorgakis6759 Před 3 lety +1

    Captain! Giving inputs is ''somehow'' ''easy'' via an Arduino etc. But Getting feedback from the software (in case of hydraulics failure for example) how the Game informs your board that ''this led'' should light/ come ON? Does this software give you the opportunity to do so?

  • @ItsOnlyErwin
    @ItsOnlyErwin Před 3 lety +1

    This is really incredible :-) I would like to go down this path but for an F18, any good suggestions for an F18 plan? Also, knowing where you are now, what would you have done differently to optimize your build? If you had to start all over now? Thanks for the Epic content :-) Greetings from South Africa

  • @indianajon7980
    @indianajon7980 Před 4 lety +1

    Amazing as always. Will you upgrade the cockpit with the new upcoming release or are you sticking with how you have it?

  • @xuhaoping4360
    @xuhaoping4360 Před 3 lety

    try ht16k33, that can drive 8*16 led

  • @jasontrueman2726
    @jasontrueman2726 Před 4 lety +2

    Good stuff love the content! Question about your buttons you used for your UFC and CDU , did you print those or did you cut them with the K40, I've been looking at ways to make proper buttons with back-lit lettering and numbers, i want to cut them with my k40 but trying to find a way to keep them in the panel ? I can print them but then I don't get the nice led back-lit with the acrylic, any suggestions or help would be appreciated

    • @No1sonuk
      @No1sonuk Před 3 lety

      He explains it all here:
      thewarthogproject.com/keypads-and-buttons

  • @crazystuffproduction
    @crazystuffproduction Před 4 lety

    I want to see a anupdate, a led with muti colors would be cool, even if only for a LED DEMO TEST mode. SEE Neopixels

  • @zeesterrene
    @zeesterrene Před 3 lety

    Wow, very impressing job!
    Could you tell more about your lasercutter (what K40 updates do you have and which software are you using).
    Are you still using the K40 for modifications/updates of your simpit?
    I would like to build an A10 simpit also and allready bought the plans.

  • @heefie8659
    @heefie8659 Před 4 lety +2

    So I'm curious now that wags released the HMCS video, I'm sure you're super happy about the warthog II overall, but are you able to incorporate that?

    • @thewarthogproject
      @thewarthogproject  Před 4 lety +3

      I could if I went back to TrackIR... but i doubt ill do that. Ill give it a go and see how it works. The HMCS looks great- but I'm much more exited for the improved flight model!

  • @flymetothemoon5138
    @flymetothemoon5138 Před 2 lety

    Is there a video dedicated to your laser cutter and the upgrades you've done to it?

  • @ShuhDonk
    @ShuhDonk Před 4 lety +1

    There may of been a R al error but you thought it was left :)

    • @thewarthogproject
      @thewarthogproject  Před 4 lety +1

      Haha really most of the times Ive seen those light up its because BOTH of the wings have fallen off

  • @MichalPlichta
    @MichalPlichta Před 4 lety +1

    What happen with your project (huge respect to you) when A-10 Tank Killer II will be released? How it would affect your cockpit?

    • @thewarthogproject
      @thewarthogproject  Před 4 lety +3

      Biggest panel change will be the new ARC-210 radio- which im building already. As far as i can tell, everything else will still work. I think the only thing I wont be able to use it the new Scorpion HMD - unless I go back to using trackir (which is very unlikely).

  • @wall_y
    @wall_y Před 2 lety

    Why the leds are 64, as you tell in this video, when the cells on the front side are 12rows x 4 coloumns?

  • @sairus6055
    @sairus6055 Před 2 lety

    Visually panel looking great nice job. But electrically this is a mess... wires soldered to single leds... How about build pcb on one side SMD leds (maybe even addressable like ws2812 or equal) and on another side all your circuits (It can be just connector for control board like arduino or even control board itself ) Addressable LEDs give you brightness and color control for really big amount of "pixels".
    Best regard.

    • @thewarthogproject
      @thewarthogproject  Před 2 lety

      That's the nature of using a Phidgets LED64 board. I didn't build it. I'm using a commercially available board, that requires soldering single leds....

  • @uniteddrones7626
    @uniteddrones7626 Před 4 lety +1

    You have any videos on upgrade to ur printer, I hear right it’s a k40

  • @h0tdiggity_dog918
    @h0tdiggity_dog918 Před 4 lety +1

    Do you have a link for that Laser CNC?

    • @thewarthogproject
      @thewarthogproject  Před 4 lety +2

      No direct links- but its just a cheap eBay K40 with a few decent upgrades- machine is similar to this- www.ebay.com.au/itm/40W-CO2-LASER-ENGRAVING-MACHINE-LASER-ENGRAVER-CUTTER-USB-PORT-CRAFTS-ARTS/281951608772?epid=25034140253&hash=item41a5a01fc4:g:h~IAAOSwJtNdea34

  • @JamesW81
    @JamesW81 Před 2 lety

    Did you ever get round to changing the Phidgets 64 out? I'd be really interested to see the way the matrix is done for the LEDs. I've not made any further progress on my pit due to various things, but I'm hoping to get back on it in a couple of weeks.

  • @late_kamer7440
    @late_kamer7440 Před 4 lety

    You need do that simulator 360 degrees

  • @oldmanfunky4909
    @oldmanfunky4909 Před 3 lety

    Now that DCS has the new A-10c 2, Are you loving it?

  • @CavemanGaming
    @CavemanGaming Před 4 lety

    How much would you charge to make these panels? Have been following for a long time and love you set up.

  • @astrogumbie2399
    @astrogumbie2399 Před 2 lety

    Can you tell me what things I would need to do some of this work like Laser Cutter or 3d printer

  • @IM2awsme
    @IM2awsme Před 2 lety

    Why didn't you use vector letters?

  • @duckner
    @duckner Před 2 lety

    Couldnt you have just painted over the typo and re-engraved the text just for that indicator lol

  • @maegeekpaigamer
    @maegeekpaigamer Před 4 lety

    Will you buy or do you uave a pilot helmet? if you buy will you mod one to work with radio? it would be a real immersive with the helmet!!! i hope when my kids are grown up i can have the time and money to build something like this, still trying to get a pc to play DCS.

  • @AAAAAAAHHHHHHHHH-y5f
    @AAAAAAAHHHHHHHHH-y5f Před 4 lety +1

    Are you eventually gona upgrade for the new A10C?

  • @kellycleveland
    @kellycleveland Před 4 lety

    Hey just thought of something. Why don't you just use the insides or the screen of 8" or 10.5" pads from a Samsung then overlay the black grill over it. the go back and to site you programmed that box the should be a patch for the the upgrade. like I said It just came to me. Check it out to see if was possible any way. please let use know if it worked or if its possable or any thing simiuliar. Thank you for your time.

  • @simonpike779
    @simonpike779 Před 3 lety

    You make Tony Stark look like a dummy!

  • @nikosgeorgakis6759
    @nikosgeorgakis6759 Před 3 lety

    Hello Captain, what are the best sensors for Sensing flight controls like pedals / stick?

  • @portret_lazerom_za_prizm4286

    Крепко жму правую!!!!

  • @lunai0076
    @lunai0076 Před 4 lety

    How you do the switch and knob wheels

  • @williamedwards6607
    @williamedwards6607 Před rokem

    What font are you using?

  • @lululala3771
    @lululala3771 Před rokem

    what server you play on

  • @ExplorerSpace
    @ExplorerSpace Před 2 lety

    can you explaign how you connect with the game

    • @thewarthogproject
      @thewarthogproject  Před 2 lety

      The Arduino is connected using a program called DCS-BIOS dcs-bios.a10c.de/docs/v0.7.0/userguide.html

  • @wingbatzero
    @wingbatzero Před 2 lety

    If I ever win the lotto, I'm building 2 of these, one for me, and the other for my buddy that's a huge fan of all things aviation. Then we can fly missions together until our wives beat us silly.

  • @Nick-xe2hu
    @Nick-xe2hu Před 2 lety

    Did you ever update the LED driver? Whats the one you mentioned you were going to upgrade to and how did you set it all up in DCS Bios? I'm tackling something similar soon and could use your guidance. Thanks

    • @thewarthogproject
      @thewarthogproject  Před 2 lety

      I did, I've got the footage from ages ago and am editing it now mate. A video should be up soon.

    • @thewarthogproject
      @thewarthogproject  Před 2 lety

      In the meantime, check out Craig's video. It helped me a lot, and I'll be referencing it my video. czcams.com/video/a1i-yfLFpPw/video.html

    • @Nick-xe2hu
      @Nick-xe2hu Před 2 lety

      @@thewarthogproject Oh man awesome. I'm hoping doing it myself would save me some money to apply elsewhere in the sim pit. Thanks

    • @Nick-xe2hu
      @Nick-xe2hu Před 2 lety

      @@thewarthogproject Perfect. Thanks

  • @TimberDCS
    @TimberDCS Před 3 lety

    I just came here to see the typo

  • @rickmccaskill7888
    @rickmccaskill7888 Před 3 lety

    What power of laser are you using? Thanks

    • @JamesW81
      @JamesW81 Před 2 lety +1

      It's a Chinese K40 with the tube and PSU upgraded to 60w

  • @panagiotiselsisi7752
    @panagiotiselsisi7752 Před 4 lety

    Can your hardware be used with Lockheed Martin's P3D or is it made for DCS specificaly?

    • @JamesW81
      @JamesW81 Před 2 lety

      If the input is based on a Leo bodnar card, they can be used with any game/flight sim. If the input is Arduino and DCS bios it's DCS specific.

  • @archivushka
    @archivushka Před 2 lety

    I'm a 100th comment

  • @PaletoB
    @PaletoB Před 4 lety

    So who else what's this for your car? 😂