PixlOne / logiops

An unofficial userspace driver for HID++ Logitech devices
GNU General Public License v3.0
3.42k stars 271 forks source link

Add Ergo m575 to the list of tested devices #359

Closed vitek closed 1 year ago

vitek commented 1 year ago

Here is my configuration:

{
    name = "ERGO M575 Trackball";
    buttons =
    (
        // thumb front
        {
            cid: 0x53;
            action = {
                type: "Keypress";
                keys: ["KEY_LEFTMETA", "KEY_LEFT"];
            };
        },
        // thumb back
        {
            cid: 0x56;
            action = {
                type: "Keypress";
                keys: ["KEY_LEFTMETA", "KEY_RIGHT"];
            };
        };
}
)