Jump to content

Sigma40

Members
  • Posts

    16
  • Joined

  • Last visited

Everything posted by Sigma40

  1. Gelöst. Auf DNS 8.8.8.8 ändern. Dann geht es wieder.
  2. Moin, ich kann mich nicht mehr bei DCS anmelden. Es kommen 2 Bildschirme (Siehe Fotos). Und dann geht es nur ohne Anmeldung.
  3. Mega 2560 or Uno R3
  4. That makes sense. I'll try it during the week and get back to you. If anyone has the code, please post it here.
  5. Hello, in-game the throttles jump back and forth. I can't adjust them.
  6. Hello, has anyone built the AH-64 throttle from 737DIYSIM? And can perhaps publish the code for the ARDUINO. There are problems with the connection and programming of the 360 degree HAL sensors. It would be nice if there was a wiring diagram included. Thanks for your help
  7. Hello, I would reserve one. That's brilliant. I'm looking forward to it. Greetings from northern Germany.
  8. Thank you very much JOHNNYCHIGAGO and NO1SONUK. My Mistake. Its run.
  9. Hello, this is the correct code that I uploaded. The first one was wrong. Greetings #define DCSBIOS_IRQ_SERIAL #include "DcsBios.h" /* paste code snippets from the reference documentation here */ DcsBios::ActionButton pltGroundOverrideBtnToggle("PLT_GROUND_OVERRIDE_BTN", "TOGGLE", 6); DcsBios::LED pltGroundOverrideBtn(AH_64D_PLT_GROUND_OVERRIDE_BTN_AM, 4); void setup() { DcsBios::setup(); } void loop() { DcsBios::loop(); }
  10. This is my Code. /* 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 "DcsBios.h" /* paste code snippets from the reference documentation here */ DcsBios::Switch2Pos pltGroundOverrideBtn("PLT_GROUND_OVERRIDE_BTN", 6); DcsBios::LED pltGroundOverrideBtn1(AH_64D_PLT_GROUND_OVERRIDE_BTN_AM, 4); void setup() { DcsBios::setup(); } void loop() { DcsBios::loop(); }
  11. Hello, what size is the main panel of the AH-64 Apache? And isn't it bent in the middle by about 5 degrees? I'm looking forward to your answer. Thanks in advance. null I have the problem of switching an LED on the ground override switch so that it comes on when pressed once and goes off when pressed twice. When I switch, it only flashes once and then goes off again.
  12. Hello, I have the problem of switching an LED on the ground override switch so that it comes on when pressed once and goes off when pressed twice. When I switch, it only flashes once and then goes off again. I would be really grateful for your help. Thanks in advance. #define DCSBIOS_IRQ_SERIAL #include "DcsBios.h" /* paste code snippets from the reference documentation here */ DcsBios::LED pltGroundOverrideBtn(AH_64D_PLT_GROUND_OVERRIDE_BTN_AM, 4); DcsBios::ActionButton pltGroundOverrideBtnToggle("PLT_GROUND_OVERRIDE_BTN", "TOGGLE", 6); void setup() { DcsBios::setup(); } void loop() { DcsBios::loop(); }
  13. Hello, I would like to show the Apache CMWS display on a 3.5 inch TFT in connection with a Mega 2560. I just can't figure out the code. How do I have to write the sketch to make it work? I have attached a screenshot as an example.
  14. Many thanks for your help
  15. My Arduino UNO has to be manually connected to the Connect Serial port via the ComPort before every start with DCS. This doesn't work automatically. Is that on purpose or am I making a mistake.
×
×
  • Create New...