Using Playstation navigation controller one-handed

Titan Two general support. Questions, firmware update, feature request.

Using Playstation navigation controller one-handed

Postby aodaniel » Wed May 08, 2019 4:10 pm

In 2017, a stroke resulting from a brain tumor left me with the use of only one hand. Can the Titan One or Titan Two be used to make all functions of a PS4 dualshock controller accessible to the Playstation move navigation controller? All of the buttons can be made accessible using the PS4 accessibility menu remapping function, but both the left and right analog sticks cannot be made accessible through the acccessibility menu. It's one stick or the other. Can a Titan product help me gain access to both the left and right analog sticks from the dualshock4 on the navigation controller's single analog stick? possibly through profile shifting? Detailed instructions would be useful.

Thank you.
User avatar
aodaniel
Staff Sergeant
Staff Sergeant
 
Posts: 13
Joined: Wed May 08, 2019 3:20 pm

Re: Using Playstation navigation controller one-handed

Postby Buffy » Thu May 09, 2019 4:51 am

A script could achieve this, but some sacrifices would have to be made (ie, only one analog for both sticks would mean you could only control one stick at a time).
ConsoleTuner Support Team || Discord || Custom Scripts
User avatar
Buffy
Lieutenant
Lieutenant
 
Posts: 422
Joined: Wed Jul 20, 2016 5:23 am

Re: Using Playstation navigation controller one-handed

Postby aodaniel » Thu May 09, 2019 6:35 pm

thank you for your reply. I kinda knew that only one of the two sticks could be active at any one time. There is a youtube video where a user switches between left and right stick functionality by pressing the thumbstick button on the navi controller. That's precisely what I'm looking for.
User avatar
aodaniel
Staff Sergeant
Staff Sergeant
 
Posts: 13
Joined: Wed May 08, 2019 3:20 pm

Re: Using Playstation navigation controller one-handed

Postby DontAtMe » Thu May 09, 2019 9:01 pm

aodaniel wrote: Can the Titan One or Titan Two be used to make all functions of a PS4 dualshock controller accessible to the Playstation move navigation controller?
yes of course this is possible, For both titan devices.

aodaniel wrote:There is a youtube video where a user switches between left and right stick functionality by pressing the thumbstick button on the navi controller. That's precisely what I'm looking for.

This can be achieved easily with this script.
Code: Select all
#include <ps4.gph>
#define condition_1 event_active(PS4_L3) && time_release(PS4_L3) < 100
#define condition_2 event_active(PS4_R3) && time_release(PS4_R3) < 100
 
main {
 
  // if L3 or R3 are active, But not both.
  if(is_active(PS4_L3) ^^ is_active(PS4_R3)){
 
    // Double press L3 or R3 within 100ms to swap the Left and Right thumb sticks.
    if(condition_1 || condition_2){
      remapper_swap(PS4_RX, PS4_LX);
      remapper_swap(PS4_RY, PS4_LY);
      remapper_swap(PS4_L3, PS4_R3);
    }
 
    // Block the L3 and R3 inputs sent to console for 150ms.
    inhibit(PS4_L3, 150);
    inhibit(PS4_R3, 150);
  }
}
note: This script is designed for the titan two. A titan one script can also be made though.
User avatar
DontAtMe
Captain
Captain
 
Posts: 502
Joined: Tue Oct 02, 2018 4:49 am


Return to Titan Two Device

Who is online

Users browsing this forum: No registered users and 131 guests

cron