1
0
mirror of https://github.com/DarthAffe/RGB.NET.git synced 2025-12-13 01:58:30 +00:00

Added logitech G303

(fixes #28)
This commit is contained in:
Darth Affe 2018-07-26 21:46:35 +02:00
parent 174accf529
commit d5b62c478b

View File

@ -33,8 +33,9 @@ namespace RGB.NET.Devices.Logitech.HID
private static readonly List<(string model, RGBDeviceType deviceType, int id, int zones, string imageLayout, string layoutPath)> ZONE_DEVICES
= new List<(string model, RGBDeviceType deviceType, int id, int zones, string imageLayout, string layoutPath)>
{
("G903", RGBDeviceType.Mouse, 0xC086, 2, "default", @"Mice\G903"),
("G303", RGBDeviceType.Mouse, 0xC080, 2, "default", @"Mice\G303"),
("G403", RGBDeviceType.Mouse, 0xC083, 2, "default", @"Mice\G403"),
("G903", RGBDeviceType.Mouse, 0xC086, 2, "default", @"Mice\G903"),
("G Pro", RGBDeviceType.Mouse, 0xC085, 1, "default", @"Mice\GPro"),
};