Skip to content
Open
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 @@ -122,6 +122,7 @@ logitune
| MX Anywhere 3S for Business | 🧪 Beta | ✅ | ✅ | ✅ | — | ✅ | — | ✅ | ✅ |
| MX Vertical | 🧪 Beta | ✅ | ✅ | — | — | ✅ | — | ✅ | ✅ |
| MX Vertical for Business | 🧪 Beta | ✅ | ✅ | — | — | ✅ | — | ✅ | ✅ |
| Signature M650 | 🧪 Beta | ✅ | ✅ | — | — | ✅ | — | ✅ | — |
<!-- END DEVICES TABLE -->

> **MX Master 4 smooth scrolling** is disabled in the shipped descriptor: the hardware does not respond correctly to the HID++ configuration used on MX Master 2S / 3S. Regular scroll wheel and SmartShift work normally; only sub-tick smoothing is unavailable. Re-enable yourself by setting `"smoothScroll": true` in `devices/mx-master-4/descriptor.json` if your unit behaves differently; if it works we will promote the default.
Expand Down
Binary file added devices/signature-m650/back.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
109 changes: 109 additions & 0 deletions devices/signature-m650/descriptor.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,109 @@
{
"$schema": "../schema.json",
"name": "Signature M650",
"status": "beta",
"productIds": [
"0xb02a"
],
Comment thread
abdallah-azzouni marked this conversation as resolved.
"features": {
"battery": true,
"adjustableDpi": true,
"extendedDpi": false,
"smartShift": false,
"hiResWheel": false,
"lowResWheel": true,
"smoothScroll": true,
"thumbWheel": false,
"reprogControls": true,
Comment thread
abdallah-azzouni marked this conversation as resolved.
"gestureV2": false
},
"dpi": {
"min": 400,
"max": 4000,
"step": 100
},
"controls": [
{
"controlId": "0x0050",
"buttonIndex": 0,
"defaultName": "Left click",
"defaultActionType": "default",
"configurable": false
},
{
"controlId": "0x0051",
"buttonIndex": 1,
"defaultName": "Right click",
"defaultActionType": "default",
"configurable": false
},
{
"controlId": "0x0052",
"buttonIndex": 2,
"defaultName": "Middle click",
"defaultActionType": "default",
"configurable": true
},
{
"controlId": "0x0053",
"buttonIndex": 3,
"defaultName": "Back",
"defaultActionType": "default",
"configurable": true
},
{
"controlId": "0x0056",
"buttonIndex": 4,
"defaultName": "Forward",
"defaultActionType": "default",
"configurable": true
},
{
"controlId": "0x0000",
"buttonIndex": 5,
"defaultName": "Scroll wheel",
"defaultActionType": "default",
"configurable": false
}
],
"hotspots": {
"buttons": [
{
"buttonIndex": 2,
"xPct": 0.65,
"yPct": 0.18,
"side": "right",
"labelOffsetYPct": 0.0
},
{
"buttonIndex": 4,
"xPct": 0.28,
"yPct": 0.40,
"side": "left",
"labelOffsetYPct": 0.0
},
{
"buttonIndex": 3,
"xPct": 0.38,
"yPct": 0.52,
"side": "left",
"labelOffsetYPct": 0.0
}
],
"scroll": [
{
"buttonIndex": -1,
"xPct": 0.65,
"yPct": 0.15,
"side": "right",
"labelOffsetYPct": 0.0,
"kind": "scrollwheel"
}
]
},
"images": {
"front": "front.png",
"side": "side.png",
"back": "back.png"
}
}
Binary file added devices/signature-m650/front.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added devices/signature-m650/side.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 15 additions & 0 deletions tests/test_device_registry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,21 @@ static const DeviceSpec kDevices[] = {
.gestureDownPayload = nullptr,
.gestureUpType = ButtonAction::Default,
},
{
.pid = 0xb02a,
.name = "Signature M650",
.minDpi = 400, .maxDpi = 4000, .dpiStep = 100,
.buttonHotspots = 3, .scrollHotspots = 1,
.minControls = 6,
.control0Cid = 0x0050, .control5Cid = 0x0000,
.control5ActionType = "default",
.control6ActionType = nullptr,
.battery = true, .adjustableDpi = true, .smartShift = false,
.reprogControls = true, .gestureV2 = false,
.gestureDownType = ButtonAction::Default,
.gestureDownPayload = nullptr,
.gestureUpType = ButtonAction::Default,
},
};

class DeviceRegistryTest : public testing::TestWithParam<DeviceSpec> {
Expand Down