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

Razer Blackwidow V3 Wireless Support #663

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 2 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
Empty file added .vscode/settings.json
Empty file.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ Keyboards:
- Razer BlackWidow Ultimate 2013
- Razer BlackWidow Ultimate 2016
- Razer BlackWidow V3
- Razer BlackWidow V3 Pro (wired)
- Razer BlackWidow V3 Pro (Wired)
- Razer BlackWidow V3 Pro (Wireless)
- Razer BlackWidow V3 TK
- Razer BlackWidow X Chroma
- Razer BlackWidow X Chroma Tournament Edition
Expand Down
21 changes: 21 additions & 0 deletions src/devices/blackwidow_v3_pro_wireless.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"name": "Razer BlackWidow V3 Pro (Wireless)",
"productId": "0x025C",
"mainType": "keyboard",
"image": "https://assets.razerzone.com/eeimages/support/products/1709/1709-blackwidow-v3-tkl.png",
"features": null,
"featuresConfig": [
{
"ripple": {
"rows": 6,
"cols": 22
}
},
{
"wheel": {
"rows": 6,
"cols": 22
}
}
]
}
1 change: 1 addition & 0 deletions src/main/razerdevicemanager.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ export class RazerDeviceManager {
this.closeDevices();

const devicePromises = this.addon.getAllDevices().map(async foundDevice => {
console.log(foundDevice);
radumaerza marked this conversation as resolved.
Show resolved Hide resolved
const configurationDevice = this.razerConfigDevices.find(d => d.productId === foundDevice.productId);
if (configurationDevice === undefined) {
return null;
Expand Down