diff --git a/Analog_WSAD_Pre-Axis_Macros.ttm b/Analog_WSAD_Pre-Axis_Macros.ttm index 43e13b0..858ed15 100644 --- a/Analog_WSAD_Pre-Axis_Macros.ttm +++ b/Analog_WSAD_Pre-Axis_Macros.ttm @@ -50,7 +50,7 @@ int AxisToKeySet(){ int AxisToKey(int DC,short PKey){// Application of Dutycycle call to keypress ActKey(LOCK+KEYON+PKey); DeferCall((DC+TouchDelay),&ActKey,PKey); - printf("Duty Cycle : %i \xa",DC); + //printf("Duty Cycle : %i \xa",DC); //DeferCall(PWMTimeLenght,&ActKey,LOCK); } diff --git a/README.md b/README.md index 077a3b0..fe28214 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,17 @@ # Analog_WASD - TARGET scripting software to PWM HOTAS inputs into Duty Cycle timed keypresses. +---------- WIP ---------- + + TARGET scripting software to PWM HOTAS inputs into Duty Cycle timed keypresses. + +---------- WIP ---------- + +This is the first public release of a PWM keypress system for a joystick axis of rotation. + +The idea was that I wanted a block of time (currently at 100ms can be change in script) to represent the range of motion from center to the max value of an axis. With a minimum buffer of a keypress to make sure that all input is properly executed (current set a 25ms can be change in script). +This was not a simple task as I have been though no less than 5 code designs. And this current design while works I am not totally satisfied with it is build. +I only have the conversion working for a single stick on the Thrustmaster Warthog HOTAS. + +WIP +But have built in the ability to use the T16000.m Dual sticks (NO TESTING OF T1600.M HAS BEEN DONE). + +I am posting for the simple reason I am looking to show the code to get help with some questions that I have not been able to answer from my limited programing knowledge. I have some ideas to get the throttle working. But, with the limited C++ Code base that TARGET has not sure if these ideas will work.