Ps3 controller sensitivity

Gtuner IV general support. Operation, questions, updates, feature request.

Ps3 controller sensitivity

Postby Tierney » Sun Mar 22, 2020 8:09 pm

Hello everybody. The problem i am having is the sensitivity on my R1 and L1 with ps3 controller. For some reason its weak and barely works. I have searched hours but can not find a solution anywhere. I wondered if anybody knows what is wrong? I have tried a few ps3 controllers and all are the same. It works fine with a ps4 controller. Any advise would be greatly appreciated. Thank you.
User avatar
Tierney
Private
Private
 
Posts: 1
Joined: Sun Mar 22, 2020 7:56 pm

Re: Ps3 controller sensitivity

Postby J2Kbr » Mon Mar 23, 2020 1:19 pm

Not sure if will help in your case, but is possible to have a script for set R1/L1 to 100% if detected any input value, example:
Code: Select all
#include <ps3.gph>
 
main {
    if(get_actual(PS3_R1)) {
        set_val(PS3_R1, 100.0);
    }
    if(get_actual(PS3_L1)) {
        set_val(PS3_L1, 100.0);
    }
}
 
ConsoleTuner Support Team
User avatar
J2Kbr
General of the Army
General of the Army
 
Posts: 20323
Joined: Tue Mar 18, 2014 1:39 pm

Re: Ps3 controller sensitivity

Postby DontAtMe » Mon Mar 23, 2020 9:05 pm

R1 and L1 Are not triggers. 0 to 100
They are digital. ON or OFF

You must mean R2 and L2.
Here are two options you can use.

1), Hair Triggers, turns the analog signal to digital.
Code: Select all
#include <ps3.gph>
main {
  set_val(PS3_R2, is_active(PS3_R2) * 100);
  set_val(PS3_L2, is_active(PS3_L2) * 100);
}
 


2), Boost Sensitivity if you want to preserve the analog signal.
Code: Select all
#include <ps3.gph>
 
#define SENSITIVITY  1.5
main {
  set_val(PS3_R2, min(get_actual(PS3_R2) * (fix32)SENSITIVITY, 100.0));
  set_val(PS3_L2, min(get_actual(PS3_L2) * (fix32)SENSITIVITY, 100.0));
}
User avatar
DontAtMe
Captain
Captain
 
Posts: 502
Joined: Tue Oct 02, 2018 4:49 am

Re: Ps3 controller sensitivity

Postby J2Kbr » Mon Mar 23, 2020 9:10 pm

DontAtMe wrote:R1 and L1 Are not triggers. 0 to 100
They are digital. ON or OFF

On PS3 controllers all buttons (with exception of start, select, L3 and R3) are pressure sensitive.
ConsoleTuner Support Team
User avatar
J2Kbr
General of the Army
General of the Army
 
Posts: 20323
Joined: Tue Mar 18, 2014 1:39 pm

Re: Ps3 controller sensitivity

Postby DontAtMe » Mon Mar 23, 2020 9:40 pm

J2Kbr wrote:
DontAtMe wrote:R1 and L1 Are not triggers. 0 to 100
They are digital. ON or OFF

On PS3 controllers all buttons (with exception of start, select, L3 and R3) are pressure sensitive.

Yes but he is playing on Xbox. R1/L1 is RB/LB.
User avatar
DontAtMe
Captain
Captain
 
Posts: 502
Joined: Tue Oct 02, 2018 4:49 am

Re: Ps3 controller sensitivity

Postby J2Kbr » Mon Mar 23, 2020 10:11 pm

DontAtMe wrote:
J2Kbr wrote:
DontAtMe wrote:R1 and L1 Are not triggers. 0 to 100
They are digital. ON or OFF

On PS3 controllers all buttons (with exception of start, select, L3 and R3) are pressure sensitive.

Yes but he is playing on Xbox. R1/L1 is RB/LB.

Got it, in this case any input from the controller, even ~40% as he stated in the other post, would be translated to 100% on Xbox without any script.
ConsoleTuner Support Team
User avatar
J2Kbr
General of the Army
General of the Army
 
Posts: 20323
Joined: Tue Mar 18, 2014 1:39 pm


Return to Gtuner IV Support

Who is online

Users browsing this forum: No registered users and 86 guests