t2:compatibility_table

Titan Two Compatibility Table

Consoles, Gaming Systems and Streaming Applications


System Compatible Scripting Crossover Connection Output Protocol
PlayStation 5 1) YES YES YES USB PS4(1), WHEEL
Xbox Series X|S YES YES YES USB XSX, XB1, WHEEL
PlayStation 4 YES YES YES USB, BT PS4, WHEEL
Xbox One YES YES YES USB XB1, XSX, WHEEL
Nintendo Switch YES YES YES USB, BT SWITCH
PlayStation 3 YES YES YES USB, BT PS3
Xbox 360 2) YES YES YES USB XB360
Nintendo Wii U YES YES YES BT WII
PlayStation TV YES YES YES USB, BT PS3, PS4
PS Remote Play YES YES YES USB PS4
Xbox One App YES YES YES USB XSX, XB1
iOS Devices YES YES YES USB, BT PS4
Android Systems YES YES YES USB, BT HID, XB360, PS4
Computers Win,Mac,Linux YES YES YES USB, BT HID, XSX, XB1, XB360

Output Protocols (Emulators)

Emulator Output Protocol Compatible Systems
Specialized PS4 Controller PS4Specialized PlayStation 5
Xbox Series X|S Controller XSX Xbox Series, Xbox One, Xbox App, PC
DualShock 4 V2 PS4 PlayStation 4, PS Remote Play, PSTV, iOS
Third-Party PS4 Controller PS4 PlayStation 4, Computers
Xbox One Elite Controller XB1 Xbox One, Xbox Series, Xbox App, PC
Nintendo Switch Pro Controller SWITCH Nintendo Switch
DualShock 3 PS3 PlayStation 3, PlayStation TV
Xbox 360 Wired Controller XB360 Xbox 360, Android, Computers
Wii U Pro Controller WII Nintendo Wii U
Multi Interface HID HIDKeyboard/Mouse/Joy Computers, PlayStation 4, Xbox One
Logitech Steering Wheel WHEELG29-PS4,G920-XB1 PlayStation 4, Xbox One 3)

PlayStation 4 Controllers


Controller Compatible Connection Authentication
DualShock 4 V2 YES USB, BT, Wireless4) YES
DualShock 4 YES USB, BT, Wireless5) YES
VR Aim Controller YES USB, BT YES
Adapters
DS4 Wireless Adaptor YES USB NO
Third-Party
Astro C40 YES USB, Wireless6) YES
Frag FX Shark YES USB YES
Frag FX Piranha YES USB YES
Hori Fighting Commander YES USB YES
Hori Fight Stick 4 Mini YES USB YES
Hori Fighting Stick MINI YES USB YES
Hori Hayabusa RAP V YES USB YES
Hori MINI Gamepad YES USB YES
Hori RAP 4 YES USB YES
Hori RAP N4 YES USB YES
Hori Real Arcade Pro 4 Kai YES USB YES
Hori Border Break YES USB YES
Hori Onyx YES USB YES
Hori Slime Controller YES USB YES
Hori TAC4 YES USB YES
Hori TAC4 Pro YES USB YES
Horipad4 FPS YES USB YES
Horipad4 FPS Plus YES USB YES
Horipad4 Grip Pad 4 YES USB YES
Inn DS4 Wired Controller YES USB YES
Mad Catz FightPad PRO YES USB YES
Mad Catz FightStick Alpha PS4 YES USB YES
Mad Catz SF5 Mini Fightstick YES USB YES
Nacon Revolution Pro YES USB YES
Nacon Revolution Pro 2 YES USB YES
Nacon Compact Controller YES USB YES
Nacon Rev. Unlimited Pro YES USB, Wireless YES
QANBA Drone Arcade Joystick YES USB YES
Razer Raiju YES USB YES
Razer Raiju Ultimate YES USB YES
Razer Raiju Tournament YES USB YES
Scuff Vantage YES USB YES
Thrustmaster Hotas 4 YES USB YES
Thrustmaster T300 RS (PS4) YES USB YES
Victrix Pro FS (PDP) YES USB YES
Victrix Pro FS with Touchpad YES USB YES
Zero Plus 4 Wired YES USB YES
Zero Plus Emio Elite YES USB YES
The majority of third-party PS4 controllers are supported by the Titan Two device.

Xbox One & Series X|S Controllers


Controller Compatible Connection Authentication
Xbox One YES USB, Wireless7) YES
Xbox One Elite YES USB, Wireless8) YES
Xbox One S YES USB, BT, Wireless9) YES
Xbox One Elite S2 YES USB, BT, Wireless10) YES
Xbox Series XS YES USB, Wireless11) YES
Adapters
Xbox Wireless Adapter YES USB YES
Xbox Wireless Adapter V2 YES USB YES
Third-Party
The majority of third-party Xbox One / Series controllers are supported by the Titan Two device. Some PDP and Power A controllers cannot be used for authentication.

Nintendo Switch Controllers


Controller Compatible Connection Authentication
Switch Pro Controller YES USB, BT n/a
Nintendo Joy-Con Left YES BT n/a
Nintendo Joy-Con Right YES BT n/a

PlayStation 3 Controllers


Controller Compatible Connection Authentication
DualShock 3 YES USB, BT n/a
Move Navigation YES USB, BT n/a
Sixaxis YES USB, BT n/a
Third-Party
All third-party PlayStation 3 controllers are supported by the Titan Two
device as a HID Gaming Controller.

Xbox 360 Controllers


Controller Compatible Connection Authentication
Wired Xbox 360 YES USB YES
Wireless Xbox 360 YES Wireless12) NO
Adapters
Xbox 360 Wireless Receiver YES USB NO
Third-Party
All third-party Xbox 360 controllers are supported by the Titan Two device.
Note: Some PDP wired Xbox 360 can't be used for authentication.

Wii and Wii U Controllers


Controller Compatible Connection Authentication
Wii U Pro YES BT n/a
Wiimote YES BT n/a
Wiimote Plus YES BT n/a
Nunchuck YES EXT n/a
Motion Plus YES EXT n/a
Classic Controller YES EXT n/a
Classic Controller Pro YES EXT n/a

Steam Controllers


Controller Compatible Connection Authentication
Steam Controller YES USB, Wireless13) n/a
Adapters
Steam Wireless Receiver YES USB n/a

Steering Wheel Controllers


All steering wheels controllers are supported by the Titan Two device as a HID Gaming Controller. Functionalities such as buttons, wheel position, pedals and so on can be used to play on any compatible gaming system. Some steering wheel models requires a particular initialization to activate special features, those are listed in the following table. More models will be gradually added to this list as we provide support for the respective special features.

Model Compatible Enabled Features
Logitech Driving Force YES 900°, Hi-Res Spring, FFB
Logitech Driving Force Pro YES 900°, Hi-Res Spring, FFB, Sequential Shifter
Logitech Driving Force GT YES 900°, Hi-Res Spring, FFB, Sequential Shifter
Logitech G25 Racing Wheel YES 900°, Hi-Res Spring, FFB, Clutch, Shifter
Logitech G27 Racing Wheel YES 900°, Hi-Res Spring, FFB, Clutch, Shifter, LED Bar
Logitech G29 Driving Force YES 900°, Hi-Res Spring, FFB, Clutch, Shifter, LED Bar

Depending on the game, the wheel responsiveness can be improved by loading a GPC script on the Titan Two to remove the resting position deadzone and/or adjusting the sensitivity, as the following example:

#define RESTING_DEADZONE        20.0
#define WHEEL_RESTING_VALUE     0.70
#define WHEEL_SENSITIVITY       3.0
 
main {
    fix32 wheel_value = get_actual(STICK_2_X) + WHEEL_RESTING_VALUE;
    fix32 direction = (wheel_value >= 0.0) ? 1.0 : -1.0;
    wheel_value = abs(wheel_value);
    if(wheel_value > 2.0) {
        wheel_value *= WHEEL_SENSITIVITY;
        wheel_value += RESTING_DEADZONE;
        set_val(STICK_2_X, clamp(wheel_value, 0.0, 100.0) * direction);
    }
}

HID Gaming Controllers


The Titan Two is fully compliant with the HID standard, making it compatible with virtually any HID Gaming Device, such as Fight Sticks, Steering Wheels, Joysticks, Flight Controllers, Paddles, Game Pads and so on, including gaming devices that provides wireless connectivity by USB adapters.

Keyboard and Mouse


All HID compliant keyboard and mice are supported by the Titan Two device, including the models that provides wireless connectivity by USB adapters. Other devices that acts like keyboard or mouse are also supported, such as foot switches.

Exclusive feature: The keyboard and mouse connected to your computer can also be used to play on any compatible gaming system via KM Capture interface, as if they were directly connected to the Titan Two device.

1) PS4 third-party controller is required for authentication when playing native PS5 games, otherwise the device will work in auth reset mode.
2) Xbox 360 wired controller is required for authentication.
3) FFB support for G920-XB1 is yet under development.
4) , 5) DualShock 4 USB Wireless Adaptor required. DS4 Wireless Adaptor.
6) Astro C40 Wireless USB Adapter required.
7) , 8) , 9) , 10) , 11) EXPERIMENTAL! Xbox Wireless Adapter required. Xbox Wireless Adapter.
12) Xbox 360 Wireless Receiver required. Xbox 360 Wireless Receiver.
13) Steam Wireless Receiver required.Steam Wireless Receiver.
t2/compatibility_table.txt · Last modified: 2021/12/18 17:48 by Mad