Commit Graph

5118 Commits

Author SHA1 Message Date
Werner Sembach
f02ca20ca3 Properly setup key names 2026-02-02 23:25:19 -06:00
Werner Sembach
39055f205c Automatically create matrix 2026-02-02 23:25:19 -06:00
Werner Sembach
0bbec4dde9 Add meta information for udev rule to be generated automatically 2026-02-02 23:25:19 -06:00
Adam Honse
31ad6fe561 Rework to use only a single hid_device and DetectionManager API 2026-02-02 23:25:19 -06:00
Adam Honse
1ed674a721 Multi update packet working for proof of concept direct mode 2026-02-02 23:25:19 -06:00
Adam Honse
047c26b7da Implement getting lamp attributes for each lamp and disabling autonomous mode, work on multi update 2026-02-02 23:25:19 -06:00
Adam Honse
0be978eae1 Begin implementing the HID LampArray protocol for Arduino test device 2026-02-02 23:25:19 -06:00
Adam Honse
4f59845e65 Initial commit for HID LampArray Controller 2026-02-02 23:25:19 -06:00
Adam Honse
1676693b96 Split HID and wrapped HID detector lists into specific detectors (with exact VID/PID matching) and generic detectors (with only IPU matching) and prioritize specific detectors when detecting HID devices 2026-02-02 23:24:12 -06:00
Adam Honse
c4dd171397 Move RGBController base destructor functionality into RGBController::Shutdown() so that update thread can be stopped before deleting the controller. Shutdown() must be called in every RGBController implementation before deleting the controller. Also some fixes to the NetworkServer to avoid deadlocking and disconnect issues 2026-02-02 17:10:37 -06:00
Adam Honse
693a8e5541 Add detectors for filtering on IPU only (no VID/PID) 2026-01-31 22:57:58 -06:00
Adam Honse
8ad7ae11ed Drop support for old hidapi versions that don't support usage information 2026-01-31 22:14:20 -06:00
Adam Honse
116f9f1c54 Add some validity checks to mode setters and getters in RGBController 2026-01-31 22:05:39 -06:00
Adam Honse
0913ae719e [next] SDK v6: Implement client and server flags to indicate capabilities and... 2026-01-31 22:05:39 -06:00
Adam Honse
feb1813e4e SDK documentation updates 2026-01-31 22:05:39 -06:00
Adam Honse
4e246ca5c4 Expose LogManager in ResourceManager so that plugins can use it 2026-01-31 22:05:39 -06:00
Adam Honse
bb20f3629a Update NetworkClient to use log manager and use common name constant in server logs 2026-01-31 22:05:39 -06:00
Adam Honse
d8fb4897a1 Use std::string.assign when setting strings in the SDK protocol and description handlers so that string size limit is enforced, then strip out null terminators 2026-01-31 22:05:39 -06:00
Adam Honse
df67332a30 Add optional HID device hotplug support (requires https://gitlab.com/OpenRGBDevelopers/hidapi-hotplug) 2026-01-31 22:05:39 -06:00
Adam Honse
c8820e9309 SDK v6: Use unique IDs for identifying RGBControllers in SDK protocol 2026-01-31 22:05:38 -06:00
Adam Honse
9e44b7780a Rework list handling in ResourceManager by having NetworkClient own its own list rather than sharing ResourceManager's list 2026-01-31 22:05:38 -06:00
Adam Honse
7a5783559b Move HID detector calls to RunHIDDetector/RunHIDWrappedDetector functions and return controller list from detector functions 2026-01-31 22:05:38 -06:00
Adam Honse
cca380775a Detection progress SDK integration, NetworkClient callback rework 2026-01-31 22:05:38 -06:00
Adam Honse
ca72e084eb Split out detection system from ResourceManager into DetectionManager
* Split detection system out into its own class, DetectionManager
    * Clean up ResourceManger's many callbacks into just two, one for detection and one general purpose
2026-01-31 22:05:38 -06:00
Adam Honse
42a321084a SDK Version 6 Updates
* SDK Protocol
    * Server sends its name to client
    * ProfileManager
      * Rename existing profile commands
      * Add Upload Profile, Download Profile, and Get Active Profile commands
    * SettingsManager
      * Add Get, Set, and Save Settings commands
    * Add zone::active_mode, zone::mode fields for zone-specific modes
    * Add NET_PACKET_ID_RGBCONTROLLER_UPDATEZONEMODE packet for updating zone modes
    * Add segment::matrix_map to segment packet
    * Add NET_PACKET_ID_RGBCONTROLLER_SIGNALUPDATE packet for passing SignalUpdate signal from server to clients
  * NetworkServer
    * Formatting cleanup
    * Use per-controller threads for handling NetworkServer controller-specific packets to avoid delays from controller mutexes
  * NetworkClient
    * Formatting cleanup
  * RGBController
    * Clean up and modularize descriptor functions
2026-01-31 22:05:38 -06:00
Adam Honse
d19d5928a4 Rework Profiles to use JSON format
* Update OpenRGB Plugin Interface to include functions for loading/saving profile JSON data into OpenRGB profiles
    * Update ProfileManager to handle auto-load profiles (Exit, Open, Resume, Suspend) and move their settings to ProfileManager section
    * Update ProfileManager to store profiles in "profiles" folder in .json format
    * Update ProfileManager to store size profile in sizes.json
    * Update ProfileManager to perform device UpdateMode/UpdateColors when loading profile
    * Code cleanup of ProfileManager and profile-related code
2026-01-31 22:05:38 -06:00
Adam Honse
403ea4e6a6 RGBController API Overhaul
* Reorganize and clean up RGBController API functions
    * Add functions to get protected RGBController member values
    * Make NetworkClient, ProfileManager, and ResourceManager friend classes so they can access protected members
    * Protected previously-public RGBController members
        * Information strings (name, vendor, description, version, serial location)
        * Device type
        * Active mode
        * Flags
        * LEDs vector
        * LED alternate names vector
        * Modes vector
        * Colors vector
        * Zones vector
    * Add CONTROLLER_FLAG_HIDDEN to allow plugins to hide controllers from control GUI
    * Add update reason codes to RGBController update callback and signal updates on more RGBController events
    * Add loop zone types and segmented zone type
    * Add matrix map field to segments
    * Rework matrix_map_type from using pointers to vector to prevent memory leaks
    * Rework KeyboardLayoutManager to return new matrix_map_type
    * Add access mutex to RGBController API
    * Add per-zone modes ot RGBController API
    * Add JSON description functions to RGBController API
2026-01-31 22:05:38 -06:00
Adam Honse
79875099af Move plugin SDK integration from callback into plugin API and PluginManager 2026-01-31 22:05:38 -06:00
Adam Honse
1569293983 Update Plugin API to 5 and SDK Protocol to 6 2026-01-31 22:05:38 -06:00
Adam Honse
dae234fbbe Update default builds to Qt6
* Update Debian packages to use Qt6
  * Update Fedora packages to use Qt6
  * Update default AppImage builds to use Qt6
  * Update default Windows builds to use Qt6
  * Update default MacOS builds to use Qt6
2026-01-31 22:05:38 -06:00
bernibaer
b4ca000402 Initial support for Corsair K70 CORE TKL Keyboard ID 1b1c:2b01. Volume knob... 2026-01-30 13:49:48 -06:00
eriosgamer
b78a6f4418 Fixed incorrect PID and device name. 2026-01-29 20:18:55 -06:00
Kirill Khakimov
d5693b7a08 Add PCI device ID for Palit GeForce RTX 5070 Ti GamingPro-S 2026-01-29 16:54:41 -06:00
Werner Sembach
cae0670065 Add new keynames 2026-01-29 16:18:13 -06:00
Adam Honse
f2d1188fdd Fix swatches not resizing properly when maximized 2026-01-28 18:35:22 -06:00
Yohan
70be81c92d Merge: Add CDC Check in JGINYUE Usb Controller #5128 2026-01-27 10:54:51 -06:00
rszyma
5d5af93401 Add support for MSI PRO X870-P WIFI (MS-7E47) motherboard 2026-01-27 01:30:11 -06:00
superstrom
74cbdcce55 New Device: Razer Kraken Kitty V2 Pro 2026-01-25 17:40:54 -06:00
John Smith
96d19a76cc Add support for Sapphire Radeon RX 9060 XT Pure 2026-01-25 12:01:23 +03:00
Kyle Cascade
55d2d44371 Convert the ClevoKeyboardController to use KLM 2026-01-24 18:11:26 -06:00
Koosha Hosseiny
c6b05f5e3c Add support for 'OC' version of Astral card 2026-01-24 19:37:31 +01:00
Adam Honse
ba91bf4d2e Silence codecvt deprecation warning in StringUtils.cpp 2026-01-23 09:14:01 -06:00
Adam Honse
c1e5f7bb1b Use mbedtls@3 for MacOS as homebrew updated mbedtls to 4 and it breaks hueplusplus 2026-01-23 01:18:42 -06:00
Kyle Cascade
4855628d7a Added Effects for Clevo Lightbar 2026-01-21 16:55:46 -06:00
Muhamad Visat
e48908573a add support for the Lian Li UniHub SL v1.8 2026-01-20 19:49:01 -06:00
Grace Atwood
1df9d60fa9 Add Gigabyte AORUS RTX 5080 MASTER GPU controller
New controller for RTX 5080 AORUS MASTER 16G (GV-N5080AORUS M-16GD) with
per-LED fan ring control. This GPU uses a different protocol than legacy
RGB Fusion 2 cards and requires a separate controller.

Hardware info:
- PCI Device ID: 0x2C02 (NVIDIA Blackwell)
- Subsystem ID: 0x4178
- I2C Address: 0x71

LED configuration:
- 3 fan rings × 8 LEDs each = 24 fan LEDs
- 1 logo LED
- Total: 25 individually addressable zones

Protocol details (reverse engineered from Gigabyte Control Center on Windows):
- Mode command (0x88) must include zone selector byte (0x02/0x05/0x06)
- Each fan requires mode command before color registers will respond
- Color registers: 0xB0-0xB3 (left), 0xB4-0xB7 (middle), 0xB8-0xBB (right)
- Logo: 0xBC with mode byte 0x00 (fans use 0x01)
- Apply command (0xAA) must be sent after each zone for multi-zone updates

Verified working on Linux with i2ctransfer and OpenRGB CLI:
- All 24 fan LEDs individually addressable
- Logo LED working
- Color cycling and per-LED gradients tested

Note: Fan LEDs only illuminate when fans are spinning.
2026-01-20 18:58:25 -06:00
TitanHZZ
e69cb3bf88 Add support for 4-zone HP Omen laptops on Windows
Commits squashed and cleaned up by Adam Honse <calcprogrammer1@gmail.com>
2026-01-20 18:48:02 -06:00
Kyle Cascade
c58ae260e5 Add support for TUXEDO laptop per-key RGB keyboard (ITE 8291) 2026-01-20 18:47:53 -06:00
515orestis
555fb7b042 add support for manli RTX 4090 gallardo issue #4168 2026-01-20 18:47:31 -06:00
Kyle Cascade
7a4eb4ddf8 Add support for TUXEDO laptop lightbar (ITE 8291 rev 0.03) 2026-01-20 18:47:20 -06:00