Jump to content

Apoth

Members
  • Posts

    16
  • Joined

  • Last visited

About Apoth

  • Birthday 01/05/1982

Personal Information

  • Flight Simulators
    DCS World, MSFS2020
  • Location
    Hungary
  • Interests
    MiG 21, Cockpit build, Modding

Recent Profile Visitors

283 profile views
  1. Hello! I building a MiG-21 cockpit and using DCS-BIOS. I just noticed a few issuewith the "chicken head" light control knobs, and here the fix: Original: definePotentiometer("TXT_LIGHT", 46, 3231, 612, {0, 1}, "Right Horizontal Aft Panel", "Text Backlights") definePotentiometer("GAUGE_LIGHT", 46, 3232, 156, {0, 1}, "Right Horizontal Aft Panel", "Gauge Backlights") The fixed one: definePotentiometer("TXT_LIGHT", 46, 3231, 612, {-1, 1}, "Right Horizontal Aft Panel", "Text Backlights") definePotentiometer("GAUGE_LIGHT", 46, 3232, 156, {-1, 1}, "Right Horizontal Aft Panel", "Gauge Backlights") BTW iam a developer and would like to join to the project if possible Regards!
  2. Ok, i solved the problem. Ugly, but seems work void loop() { DcsBios::loop(); delay(20); } Later i will change the delay to some timer based solution. Thanks! Apoth
  3. UPDATE! I looking the Serial Monitor, and see this: // Trim Power SW turn on 16:48:28.557 -> TRM_PWR 1 16:48:28.557 -> TRM_PWR 0 16:48:28.592 -> TRM_PWR 1 16:48:28.592 -> TRM_PWR 0 16:48:28.592 -> TRM_PWR 1 // Trim Power SW turn off 16:50:22.311 -> TRM_PWR 0 Seems like some kind of hysteresis during the change of the switch?
  4. Hello guys! I working on my MiG-21 home cockpit, and just realized a problem on the DCS-BIOS side. I just wiring the main AZS panel (right side switches) and i experiencing problems on some buttons. Seems like the DCS-BIOS not alwys send the events in few buttons, eg.: DcsBios::Switch2Pos conePwr("CONE_PWR", 22); // Always stable DcsBios::Switch2Pos emrHydPump("EMR_HYD_PUMP", 24); // Sends 1-2 events on 10 up-down clicks DcsBios::Switch2Pos trmPwr("TRM_PWR", 26); // Sends 5-6 events in 10 up-down clicks DcsBios::Switch2Pos sauPitchPwr("SAU_PITCH_PWR", 42); // Always stable DcsBios::Switch2Pos arcPwr("ARC_PWR", 30); // Sends very few events, some times turn on and off immediately on up click DcsBios::Switch2Pos raltPwr("RALT_PWR", 32); // Sends very few events, some times turn on and off immediately on up click I double checked all wiring from the switches to the arduino. Someone experienced this (or similar) problem? This is solvable somehow? Thanks a lot! Apoth
  5. Hello! I modified my MiG-21 module in `DCS World OpenBeta\Mods\aircraft\MIG-21bis\Input\MiG-21\joystick\default.lua` with few lines to extend the possibilities with two and three stage switches. The extension is working, but i wanted to put the configuration in my `Saved Games` folder to avoid the problems with the next update. I created the same path, but its seems not working. Have a working solution for this problem? Regards! Apoth
  6. Hello! I using original MiG 21 parts to build my home cockpit, and i now trying to adjust the nosecone knob whitch is basicly a potentiometer. I wired in a test board and make this video: As you see the range of the needle is not quiet match on the digital version, and i wanted to adjust the offset and the power of the potentiometer. I using the basic parameters. DcsBios::PotentiometerEWMA<5, 128, 5> coneAdj("CONE_ADJ", A0); As i see the 5, 128, 5 parameters are just for to avoid noise in the analog input. Thanks! Apoth
  7. Hello! I just started to build my home cockpit, and during the test of my locator screen i found a problem in the MiG-21 module. The radar error light on the radar screen is lights up when the locked target is in range. I found that the RADAR_BRKN record uses the same index as RADAR_LNCH. defineIndicatorLight("RADAR_LNCH", 558, "RADAR Scope, Interrupts", "Radar Launch Light") ... defineIndicatorLight("RADAR_BRKN", 558, "RADAR Scope, Interrupts", "Radar Broken Light") Probably the correct index for the RADAR_BRKN is 561 (i not tested it yet). My locator screen (the wire for the error light is plled out here): Regards! Apoth
  8. Thanks a lot! BTW as i see the Kamov is broken too! Regards! Apoth
  9. Hello! @Aerovenator i checked your charts, and your work is amazing! Can you please post the MiG 21 Chart again? The share link is broken. Nice work! Cheers! Apoth
  10. Hello! Thank You for the information, and happy new year! Cheers! Apoth
  11. Hello! We are experienced a bug in the MiG 21 after the 2.7.9.18080 update. During landing, the speed is 450 Kmph, flaps deployed (the bug comes in both stages), deploying the LDG. The engine RPM gets jumping up and down, the stick arte freezing and the plane is fall as a rock. Confiremed by 3 independent users. Video: Its looks like the nozzle is stuck open, and the hydraulics is gone. We waiting for the sound distortion fix and the fix of this bug like the hell. Thanks guys!
  12. Hello! We are experienced another problems after the last patch. During approach on 450Kmph flaps deployed (the issue is reproducable with both stage). The engine RPM gauge starts jumping up and down, she stick is freezing and the plane is fall down as a rock. Yesterday we got the issue several times, 3 of 4 user confirmed. Video:
  13. Wow! Seems this will work! Thanks!
×
×
  • Create New...