Skip to content

Commit

Permalink
device: deltaco-wk95r (#81)
Browse files Browse the repository at this point in the history
  • Loading branch information
carlossless authored Jun 24, 2024
1 parent 8df94c6 commit 6e02ea7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ sinowealth-kb-tool write \
| Model | ISP MD5 | MCU | MCU Label | Tested Read | Tested Write |
| ----- | ------- | --- | --------- | ----------- | ------------ |
| [Aula F87](https://www.aulastar.com/index.php/gaming-keyboard/157.html) | 3e0ebd0c440af5236d7ff8872343f85d | SH68F90A | BYK916 |||
| Deltaco Gaming WK95R | 2d169670eae0d36eae8188562c1f66e8 | SH68F90A | BYK916 |||
| Digital Alliance Meca Warrior X | 2d169670eae0d36eae8188562c1f66e8 | SH68F90 | SH68F90S |||
| E-Yooso Z11 | 3e0ebd0c440af5236d7ff8872343f85d | SH68F90? | BYK901 |||
| [Genesis Thor 300 RGB](https://genesis-zone.com/product/thor-300-rgb-brown) | 2d169670eae0d36eae8188562c1f66e8 | SH68F90 | SH68F90S |||
Expand Down
7 changes: 7 additions & 0 deletions src/part.rs
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,12 @@ pub const PART_ROYALKLUDGE_RK100: Part = Part {
..PART_BASE_SH68F90
};

pub const PART_DELTACO_WK95R: Part = Part {
vendor_id: 0x258a,
product_id: 0x0049,
..PART_BASE_SH68F90
};

pub const PART_DIGITALALLIANCE_MECA_WARRIOR_X: Part = Part {
vendor_id: 0x258a,
product_id: 0x0090,
Expand Down Expand Up @@ -237,6 +243,7 @@ pub const PART_EYOOSO_Z11: Part = Part {

pub static PARTS: Map<&'static str, Part> = phf_map! {
"aula-f87" => PART_AULA_F87,
"deltaco-wk95r" => PART_DELTACO_WK95R,
"digitalalliance-meca-warrior-x" => PART_DIGITALALLIANCE_MECA_WARRIOR_X,
"eyooso-z11" => PART_EYOOSO_Z11,
"genesis-thor-300-rgb" => PART_GENESIS_THOR_300_RGB,
Expand Down

0 comments on commit 6e02ea7

Please sign in to comment.