-
I have read that getting exporting and importing the controller link keys is on the roadmap. Could you provide information how to retreive this information manually? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 7 replies
-
The database entry containing the link key can be retrieved via homebrew by calling either If you plan to synchronise with your PC, you will also need to change/spoof its Bluetooth host address to that of your Switch in order for the controller to match the link key to the correct device. This can be retrieve by calling |
Beta Was this translation helpful? Give feedback.
The database entry containing the link key can be retrieved via homebrew by calling either
btdrvGetPairedDeviceInfo
for an individual controller, orsetsysGetBluetoothDevicesSettings
to retrieve the entire database. In both cases you will receiveSetSysBluetoothDevicesSettings
structures that contain the link key. It is also possible to extract this info without writing code by dumping the system save that contains this data and locating the key at the correct location in a hex editor, but I will leave this an an exercise for the reader as I don't know the specifics.If you plan to synchronise with your PC, you will also need to change/spoof its Bluetooth host address to that of your Swit…