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 new G733 hardware ID #378

Merged
merged 1 commit into from
Nov 24, 2024
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
3 changes: 2 additions & 1 deletion src/devices/logitech_g633_g933_935.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@ static struct device device_g933_935;
#define ID_LOGITECH_G935 0x0a87
#define ID_LOGITECH_G733 0x0ab5
#define ID_LOGITECH_G733_2 0x0afe
#define ID_LOGITECH_G733_3 0x0b1f

static const uint16_t PRODUCT_IDS[] = { ID_LOGITECH_G633, ID_LOGITECH_G635, ID_LOGITECH_G933, ID_LOGITECH_G935, ID_LOGITECH_G733, ID_LOGITECH_G733_2 };
static const uint16_t PRODUCT_IDS[] = { ID_LOGITECH_G633, ID_LOGITECH_G635, ID_LOGITECH_G933, ID_LOGITECH_G935, ID_LOGITECH_G733, ID_LOGITECH_G733_2, ID_LOGITECH_G733_3 };

static int g933_935_send_sidetone(hid_device* device_handle, uint8_t num);
static BatteryInfo g933_935_request_battery(hid_device* device_handle);
Expand Down
Loading