I have a Bluetooth mouse (Razer Orochi), and I regularly switch between two computers which I'd like to use it with. Is there a way to make it so that I don't have to re-pair it every single time I change from one to the other?
8 Answers
ok a stupid solution I use is to disable any onboard bluetooth and use a dongle. Plug it into computer 1 - mouse and keyboard work on computer one - take it out and plug it into computer 2 - mouse and keyboard work on computer two.
- 61
Use Synergy
Synergy is Software that lets you easily share your mouse and keyboard between multiple computers, where each computer has it's own display. No special hardware is required, all you need is a local area network. Synergy is supported on Windows, Mac OS X and Linux. Redirecting the mouse and keyboard is as simple as moving the mouse off the edge of your screen.
- 149
- 62,374
There are two ways to do this.
The "old-fashioned" way of using a KVM is one. Essentially it's a box that you plug your devices into. Flip the switch on it to switch computers. There are other features provided (more than 2 computers, more than 2 in/outputs, buttons, yadda yadda yadda not relevant) but that's basically it.
You can also use Synergy, where basically you just move your mouse between screens to change both the "focus" of the keyboard and monitor. It works by pairing the device with a "host" computer then having it essentially pass off the input commands to the other computer when the mouse changes monitors.
- 8,673
- 5
- 42
- 45
I have not had direct experience with this product ...
Logitech Ultrathin Touch Mouse T630
but I do own it's sister product for keyboards ...
Logitech Bluetooth Illuminated Keyboard K810
I like this solution because is works with PC, Mac, iOS, and Android. I use an iPad at work that is not connected to my LAN. It uses cellular for data. I also have my MacBook Pro which is also connected to a different network. Then my development PC which is on the company network. I can easily switch back and forth between the machines as needed using one keyboard. It can pair with up to three (3) devices while the mouse pairs with two (2) devices at a time.
- 601
- Insert a Bluetooth adapter into your computer's USB port. You do not need to do this if your computer already has built-in Bluetooth support.
- Turn on your Bluetooth mouse.
- Go to one of your computers, click the "Start" menu and click "Control Panel."
- Type "Bluetooth" in the top search bar.
- Click "Change Bluetooth Settings" and go to the "Options" tab.
- Check the boxes next to "Allow Bluetooth devices to find this computer,"
- Allow Bluetooth devices to connect to this computer" and "Alert me when a new Bluetooth device wants to connect." This enables discovery mode, which allows your computer to find your Bluetooth mouse.
- Click "Add Bluetooth Device" in Control Panel. Select your mouse and click "Next."
- Choose a pairing method to use with your mouse. You can select "Create a pairing code for me" to have Windows generate an eight-digit key to enter when pairing the device, "Enter the Devices pairing code" if the mouse already has a code or "Pair Without a Code" to not use a pairing code for the mouse.
- Click "Next." Follow the instructions. During the process, Windows exchanges the pairing codes, and installs the drivers for the mouse. Click "Close" when this process is completed.
Repeat this process for any other computer that you would like to use the mouse with. You can now use the mouse with any of them.
It is entirely dependent on the Bluetooth peripheral whether it allows pairing with more than one computer. This is commonly supported by, for example, Bluetooth headsets (I have one which pairs with up to 2 devices), but I haven't heard whether any mice do.
- 3,522
I also wanted to achieve this, there are two ways to get it done.
Buying a Bluetooth mouse that allows multiple device pairing, this isn't new as diverse audio devices allow it, so they would detect and pair immediately with diff devices such as phones, computers and tablets, having a limit of 2, 3, 5 etc depending on the company that makes them.
What I did :), I'm using a simple script (batch file). I use Bluetooth Command line tools available here: https://bluetoothinstaller.com/bluetooth-command-line-tools, this allows 53:12:123:124 etc, using names is slower, addresses faster. So, in simple terms, I have my BT mouse paired with my laptop, I just close it / sleep, etc, and then run my script on my other computer while also pressing the pair button on the mouse, this will connect it to the other computer without manually removing/adding. Same thing applies back to my main laptop. It's easier and faster.
It's as simple as this:
btpair -u -b"34:88:5D:52:B0:B9"
btcom -c -b"34:88:5D:52:B0:B9" -c -s1124
The first line removes the mouse, the second line pairs it. The first data (34:88:etc) it's MY BT Mouse physical address, the 1124 is the standard identifier for BT mouse services (so, just change to fit your BT address), you can find what that is checking on device manager, or using the btdiscovery online tool provided with the package mentioned above). The script must have both lines, as you must remove it and add it again.
Works perfectly on my side. I found the how-to here on super user as other people were asking how to connect/disconnect/pair/unpair, then I just created my script. This, by MarcinJ was greatly useful Scripting connecting/disconnecting a paired Bluetooth device
- 89
Logitech has a couple of solutions for this, but it wouldn't work with your orochi. Another person answered about the ultrathin mouse they have that will allow switching between two computers. Another solution is that they have some of their bluetooth devices which include a dual purpose dongle. The dongle will do the bluetooth pairing for you to the keyboard/mouse as soon as the dongle is powered up. Thus the keyboard and mouse can be linked either using this default pairing or you can use those bluetooth devices on the same or other computers pairing directly with bluetooth. (the MX5500 desktop is one that does this)
The problem with this is, that it does require repairing on a second machine if you are using bluetooth only to connect any time you switch. However, the idea of pairing to the dongle rather than the PC means that you can just move the dongle to the second machine. When paired to the dongle, the keyboard/mouse just look like any other usb based keyboard and mouse as the dongle handles all the bluetooth dirtywork. (this is especially nice if you need keyboard/mouse access at boot-up)
I suppose if you were creative with a soldering iron you could probably buy a bluetooth receiver and drop an arduino nano in behind it and create your own dongle to do this with any device, but good luck on that one! To my knowledge, there isn't anyone out there doing it yet. Maybe there's a business idea for someone.
As a side note, IoGear also has a line of 'multi-link' devices that allow switching between up to 6 paired profiles. But thus far, they only include keyboards. However, one keyboard does have a touchpad on the side. Not much good for gaming, but useful for controlling a multi-head arrangement or pairing to your cell phone and tablet devices.
Of course, the best way to be able to use the orochi on both systems without pairing is to buy a second orochi.
- 136