Stadia bluetooth controller
mouse 446 · person cloud · link
Last update
2024-01-17
2024
01-17
« — »

bluetooth update

The first time you turn on the controller, it should enter pairing mode — the status light should flash orange. To enter pairing mode manually, hold the “Y + Stadia” buttons for 2 seconds. Once paired, the controller auto-connects to the last paired device when turned on.

What the status lights mean:

  • Flashing orange / Pairing mode, visible to other devices
  • Flashing white / Connecting to last paired device
  • Solid white / Connected to a device

flashing

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
sudo bash

{ cat <<EOF
# SDP protocol
KERNEL=="hidraw*", ATTRS{idVendor}=="1fc9", MODE="0666"
ACTION=="add", SUBSYSTEM=="usb", ATTR{idVendor}=="1fc9", MODE="0666"
ACTION=="add", SUBSYSTEM=="usb", ATTR{idVendor}=="0d28", MODE="0666"
# Flashloader
KERNEL=="hidraw*", ATTRS{idVendor}=="15a2", MODE="0666"
# Controller
KERNEL=="hidraw*", SUBSYSTEM=="hidraw", ATTRS{idVendor}=="18d1", MODE="0666"
SUBSYSTEMS=="usb", ATTRS{idVendor}=="18d1", ATTRS{idProduct}=="9400", MODE="0660", TAG+="uaccess"
EOF
} | sudo tee /etc/udev/rules.d/70-stadiacontroller-flash.rules

udevadm control --reload-rules && udevadm trigger

references