Same WIRELESS mouse + keyboard (Logitech Unifying) for two different computers?

65,752

Solution 1

I'm going to answer no - it is not possible. There appear to be similar questions on Logitech's site so you can search there as well. I suspect the answer is that when you pair, the transceiver and the device exchange several bytes of random data and form a key to both allows the devices to recognize each other and to encrypt their wireless transmission.

The problem is that the transceiver may have the ability to recognize something like 5 devices, but the input devices can only recognize and pair to one transceiver. That's because the transceiver only has to sit there and accept a signal it recognizes, otherwise it is passive. Sit, if you see a signal with the correct encryption and ID, accept input, otherwise ignore.

If you added the ability to have the input devices (mouse, keyboard...) pair to multiple transceivers, you would require some sort of additional buttons on the device to switch between them. You'd also need to have the input device store the state (caps lock, num lock...) it was in for each transceiver.

The only Logitech device that can do this is the new K760 keyboard for bluetooth. None of the Unify devices appear able to do this.

Solution 2

The new Logitech M720 has this feature:
http://www.logitech.com/en-us/product/m720-triathlon enter image description here

How I use it:

  • Channel 1: Notebook (Unifying receiver)
  • Channel 2: Android Smartphone (Bluetooth)
  • Channel 3: Desktop PC (Unifying receiver - not included in box content)

Alternatives:

  1. Some monitors have a built-in usb switch. Search for a monitor with two usb upstream ports: https://www.google.com/search?q=monitor+"two+upstream"
  2. You could buy a KVM switch to switch multiple ports like video output, sound and USB or you could buy a usb switch (the cheapiest method).
  3. Use for Windows the Mouse without Borders tool to use one mouse with multiple windows PCs:
    https://www.microsoft.com/en-us/download/details.aspx?id=35460
    Or use Teleport if you prefer Apple:
    http://abyssoft.com/software/teleport/
  4. Buy a M720 and combine it with 3.) so you can control all your Apple and Windows devices with one mouse and keyboard ;)

Solution 3

I solved this, to some extent, with AutoHotkey and figuring out what causes the de-pairing. This solution requires some seconds for re-pairing each time, but is fast enough to be a useful method.

The AutoHotkey code:

F2::
  Run, C:\Program Files\Common Files\Logishrd\Unifying\DJCUHost.exe ; this is the Unifying connection program
  WinWaitActive ahk_exe DJCUHost.exe,, 4
  If !ErrorLevel
  {                                            
    Sleep 160 ; 100 was not enough
    Send {Enter}
    TrayTip Re-pairing Logitech,To disconnect: pull dongle, hibernate or use a USB switch to disconnect the dongle
    ; As soon as you have re-paired, you can switch on (or re-insert or wake the computer with) the Unifying dongle to put it back into operation (it then waits for a missing pairing)
  }
  else
    TrayTip Could not open the Unifying connection program,`n
  Return

Basically that code is only opening the Unifying connection program, but speeds things up. The thing is to understand that the pairing is (temporarily) lost as soon as power is lost for the small Logitech Unifying dongle. Then, a new pairing can be done quickly. You can achive the required power loss by: 1) pulling the dongle out, 2) using a USB hub with simple toggle switches (or a KVM Switch), 3) putting the computer into hibernation, after which the dongle loses power (you can't have the dongle on a permanently powered USB hub for this to work, also just sleep might be enough if you set your computer to cut the power to the dongle during sleep). (There's also option 4, you can go to Logitech Unifying Software: Advanced, Un-Pair. But that can't be done blindly, though in some cases a script could do that un-pairing.)

So, using the option 2 or 3 is just more convenient than removing the dongle from the computer that needs to get un-paired, especially if your setup is like mine where the dongle is located in a hard to reach place.

Solution 4

This can be achieved easily using a $6 USB manual switcher...That is sharing a single keyboard/Mouse etc via a single Unifying receiver, you need a power USB hub as well

Solution 5

Recent Logitech devices support a new technology that is called Logitech Flow. This allows you to create one central work station for multiple computers. Your keyboard follows your cursor from one computer to another, meaning you can type on multiple devices in one fluid workflow. The requirements are that the devices support the technology (unfortunately older devices do not), and that the computers are connected to the same network. The integration is managed by a special software that also needs to be installed.

Apart from the Flow technology, as indicated above, recent Logitech keyboards and mice give you the possibility to choose one out of 3 possible computers to work with through some enumerated keys.

Share:
65,752
Kairan
Author by

Kairan

Updated on September 18, 2022

Comments

  • Kairan
    Kairan over 1 year

    I have a mouse and keyboard with the Logitech Unifying receiver. I have two of those receivers, one in my desktop and one in my laptop. It is quite a pain to actually unpair and repair the mouse+keyboard from one PC to the other. (I think logitech did this on purpose so you would have to buy a second mouse+keyboard, who knows) .

    In any event is there some hardware method of resolving this or some "hack" to be able to easily switch from one unifying receiver to the next quickly?

    I have seen some post on superuser regarding softare such as input director or synergy but thought I would see if anyone has hardware solution first.

    Regards

    josh

    • Máté Juhász
      Máté Juhász almost 8 years
      Why not just move the receiver between the computers?
    • mattsmith5
      mattsmith5 almost 3 years
      please see this question answer, superuser.com/a/1655417/1319010
  • Canadian Luke
    Canadian Luke almost 12 years
    This sucks, but it's also true. I sell lots of Logitec, and that is one question that always comes up. +1 though
  • Kairan
    Kairan almost 7 years
    Still no trackball version of this "switching" mouse :(
  • ExactaBox
    ExactaBox about 4 years
    recently purchased this (bundled with MK850 keyboard), turns out the switching feature is a huge plus
  • pfalcon
    pfalcon over 3 years
    "recent Logitech keyboards and mice give you the possibility" - not just "recent", but "high-end", aka "expensive". Useful answer anyway, people who really need it should be able to shell out extra. And the rest of people should know what to expect.
  • osullic
    osullic about 3 years
    This answer needs a lot more clarification. How can it be achieved easily? What connects to what, and how does it all work?
  • mattsmith5
    mattsmith5 almost 3 years
    this answer is outdated, and should be deleted , it was in 2012
  • mattsmith5
    mattsmith5 almost 3 years
    you can utilize this answer also superuser.com/a/1655417/1319010
  • Alan
    Alan over 2 years
    @ossulic you get an USB switch; connect one end to one PC and the second to the other; you plug in the receiver in the switch and choose which PC it should connect to - by using the switch.
  • user2657714
    user2657714 over 2 years
    Since Synergy is mentioned I'd like to point to github.com/debauchee/barrier An open-source software ‘KVM’ switch (they share the same origin).