Skip to content

Commit

Permalink
feat: Added Aerox 9 Wireless WOW Edition support
Browse files Browse the repository at this point in the history
  • Loading branch information
flozz committed Oct 29, 2024
1 parent dea6b3d commit e3e2025
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 0 deletions.
5 changes: 5 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,12 @@ Supported Devices
+------------------------------------------------------------------------+-----------+
| SteelSeries Aerox 9 Wireless (wired mode) | 1038:185a |
+------------------------------------------------------------------------+-----------+
| SteelSeries Aerox 9 Wireless WOW Edition (wired mode) | 1038:1876 |
+------------------------------------------------------------------------+-----------+
| SteelSeries Aerox 9 Wireless (2.4 GHz wireless mode) | 1038:1858 |
+------------------------------------------------------------------------+-----------+
| SteelSeries Aerox 9 Wireless WOW Edition (2.4 GHz wireless mode) | 1038:1874 |
+------------------------------------------------------------------------+-----------+
| **SteelSeries Kana v2** |
+------------------------------------------------------------------------+-----------+
| SteelSeries Kana v2 | 1038:137a |
Expand Down Expand Up @@ -248,6 +252,7 @@ Changelog

* **[NEXT]** (changes on ``master`` that have not been released yet):

* feat: Added partial support of the Aerox 9 Wireless WOW Edition (@flozz)
* feat: Allow to reduce the delay between two commands sent to devices (@Miskler, #236)
* feat: Added an env var to remove the delay between commands to speedup the tests (@flozz)
* misc: Added Python 3.13 support (@flozz)
Expand Down
6 changes: 6 additions & 0 deletions rivalcfg/devices/aerox9_wireless_wired.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@
"product_id": 0x185A,
"endpoint": 3,
},
{
"name": "SteelSeries Aerox 9 Wireless WOW Edition (wired mode)",
"vendor_id": 0x1038,
"product_id": 0x1876,
"endpoint": 3,
},
],
"settings": {
"sensitivity": {
Expand Down
6 changes: 6 additions & 0 deletions rivalcfg/devices/aerox9_wireless_wireless.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@ def _patch_command(info):
"product_id": 0x1858,
"endpoint": 3,
},
{
"name": "SteelSeries Aerox 9 Wireless WOW Edition (2.4 GHz wireless mode)",
"vendor_id": 0x1038,
"product_id": 0x1874,
"endpoint": 3,
},
],
"settings": {
name: _patch_command(info)
Expand Down
Loading

0 comments on commit e3e2025

Please sign in to comment.