Skip to content
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 @@ -74,6 +74,7 @@ sinowisp write \
| [Aula F87](https://www.aulastar.com/index.php/gaming-keyboard/157.html) | 3e0ebd0c440af5236d7ff8872343f85d | SH68F90A | BYK916 | ✅ | ✅ |
| [CIY X77](https://a.co/d/fKEpeLU) | 46459c31e58194fa076b8ce8fb1f3eaa | SH68F88P (?) | BYK816 | ✅ | ❓ |
| Deltaco Gaming WK95R | 2d169670eae0d36eae8188562c1f66e8 | SH68F90A | BYK916 | ✅ | ✅ |
| Dierya DK68SE | 620f0b67a91f7f74151bc5be745b7110 | SH68F90A | BYK903 | ✅ | ✅ |
| Digital Alliance Meca Warrior X | 2d169670eae0d36eae8188562c1f66e8 | SH68F90 | SH68F90S | ✅ | ✅ |
| E-Yooso Z11 | 3e0ebd0c440af5236d7ff8872343f85d | SH68F90? | BYK901 | ✅ | ✅ |
| E-Yooso Z82 | 3e0ebd0c440af5236d7ff8872343f85d | SH68F90A | BYK916 | ✅ | ✅ |
Expand Down
7 changes: 7 additions & 0 deletions src/device_spec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,12 @@ pub const DEVICE_DELTACO_WK95R: DeviceSpec = DeviceSpec {
..DEVICE_BASE_SH68F90
};

pub const DEVICE_DIERYA_DK68SE: DeviceSpec = DeviceSpec {
vendor_id: 0x258a,
product_id: 0x013b,
..DEVICE_BASE_SH68F90
};

pub const DEVICE_DIGITALALLIANCE_MECA_WARRIOR_X: DeviceSpec = DeviceSpec {
vendor_id: 0x258a,
product_id: 0x0090,
Expand Down Expand Up @@ -297,6 +303,7 @@ pub static DEVICES: Map<&'static str, DeviceSpec> = phf_map! {
"aula-f87" => DEVICE_AULA_F87,
"ciy-x77" => DEVICE_CIY_X77,
"deltaco-wk95r" => DEVICE_DELTACO_WK95R,
"dierya-dk68se" => DEVICE_DIERYA_DK68SE,
"digitalalliance-meca-warrior-x" => DEVICE_DIGITALALLIANCE_MECA_WARRIOR_X,
"eweadn-v20" => DEVICE_EWEADN_V20,
"eyooso-z11" => DEVICE_EYOOSO_Z11,
Expand Down
Loading