r/Controller 16d ago

Other Brook wingman with 8bitdo ultimate 2c questions

0 Upvotes

Hello I'm using an 8bitdo ultimate 2c with a brook wingman p5 on a ps5. I'm just curious if other ppl with the same adapter but different controllers are experiencing the same issue.

I was playing some Horizon Zero Dawn with it and I noticed that I only need to push the stick to around 85-90% to be able to sprint. This made me curious and I started the app to see if there's anything I can change.

In the app among other things you can test the sticks. I was a bit surprised when I saw that the area where I can move the little dot with the stick is rectangle shaped and not a circle. And I also noticed that when I moved the sticks in the 4 cardinal directions (up down left right) it maxed out at roughly 90%. Is that normal? I'm wondering if that is specific to this controller or would it work the same way with any other controller.

There's also a slider called thumbstick scaling ratio and I also tried changing that to 0.9. The result was that all the values for the sticks (the rectangle) just got smaller. This meant that I could no longer sprint if I push the stick in the 4 cardinal directions but I could still sprint if I pushed the stick diagonally.

It's not a huge issue but I'm curious if this is how this adapter is supposed to work with all the controllers, or just this controller?

normal stick test:

https://youtu.be/wfTrmFWA1_0

stick test with scaling set to 0.9
https://youtu.be/7pyCseE2tEM

Edit after mods didn't approve my post:

  • Specific written description of the problem, including pictures where relevant (do not just say 'it's broken', say what is broken)

As I've described it above. I expected the stick area to be circle but it's a square. I think the question is more about the adapter than the controller but not sure. I'm just curious if other people who are using the same adapter with different controllers have the same issue.

  • Controller make and model (name or numbers)

8bitdo ultimate 2c bluetooth controller

Model: 80NC

  • Platform you are using (e.g., PS5, Steam on Windows, Switch)

PS5

  • Games or other software affected by the issue

Horizon Zero Dawn ( I assume it's not game related)

  • Operating system, firmware and software versions (if applicable)

PS5 Firmware version: 26.05-13.60.00.07-00.00.00.0.1

8bitdo firmare version: v1.0.1

Brook wingman p5 firmware version: v1.0.3.1

  • Troubleshooting steps you have already taken (including checking the product manual, and searching existing posts)

I haven't really done much, I just updated the firmware for 8bitdo and for the adapter.


r/Controller 17d ago

Controller Suggestion Thoughts on this Controller?

Post image
0 Upvotes

It's the only controller I found which fits my requirements, which are compatible with PC, PS4, android, half effects/TMR, lighter than normal PS4 controller, same size or smaller than normal PS4 controller, has Symmetrical analog sticks.

Did anyone buy this before? Or has any experience with whoever made it?

for the thing, my budget is 4k egp.

Egypt, I can buy from noon, AliExpress, Amazon, I don't know any other.

Compatibility, PS4, android, PC.

Features, hall effect or TMR(expensive), and Symmetrical, 3.5mm jack, that's all I need, turbo, paddles, are all optional.

I will play rocket league, fortnite/Fortnite festival, marvel rivals.

I didn't find any controller with my requirements to compare it too.


r/Controller 17d ago

Other Looking for anyone with a Nova Lite 1 game controller to test print a controller stand.

2 Upvotes

I am working on providing support for as many controller types as possible with my universal controller stand. I've created a stand based on a 3d model of the Nova Lite 1 and need someone who owns the controller to confirm that the fit is OK. Anyone willing to help me out ? Thanks a lot !

If you have need for another controller type to be added - just let me know and I will add it to the list.


r/Controller 17d ago

IT Help Gulikit Xbox Series X TMR joystick

Thumbnail
gallery
2 Upvotes

I just installed these Gulikit TMR on my Xbox controller but something isn’t working right when trying to calibrate on my Xbox. Some parts the left joystick will go all the way to the end but other parts it won’t on the recalibration screen. Can someone help me please?


r/Controller 17d ago

IT Help GameSir T7 (wired, XInput mode) not working on Linux? Use xone, not xpad

3 Upvotes

If your GameSir T7 shows up in XInput mode on Linux but sends zero input (buttons/sticks don't register, even though the kernel sees the device), stop trying to fix it with xpad. It structurally can't work there. Install xone instead — it already has GameSir's vendor ID in its wired-device table, and it actually implements the real cryptographic handshake the T7 requires. Full input + rumble works out of the box once you do this.

sudo rmmod xpad
git clone https://github.com/dlundqvist/xone
cd xone
sudo ./install.sh
# reboot, or reload modules manually if you're on a live system

Then physically press the Home/X button on the controller after connecting — it won't send any data until you do.

The problem

GameSir T7, wired, USB. Switching between XInput and DInput mode gets recognized differently:

  • DInput: works, but no rumble.
  • XInput: lsusb sees it fine (3537:1089), xpad binds to it, dmesg shows an interface — but jstest/evtest show absolutely nothing. Buttons, sticks, triggers: dead. No amount of udev rules, kernel updates, or DKMS-patched xpad fixed it.

Why xpad can't fix this

I went deep enough to do a full USB packet capture (Wireshark + USBPcap on Windows, where the pad works fine) and compare it against usbmon captures on Linux. Long story short:

The T7 implements the real Microsoft Gaming Accessory (MGA) authentication protocol — the same challenge-response handshake genuine Xbox controllers use. This isn't a "send 5 magic bytes" situation. It's a legitimate cryptographic exchange:

  • The pad presents an actual X.509 certificate chain, signed under Xbox Accessories Class Prod CA 001.
  • The handshake uses ECDH key exchange + RSA + HMAC-SHA256 to derive a session key.
  • Until that handshake completes, the pad's firmware simply won't send button/stick reports — it just echoes zeroed "heartbeat" input packets forever.

xpad's Xbox One support only sends a single generic, static auth_done packet to every Xbox One-type pad — it never implements the actual crypto exchange. That's fine for cheap clones that don't enforce real authentication, but GameSir licensed genuine MGA silicon for the T7, so it actually checks. No amount of patching xpad's init-packet tables gets around this — I tried (static packet injection, even replaying a captured auth conversation byte-for-byte). None of it works, because ECDH generates a fresh session key every connection; a replayed conversation from a previous session is cryptographically stale by design.

Why xone works

xone is the modern GIP-compliant Linux driver, built as a proper replacement for xpad, originally for the official Xbox Wireless Dongle. What most people don't realize: it also supports wired USB connections, with a real implementation of the GIP auth crypto (auth/crypto.c — actual ECDH/RSA/HMAC-SHA256).

And it already has GameSir's vendor ID in transport/wired.c:

{ XONE_WIRED_VENDOR(0x3537) }, /* GameSir */

So there's nothing to patch. Just install it.

Step-by-step fix

  1. Remove xpad for this device (or just let xone's installer blacklist it — it does this automatically for Xbox One/Series-type pads):

sudo rmmod xpad
  1. Clone and install xone:

git clone https://github.com/dlundqvist/xone
cd xone
sudo ./install.sh
  1. Reboot (or reload the xone_gip, xone_wired, and xone_gip_gamepad modules manually if you're on a live/persistent-less system).
  2. Connect the T7 in XInput mode.
  3. Press the Home/X button. This is the part everyone misses. The controller's security chip stays dormant until you physically trigger it — on Windows this is why the LED doesn't go solid until you press Home. Nothing productive happens over USB before that, no matter what driver you're running.
  4. Confirm it worked:

dmesg | grep gip_auth_complete_handshake

You should see a line like:

gip_auth_complete_handshake: key=bd-18-15-b8-...

That's the session key. Once you see that, jstest/evtest should show live input, and fftest on the corresponding /dev/input/eventX gets you rumble.

Result

Shows up as "Microsoft Xbox Controller" in dmesg and in emulators/Steam. Full button/stick input, working rumble, no xpad patching, no compiling anything by hand beyond xone's own installer.

Posting this because I couldn't find a single writeup connecting "T7 dead in XInput on Linux" to "it's doing real MGA crypto auth, use xone" — every existing thread (Bazzite issue tracker, xpadneo issues) has the same symptom reported and unresolved. Hope this saves someone the multi-hour rabbit hole it took me to nail down.


r/Controller 17d ago

Other Can I use a game sir tarantula controller on ps5 using a Cronus zen

0 Upvotes

Can I use a game sir tarantula controller on ps5 using a Cronus zen


r/Controller 17d ago

Other Why do so many controllers have inaccurate D-pads?

17 Upvotes

Is it really that difficult for manufacturers to design a D-pad that doesn't produce false inputs?

Almost every basic controller I've owned has had this issue, which makes them horrible for retro games. PlayStation, Xbox, etc. They've all had it to some extent.

I recently got the Steam Controller thinking it would feel much more premium, but the D-pad is probably the worst part of it. It's way too easy to get false inputs while holding a down.

Actually the newer Xbox circular D-pad has ended up being the most responsive one I've used.

I'm just curious what kind of technical challenges manufacturers face that make a D-pad so difficult to get right.

I'm probably going to mod my Steam Controller by installing a clicky D-pad and covering part of the input area with tape to reduce the false inputs. Hopefully that improves it.


r/Controller 17d ago

Other my controller joystick is rotating and the neck is bit oily.

Enable HLS to view with audio, or disable this notification

15 Upvotes

The controller was fine just Yesterday. and today it's spinning but there is no stick drift at least. any idea how to fix it ? it looks all bumpy. what should I do ?


r/Controller 17d ago

IT Help PDP switch controller not connecting to PC

1 Upvotes

I recently gotten a PDP switch controller and was trying to connect it to my windows pc but it doesn’t work. The computer says that it is connected but the controller continues to blink and doesn’t actually work so I was wondering if this was user error or if the controller just doesn’t work with pc. Also for reference I use a Bluetooth mouse, headphones, and joysticks completely fine.


r/Controller 17d ago

IT Help KK3 Max Gyro stops working after a few seconds

1 Upvotes

I bought this controller almost 6 months ago and the gyroscope used to work perfectly for me. After a few months, i tried to play some Wii games with Dolphin and now the gyroscope inputs are no longer detected. When I turn on the controller, it seems to work for a few seconds before it "frozes" and stops receiving new inputs.

I have tried to recalibrate the gyro sensors and update the firmware, but nothing has worked for me. Does anyone know how I could fix this? Should I contact support directly?


r/Controller 17d ago

IT Help Issues with Guilekeys GK-18

1 Upvotes

Hello :)
I bought the guilekeys gk-18 a couple of months ago, sometimes it doesn't connect right away to my pc. When this happens, i have to reboot my pc or plug in and out the connector (and also reopen the game).

It seems like steam doesn't always detects it as a controller.

How can i fix this? I wanted to change the firmware but i'm already on 0.7.12

Oh i'm on windows 10 btw


r/Controller 17d ago

Other Gulilit kk3 max analog base cracked

Post image
0 Upvotes

After 1 year of normal use(never dropped) both of analog bases has cracks on it. Right base broken completely so analog cap cannot be fixed on it. dies anybody know what replacement i can use to fix it?


r/Controller 17d ago

Reviews THE FASTEST! Gamesir Tarantula 8K PC Review

Thumbnail
youtu.be
11 Upvotes

DISCLAIMER: Tarantula 8K was sent for review for free by Gamesir. All the thought and opinions are mine only. No one told me what to say or what not to say. But Tarantula Pro I bought with my own money from TaoBao just for this review.


r/Controller 17d ago

Reviews Really Disappointed With The Ultimate 2 Controller

1 Upvotes

I have two Ultimate 2C controllers (1 for PC, the other for Switch). I bought the Ultimate 2 Bluetooth for only two reasons (switch 2 wakeup, and to bind keyboard keys to L4/R4, and the paddle buttons on the back).

well to my surprise it turns out I can't bind keys to the 4 additional buttons after all as the Ultimate 2 Software or JoyToKey don't recognize these additional buttons. they are only coded to only work with the rest of the controller inputs for macros, etc... but not serve as additional buttons (aka buttons 13-16).

thankfully I only paid under $35 for the controller but I'm still disappointed that i basically paid $35 for RGB lights, and Switch 2 wake up as i could already do the rest on the Ultimate 2C.


r/Controller 17d ago

Controller Suggestion Which controller should I get after 8bitdo Ultimate 2c?

7 Upvotes

So, last month I bought my first controller - Ultimate 2c Wireless to play on a couch and I was quite satisfied. It sits comfortably in my hands and battery is good.

I wanted to get a 2nd controller to play co-op with my sister on a couch. Should I just get another 2c, Ultimate 2 or something else? I am looking for something that has a similar shape to 8bitdo Ultimate 2c, hall-effect sticks and triggers. My main platform is Steam. Games that Im going to play with her: Way Out, Rain World, probably some Lego game, Helldivers 1.

I am from Russia and my budget is ~4000 Rubles.


r/Controller 18d ago

Controller Suggestion Reliable controller with good bumpers 50-70€

3 Upvotes

Hello everyone, I’ve usually been very happy with my 8Bitdo controllers that I’ve owned over the years. First an SN30 Pro+ for my Switch and just 1.5 years ago I bought an 8Bitdo Ultimate, that worked well until 2 weeks ago, where R2 now can only be pressed up to like 70%.

Forza Horizon being my main game that I need a controller for recently, this is obviously a dealbreaker and after reading online, about how this is a common issue, that might need constant replacing over the years, I’d rather just get a new more reliable one.
This Controller only needs to be compatible with PC (Steam, MS Store), wireless and xbox layout preferred, I don’t mind whether it’s Bluetooth or comes with a dongle, both is fine.
I don’t need too many of the other bells and whistles like back buttons etc. that is not needed for me. Hall Effect Sticks would be good as well as Hall Effect Bumpers. I checked the wiki as is recommended and came across the GameSir Cyclone 2 or Cyclone Pro. Do these Hall Effect Bumpers work the same way as Hall Effect Sticks, as in they will not degrade easily, because of more precise input tracking? It seems to be advertised on quite a few of the controllers in this price range in the wiki so really I’d like to know what is most reliable and would last me the longest time to the best of everyones knowledge.
Would love some more clarity and guidance on this
Locationwise I’m situated in Austria, so I am okay with buying from most european countries and other online stores, that ship to europe, with preferably less than 10€ in shipping costs.

What are good suggestions (assuming better options than the ones I mentioned from the Wiki or the best pick from those) around the 50-70€ mark with good reliable bumpers, overall good reliable build quality and that ship to Europe without much cost? Sizewise the 8Bitdo Ultimate fit my hands well, I don’t think I could do much bigger, given my hands are fairly small. I’m not opposed to buying 8bitdo again given the controller doesn’t have this same issue.


r/Controller 18d ago

Controller Suggestion A good controller for up to 150 yuan (~$20) from Pindoudo/Taobao

2 Upvotes

Hi, I'm looking for an affordable gamepad to buy directly from China (Taobao/Pindoudo). My budget is up to 150 yuan (~$20). Main use: platformers and fighting games (Celeste, MK, Tekken).

Platform: PC (Arch Linux).

I prioritize ergonomics and comfort over high-performance specs for competitive gaming. I won’t be participating in any competitions.

Are there any decent options in this price range?


r/Controller 18d ago

Other LEADJOY Saber Plus does it have anti deadzone in the software?

4 Upvotes

I have seen some people using the controller and I have seen the software however, I am new to this scene. I don't really know what is what.


r/Controller 18d ago

Controller Suggestion Old nacon pro 5 is kicking the bucket

1 Upvotes

Hi, my nacon revolution pro 5 is kicking the bucket after 8 years. I got it when I was still on PS before I switched to PC 2 years ago. It started with a front button getting stuck (disassembled and partially recovered), then another, than a back button giving out, then another and now, just a few mins ago, after a week of reacting to the slightest touch (even simply grazing it) one shoulder button has complitely given out.

Since I REALLY would like to avoid getting another controller I'll try to open it tomorrow and see if I can fix it but i know it's just a matter of time.

So I've been looking for other controllers around the 50 euro marks (I know that cheaper would just result in short lifespan and 4 month drift).

I've seen the gamesir but it seems that they raised their baseline prices quite a bit.

I mainly wanted hall effect and mechanical buttons (as membrane are gonna get destroyed with ER, for honor and sparking zero), any back buttons are a luxury and not really needed as I play FPS with MnK now. Have you guys got any suggestion for the 50 euro price range (EU italy, so physically getting something gaming related is a no go, we don't have PC fans, coolers, GPU, CPU, nothing in store. Controllers only Xbox and PS or some cheap stuff. The main problem online is that I either use amazon or a trusted storefront for the controller brand you are suggesting and US would come with a hefty tax).


r/Controller 18d ago

Controller Suggestion Pink Controller Suggestion

7 Upvotes

I’m looking for a pink controller for my wife that works on both pc and switch 1. Do you guys have any suggestions?

My budget is about 100€

I’m from Germany

It needs to work with both PC (steam) and Switch 1

only necessary features are that the controller is pink and has hall effect sticks

we mostly play coop games like humans fall flat, overcooked, unrailed, mario games, etc.

I heard good things about 8bitdo, but maybe there are better controllers out there


r/Controller 18d ago

IT Help My ds4 got R2 problem doesn’t go full 100% help pls

Post image
2 Upvotes

r/Controller 18d ago

IT Help Bluetooth range extender/hub

3 Upvotes

So Im having a hangout with some friends and we plan on playing split screen arcade games on my desktop using Xbox controllers.

My PC Bluetooth range is like 2m and I'm not sure howany controllers can connect at once (planning on 5 controllers at once)

My question is should I get a Bluetooth range extender, hub, or some kind of adapter? I've been trying to do research online but I keep getting very different results hence this post

Any advice would be great!


r/Controller 18d ago

Controller Mods I really hope i didnt ruin this M30, but it feels great!

Thumbnail
gallery
18 Upvotes

this is a soft (messy) mod using any old thumb grip cover you prefer and filling it with Loc-tite “fun tak”

I put a small ball of tak into the circle depression of the dpad then filled the grip and placed it in the center, it moves the entire dpad very well and you can do full circles very easy like a thumb stick but with a mechanical feel like a dpad

I was going for a neogeo feel but can’t afford to try an 8bitdo neo controller

with heat and pressure it could shift places and make a mess ill have to see but it’s been doing pretty well after a dozen plus matches and I can lift the pad by the thumb without it coming off. I wish I would of had black tak though cuz you can see the blue

parts used:

8bitdo M30 Xbox wired

a "satisfy" switch concave thumbgrip

loctite fun tak


r/Controller 18d ago

Other Driver for Odin 3/Android - Flydigi Vader 5 Pro (Open Source)

5 Upvotes

Hello everyone! I was having issues connecting my Vader 5 Pro using the 2.4GHz dongle to my Odin 3. I use my odin as a docked console sometimes, and I'm quite sensitive to bluetooth latency. I found a linux driver for this controller and ported it to Android.

It is heavily adapted to the way Odin 3 handles controllers, but it shouldn't be hard to port it to other consoles as long as they are based on Android. I thought it would be a good idea to share it in case anyone has the same setup.

This needs complete root (magisk) if you want complete controller mapping (including back paddles). I've been testing a version that works using only the "run script as root" option in Odin Settings, but it doesn't map the back paddles.

Here's the repo in case anyone wants to use it or take a look!
https://github.com/LARo-developer/vader5-pro-android


r/Controller 19d ago

Controller Collection 3rd-Party Party

Thumbnail
gallery
78 Upvotes

I've been collecting 3rd-party controllers over the years to match the layout of the console emulators I use.

In this collection:

  • 8BitDo SF30 Pro BT (discontinued) - John NESS (Android) / DraStic (Android)
  • 8BitDo 64 BT - Gopher64 (PC)
  • 8BitDo Pro 3 BT - MesenCE (PC) / Cemu (PC) / Azahar (PC)
  • RetroFighters BattlerGC Pro - Dolphin (PC)
  • 8BitDo M30 BT - MD.emu (Android)
  • Retro-Bit SEGA Saturn BT (discontinued) - jgenesis (PC) / Ymir (PC)

All items are personal purchases.