2024-01-19 17:21:53 +00:00
|
|
|
# Steam Controller - Gordon
|
2024-01-06 08:25:02 +00:00
|
|
|
|
2024-01-17 20:09:19 +00:00
|
|
|
<img src="../../../wiki_images/controllers/steam-controller-gordon.png" width="250">
|
2024-01-06 08:25:02 +00:00
|
|
|
|
2024-01-23 19:41:41 +00:00
|
|
|
The first Steam Controller with the nickname Gordon.
|
2024-01-19 17:21:53 +00:00
|
|
|
|
2024-01-19 17:24:05 +00:00
|
|
|
### Steam Input support
|
2024-01-19 17:21:53 +00:00
|
|
|
Yes
|
2024-01-06 08:25:02 +00:00
|
|
|
|
2024-01-19 17:21:53 +00:00
|
|
|
### Linux Kernel Support
|
2024-01-16 16:57:56 +00:00
|
|
|
Yes, since 4.18 - `hid-steam`
|
|
|
|
|
2024-01-19 17:21:53 +00:00
|
|
|
### Udev rules
|
2024-01-16 16:57:56 +00:00
|
|
|
|
|
|
|
```
|
|
|
|
# Valve USB devices
|
|
|
|
SUBSYSTEM=="usb", ATTRS{idVendor}=="28de", MODE="0666"
|
|
|
|
|
|
|
|
# Steam Controller udev write access
|
|
|
|
KERNEL=="uinput", SUBSYSTEM=="misc", MODE="0660", GROUP="input", OPTIONS+="static_node=uinput"
|
|
|
|
|
|
|
|
# Valve HID devices over USB hidraw
|
|
|
|
KERNEL=="hidraw*", ATTRS{idVendor}=="28de", MODE="0666"
|
|
|
|
|
|
|
|
# Valve HID devices over bluetooth hidraw
|
|
|
|
KERNEL=="hidraw*", KERNELS=="*28DE:*", MODE="0666"
|
|
|
|
```
|