diff --git a/README.md b/README.md index 4532d69..8172951 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ talking. This differs from a simple loopback via PulseAudio as you won't have an | Logitech G PRO Series | x | x | | | x | | | | | | | | | | | | Logitech G PRO X 2 | x | | | | x | | | | | | | | | | | | Logitech Zone Wired/Zone 750 | x | | | | | | x | x | | | | | | | | -| SteelSeries Arctis (1/7X) Wireless | x | x | | | x | | | | | | | | | | | +| SteelSeries Arctis (1/7X/7P) Wireless | x | x | | | x | | | | | | | | | | | | SteelSeries Arctis (7/Pro) | x | x | | x | x | x | | | | | | | | | | | SteelSeries Arctis 9 | x | x | | | x | x | | | | | | | | | | | SteelSeries Arctis Pro Wireless | x | x | | | x | | | | | | | | | | | @@ -182,7 +182,7 @@ The following additional software can be used to enable control via a GUI #### Windows -[HeadsetControl-GUI](https://github.com/nicola02nb/HeadsetControl-GUI) a simply GUI tool to manage your headset and check battery status. (Qt C++ based) +[HeadsetControl-GUI](https://github.com/LeoKlaus/HeadsetControl-GUI) a simply GUI tool to manage your headset and check battery status. (Qt C++ based) [HeadsetControl-SystemTray](https://github.com/zampierilucas/HeadsetControl-SystemTray) adds a system tray icon, displaying the current amount of battery. (Python based) diff --git a/src/devices/steelseries_arctis_1.c b/src/devices/steelseries_arctis_1.c index 0eda98e..c6601c9 100644 --- a/src/devices/steelseries_arctis_1.c +++ b/src/devices/steelseries_arctis_1.c @@ -12,8 +12,9 @@ static struct device device_arctis; #define ID_ARCTIS_1 0x12b3 #define ID_ARCTIS_1_XBOX 0x12b6 #define ID_ARCTIS_7X 0x12d7 +#define ID_ARCTIS_7P 0x12d5 -static const uint16_t PRODUCT_IDS[] = { ID_ARCTIS_1, ID_ARCTIS_1_XBOX, ID_ARCTIS_7X }; +static const uint16_t PRODUCT_IDS[] = { ID_ARCTIS_1, ID_ARCTIS_1_XBOX, ID_ARCTIS_7X, ID_ARCTIS_7P }; static int arctis_1_send_sidetone(hid_device* device_handle, uint8_t num); static BatteryInfo arctis_1_request_battery(hid_device* device_handle); @@ -27,7 +28,7 @@ void arctis_1_init(struct device** device) device_arctis.idProductsSupported = PRODUCT_IDS; device_arctis.numIdProducts = sizeof(PRODUCT_IDS) / sizeof(PRODUCT_IDS[0]); - strncpy(device_arctis.device_name, "SteelSeries Arctis (1/7X) Wireless", sizeof(device_arctis.device_name)); + strncpy(device_arctis.device_name, "SteelSeries Arctis (1/7X/7P) Wireless", sizeof(device_arctis.device_name)); device_arctis.capabilities = B(CAP_SIDETONE) | B(CAP_BATTERY_STATUS) | B(CAP_INACTIVE_TIME); device_arctis.capability_details[CAP_SIDETONE] = (struct capability_detail) { .usagepage = 0xff43, .usageid = 0x202, .interface = 0x03 };