From 16ada34deb66d491c9e9679ab95335664edcdb3b Mon Sep 17 00:00:00 2001 From: Karolis Stasaitis Date: Tue, 1 Oct 2024 20:27:19 +0200 Subject: [PATCH] device: redragon-k633-ryze --- README.md | 1 + src/part.rs | 7 +++++++ 2 files changed, 8 insertions(+) diff --git a/README.md b/README.md index 1f76e70..280d243 100644 --- a/README.md +++ b/README.md @@ -88,6 +88,7 @@ sinowealth-kb-tool write \ | [Redragon K530 Draconic PRO](https://www.redragonzone.com/products/draconic-k530) | cfc8661da8c9d7e351b36c0a763426aa | SH68F90A | BYK916 | ✅ | ✅ | | [Redragon K614 Anivia 60%](https://www.redragonzone.com/products/redragon-k614-anivia-60-ultra-thin-wired-mechanical-keyboard) | 2d169670eae0d36eae8188562c1f66e8 | SH68F90A | BYK916 | ✅ | ✅ | | [Redragon K617 FIZZ 60%](https://www.redragonzone.com/collections/keyboard/products/redragon-k617-fizz-60-wired-rgb-gaming-keyboard-61-keys-compact-mechanical-keyboard) | 2d169670eae0d36eae8188562c1f66e8 | SH68F90A | BYK916 | ✅ | ✅ | +| [Redragon K633 RYZE](https://www.redragonzone.com/products/redragon-k633-ryze-rgb-led-backlit-mechanical-gaming-keyboard-with-68-professional-keys-linear-red-switches) | 2d169670eae0d36eae8188562c1f66e8 | SH68F90A | BYK916 | ✅ | ✅ | | [Redragon K641 SHACO PRO](https://www.redragonzone.com/products/redragon-k641-shaco-pro-65-aluminum-rgb-mechanical-keyboard) | 3e0ebd0c440af5236d7ff8872343f85d | SH68F90A | BYK916 | ✅ | ✅ | | [Redragon K658 PRO SE](https://www.redragonzone.com/products/k658-pro-se-90-wireless-rgb-gaming-keyboard) | 3e0ebd0c440af5236d7ff8872343f85d | SH68F90A | BYK916 | ✅ | ✅ | | [Royal Kludge RK100](http://en.rkgaming.com/product/14/) | cfc8661da8c9d7e351b36c0a763426aa | SH68F90? | BYK916 | ✅ | ✅ | diff --git a/src/part.rs b/src/part.rs index fc3e462..a586404 100644 --- a/src/part.rs +++ b/src/part.rs @@ -247,6 +247,12 @@ pub const PART_PORTRONICS_HYDRA10: Part = Part { ..PART_BASE_SH68F90 }; +pub const PART_REDRAGON_K633_RYZE: Part = Part { + vendor_id: 0x258a, + product_id: 0x0049, + ..PART_BASE_SH68F90 +}; + pub static PARTS: Map<&'static str, Part> = phf_map! { "aula-f87" => PART_AULA_F87, "deltaco-wk95r" => PART_DELTACO_WK95R, @@ -267,6 +273,7 @@ pub static PARTS: Map<&'static str, Part> = phf_map! { "redragon-k530-draconic-pro" => PART_REDRAGON_K530_DRACONIC_PRO, "redragon-k614-anivia" => PART_REDRAGON_ANIVIA_K614, "redragon-k617-fizz" => PART_REDRAGON_FIZZ_K617, + "redragon-k633-ryze" => PART_REDRAGON_K633_RYZE, "redragon-k641-shaco-pro" => PART_REDRAGON_K641_SHACO_PRO, "redragon-k658-pro-se" => PART_REDRAGON_K658_PRO_SE, "royalkludge-rk100" => PART_ROYALKLUDGE_RK100,