-
Posts
236 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Everything posted by Roger01
-
Hello, I would like to change the Z position of the mouse pointer in VR to be higher than the center like (thx paint!) : I'm not using a mouse to point, but only my head. Thanks a lot!
-
Universal military aircraft homecockpit project
Roger01 replied to Viper1970's topic in Home Cockpits
Hello! I'm really impressed with all the work you've done! I've already done some 3D and printed stuff like a mini cockpit for the JF-17 but as soon as it curves (like a joystick) I can't 3D model it. Also, is it possible to have your 3D or stl file of the AH-64D collective please? Even if it's just the shape without the holes for the buttons, that I can take care of Thanks for moving forward and congratulations again! -
Hello, do you have an approximate date for those who pre-ordered before March 15? Thanks a lot!
-
Yeah but your missions was better than ones
-
Is this mod works with Airlink? I already test that, but I see no difference (fps and image quality) Thx! Is this mod works with Airlink? I already test that, but I see no difference (fps and image quality) Thx!
-
Any chance for Deka team to use your missions (after "debuging") to the official tutorial mission?
-
Ho thanks for that. And the JF-17B?
-
Any news for the Block III and/or HMD?
-
Hello, I have an I9 9900k and 3080. I use Airlink with max resolution (5k~) and 90Hz (45fps ingame stable), 120Hz is unstable (40-50fps, not 60). 100% GPU and 98% Memory is used... . I use MSAA x2 (more good visual). No Vsync ingame and Fast Vsync in NVCP and this config : I think I can't do better that than to get the best visual (resolution, image finesse, AA etc.. not the effect) and more stable fps? What option I can set on Medium/High without any fps drop? Thanks a lot!
-
Too bad Thanks for your work
-
Hello, Anyway to use the other TX/RX (pin 19/18, 17/16, or 15/14) on a MEGA card instead of the TX/RX by defaut? (pin 0/1) To use it has a SLAVE but I need the TX/RX pin 0/1 for a shield on this card. Want to do this : Thanks a lot! [Edit] I found an alternative sketch how works with!
-
Hello, thanks a lot for your app! Is it possible to have this configuration for the JF-17 in portrait? Thanks a lot again!
-
Best choice of push button switches (light)for DIY panels
Roger01 replied to Roger01's topic in Home Cockpits
Found that : https://www.mya320sim.com/korrys/ -
Hello, I would like to make this panels (JF-17) : UFCP and the 3 MFD : I need for that 2 différents switches : Rectangular switches (but I can use my 12*12mm square button switches) And button switches with light to make this : I have a 3D print so I can print some things (like to do this button cover ): I don't find the best solution to do that. Any idea? Thanks a lot!
-
It works with the help of BuzzKillington !
-
Ok thanks, I have a TFT 3.5 LCD Shield ( https://fr.aliexpress.com/item/32807510476.html) how works with some exemple sketch like the MCUFRIEND_kbv => diagnose_TFT_support : But know... hmm what's next
-
Thanks! a LED matrix seems to be the best way. I do that after the UFCP. For the UFCP, a Small LCD can work with an arduino? I have small lcd for Raspberry. I must check that. Thanks again!
-
Thanks! And an other question : Is it possible to do that on a TFT/LCD (other?) screen plugged in an arduino with DCS bios? And the best way to have this thing, with the less arduino : If I buy 4x 8 digits screen, I can't plug all 4 on the same arduino? Thanks a lot! [Edit] My first finished project :
-
Possible, but with this code, it allows you to adjust as you want, with the ingame potentiometer.
-
Better version, Light intensity change with the ingame light intensity potentiometer. Exemple for JF-17 : /* use '#define DCSBIOS_DEFAULT_SERIAL' instead if your Arduino board * does not feature an ATMega328 or ATMega2650 controller. * */ #define DCSBIOS_IRQ_SERIAL #include "DcsBios.h" int LightKnobValue; int LTR; void setup() { DcsBios::setup(); } void loop() { DcsBios::loop(); } void onlgLTransChange(unsigned int newValue) { LTR = newValue; if (newValue == 1) { analogWrite(10, LightKnobValue); } else { analogWrite(10, 0);} } DcsBios::IntegerBuffer lgLDChBuffer(0x4858, 0x0040, 6, onlgLTransChange); void onGearIndLightKnobChange(unsigned int newValue) { LightKnobValue = newValue/256; if (LTR == 1) { analogWrite(10, LightKnobValue); } else { analogWrite(10, 0); } } DcsBios::IntegerBuffer gearIndLightKnobBuffer(0x4802, 0xffff, 0, onGearIndLightKnobChange);
-
Hello, my slaves and master cards for exemple. I have othesr pcb like this with 12v led backlight controler but I don't use it :
-
Hello, I don't find it on google and here. Is there any way to change the intensity (power) of the led pluged in PWM pin? With a ingame potentiometer or directly in arduino (like a %) My leds are too shiny.... Thanks a lot! [Edit] Found! Ex for the JF-17's Landing Gear Transition Light (red): void onlgLTransChange(unsigned int newValue) { if (newValue == 1) {analogWrite(10, 1);} else {analogWrite(10, 0);} } DcsBios::IntegerBuffer lgLDChBuffer(0x4858, 0x0040, 6, onlgLTransChange); {analogWrite(10, 1);} 1 = 0 to 255 (0 =off) 10 = pin number