|
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? |
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 |
The database entry containing the link key can be retrieved via homebrew by calling either
btdrvGetPairedDeviceInfofor an individual controller, orsetsysGetBluetoothDevicesSettingsto retrieve the entire database. In both cases you will receiveSetSysBluetoothDevicesSettingsstructures 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…