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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ A cross-platform tool to control USB gaming headsets on **Linux**, **macOS**, an
| Audeze Maxwell 2 | All | x | x | | | x | x | x | | x | | | | | | | | x |
| Lenovo Wireless VoIP Headset | All | x | x | | | x | | x | x | x | | | x | | x | | | |
| Sony INZONE Buds | All | | x | | | | | | | | | | | | | | | |
| Sony INZONE H5 | All | x | x | | | | x | | | | | | | 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
Expand Down
2 changes: 2 additions & 0 deletions lib/device_registry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@

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

// Test device
#include "devices/headsetcontrol_test.hpp"
Expand Down Expand Up @@ -138,6 +139,7 @@ void DeviceRegistry::initialize()

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

// Test device
registerDevice(std::make_unique<HeadsetControlTest>());
Expand Down
Loading
Loading