Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,11 @@ A cross-platform tool to control USB gaming headsets on **Linux**, **macOS**, an
| Audeze Maxwell | All | x | x | | | x | x | x | | x | | | | | x | | | |
| Audeze Maxwell 2 | All | x | x | | | x | x | x | | x | | | | | | | | x |
| Lenovo Wireless VoIP Headset | All | x | x | | | x | | x | x | x | | | x | | x | | | |
| Plantronics Voyager 8200 UC (BT600) | L/W | x | x | | x | | | x | | | | | | | x | | | |
| Sony INZONE Buds | All | | x | | | | | | | | | | | | | | | |
| HeadsetControl Test device | All | x | x | x | x | x | x | x | x | x | x | x | x | x | x | x | x | x |

**Platform:** All = Linux, macOS, Windows | L/M = Linux and macOS only
**Platform:** All = Linux, macOS, Windows | L/M = Linux and macOS only | L/W = Linux and Windows only

> **Note:** Some Corsair headsets may need additional configuration - see [Adding a Corsair device](docs/ADDING_A_CORSAIR_DEVICE.md). Some headsets (HS80, HS70 wired, RGB Elite, Virtuoso) expose sidetone via ALSA mixer instead.

Expand Down
6 changes: 6 additions & 0 deletions lib/device_registry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@
// Lenovo devices
#include "devices/lenovo_wireless_voip.hpp"

// Plantronics / Poly devices
#include "devices/plantronics_bt600.hpp"

// Sony devices
#include "devices/sony_inzone_buds.hpp"

Expand Down Expand Up @@ -144,6 +147,9 @@ void DeviceRegistry::initialize()
// Lenovo devices
registerDevice(std::make_unique<LenovoWirelessVoip>());

// Plantronics / Poly devices
registerDevice(std::make_unique<PlantronicsBT600>());

// Sony devices
registerDevice(std::make_unique<SonyINZONEBuds>());

Expand Down
Loading
Loading