diff --git a/README.md b/README.md index 2ae3232..57811f2 100644 --- a/README.md +++ b/README.md @@ -18,16 +18,17 @@ A cross-platform tool to control USB gaming headsets on **Linux**, **macOS**, an | Device | Platform | sidetone | battery | notification sound | lights | inactive time | chatmix | voice prompts | rotate to mute | equalizer preset | equalizer | parametric equalizer | microphone mute led brightness | microphone volume | volume limiter | bluetooth when powered on | bluetooth call volume | | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | -| Logitech G522 Lightspeed | All | x | x | | | x | | | | | | | x | | | | | +| Logitech G522 LIGHTSPEED | All | x | x | | | x | | | | | | | x | | | | | | Logitech G533 | All | x | x | | | x | | | | | | | | | | | | | Logitech G535 | All | x | x | | | x | | | | | | | | | | | | | Logitech G633/G635/G733/G933/G935 | All | x | x | | x | | | | | | | | | | | | | -| Logitech G432/G433 | All | x | | | | | | | | | | | | | | | | +| Logitech G431/G432/G433 | All | x | | | | | | | | | | | | | | | | | Logitech G930 | All | x | x | | | | | | | | | | | | | | | +| Logitech G PRO X 2 LIGHTSPEED | All | x | x | | | x | | | | | | | | | | | | | Logitech G PRO Series | All | x | x | | | x | | | | | | | | | | | | | Logitech Zone Wired/Zone 750 | All | x | | | | | | x | x | | | | | | | | | | Corsair Headset Device | All | x | x | x | x | | | | | | | | | | | | | -| Corsair Wireless V2 | All | x | x | | | | | | | | | | | | | | | +| Corsair Wireless V2 Headset Device | All | x | x | | | | | | | | | | | | | | | | SteelSeries Arctis (1/7X/7P) Wireless | All | x | x | | | x | | | | | | | | | | | | | SteelSeries Arctis (7/Pro) | All | x | x | | x | x | x | | | | | | | | | | | | SteelSeries Arctis 9 | All | x | x | | | x | x | | | | | | | | | | | @@ -46,7 +47,7 @@ A cross-platform tool to control USB gaming headsets on **Linux**, **macOS**, an | ROCCAT Elo 7.1 Air | All | | | | x | x | | | | | | | | | | | | | ROCCAT Elo 7.1 USB | All | | | | x | | | | | | | | | | | | | | Audeze Maxwell | All | x | x | | | x | x | x | | x | | | | | x | | | -| Lenovo Wireless VoIP Headset | 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 | | | | | | | | | | | | | | | | HeadsetControl Test device | All | x | x | x | x | x | x | x | x | x | x | x | x | x | x | x | x | diff --git a/lib/devices/logitech_g432.hpp b/lib/devices/logitech_g432.hpp index 3cafb37..b193880 100644 --- a/lib/devices/logitech_g432.hpp +++ b/lib/devices/logitech_g432.hpp @@ -9,7 +9,7 @@ using namespace std::string_view_literals; namespace headsetcontrol { /** - * @brief Logitech G432/G433 Gaming Headsets + * @brief Logitech G431/G432/G433 Gaming Headsets * * These are simpler USB headsets with limited features. * Currently only sidetone is supported. @@ -22,6 +22,7 @@ class LogitechG432 : public protocols::HIDPPDevice { std::vector getProductIds() const override { return { + 0x0a9b, // G431 0x0a9c, // G432 0x0a6d // G433 }; @@ -29,7 +30,7 @@ class LogitechG432 : public protocols::HIDPPDevice { std::string_view getDeviceName() const override { - return "Logitech G432/G433"sv; + return "Logitech G431/G432/G433"sv; } constexpr int getCapabilities() const override