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

device: redragon-k633-ryze #91

Merged
merged 1 commit into from
Oct 1, 2024
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 | ✅ | ✅ |
Expand Down
7 changes: 7 additions & 0 deletions src/part.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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,
Expand Down