How to connect a Bluetooth controller to a Raspberry Pi?
Here’s the usual, reliable way to connect a Bluetooth controller to a Raspberry Pi (Raspberry Pi OS) . I’ll give you both GUI and terminal methods, plus the pairing combos for common controllers. 1) Quick GUI method (Raspberry Pi OS Desktop) Turn on Bluetooth on the Pi: Click the Bluetooth icon in the top bar (or go to Preferences → Bluetooth ). Put your controller into pairing mode (see section 3). In the Bluetooth window: Search / Add Device Select your controller Click Pair After pairing, choose Connect (some controllers auto-connect). Tip: If you don’t see a Bluetooth UI, install it: sudo apt update sudo apt install -y blueman 2) Terminal method (works on Desktop + Lite): bluetoothctl Open a terminal and run: bluetoothctl Inside bluetoothctl , type: power on agent on default-agent scan on Put the controller in pairing mode. Wait until you see it appear, then copy its MAC address (looks like AA:BB:CC:DD:EE:FF ). Pai...