Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for Steelseries Arctis Nova 7 Diablo IV edition #310

Merged
merged 1 commit into from
Nov 16, 2023
Merged
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
9 changes: 5 additions & 4 deletions src/devices/steelseries_arctis_nova_7.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@

static struct device device_arctis;

#define ID_ARCTIS_NOVA_7 0x2202
#define ID_ARCTIS_NOVA_7x 0x2206
#define ID_ARCTIS_NOVA_7p 0x220a
#define ID_ARCTIS_NOVA_7 0x2202
#define ID_ARCTIS_NOVA_7x 0x2206
#define ID_ARCTIS_NOVA_7p 0x220a
#define ID_ARCTIS_NOVA_7_DIABLO_IV 0x223a

#define BATTERY_MAX 0x04
#define BATTERY_MIN 0x00
Expand All @@ -22,7 +23,7 @@ static struct device device_arctis;

#define EQUALIZER_BANDS_SIZE 10

static const uint16_t PRODUCT_IDS[] = { ID_ARCTIS_NOVA_7, ID_ARCTIS_NOVA_7x, ID_ARCTIS_NOVA_7p };
static const uint16_t PRODUCT_IDS[] = { ID_ARCTIS_NOVA_7, ID_ARCTIS_NOVA_7x, ID_ARCTIS_NOVA_7p, ID_ARCTIS_NOVA_7_DIABLO_IV };

static int arctis_nova_7_send_sidetone(hid_device* device_handle, uint8_t num);
static int arctis_nova_7_send_inactive_time(hid_device* device_handle, uint8_t num);
Expand Down
Loading