diff --git a/README.md b/README.md index 00ef5cd..1f76e70 100644 --- a/README.md +++ b/README.md @@ -84,6 +84,7 @@ sinowealth-kb-tool write \ | [NuPhy Air75](https://nuphy.com/products/air75) | 3e0ebd0c440af5236d7ff8872343f85d | SH68F90A | BYK916 | ✅ | ✅ | | [NuPhy Air96](https://nuphy.com/products/air96-wireless-mechanical-keyboard) | 3e0ebd0c440af5236d7ff8872343f85d | SH68F90A | BYK916 | ✅ | ✅ | | [NuPhy Halo65](https://nuphy.com/products/halo65) | 3e0ebd0c440af5236d7ff8872343f85d | SH68F90A | BYK916 | ✅ | ✅ | +| [Portronics Hydra 10](https://www.portronics.com/products/hydra-10) | 2d169670eae0d36eae8188562c1f66e8 | SH68F90A | BYK916 | ✅ | ✅ | | [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 | ✅ | ✅ | diff --git a/src/part.rs b/src/part.rs index 5a60089..fc3e462 100644 --- a/src/part.rs +++ b/src/part.rs @@ -241,6 +241,12 @@ pub const PART_EYOOSO_Z11: Part = Part { ..PART_BASE_SH68F90 }; +pub const PART_PORTRONICS_HYDRA10: 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, @@ -256,6 +262,7 @@ pub static PARTS: Map<&'static str, Part> = phf_map! { "nuphy-air75" => PART_NUPHY_AIR60, // same as nuphy-air60 "nuphy-air96" => PART_NUPHY_AIR60, // same as nuphy-air60 "nuphy-halo65" => PART_NUPHY_AIR60, // same as nuphy-air60 + "portronics-hydra10" => PART_PORTRONICS_HYDRA10, "re-k70-byk800" => PART_RE_K70_BYK800, "redragon-k530-draconic-pro" => PART_REDRAGON_K530_DRACONIC_PRO, "redragon-k614-anivia" => PART_REDRAGON_ANIVIA_K614,