unknownzerx / tpkb

Utility for 'ThinkPad Compact Bluetooth Keyboard with TrackPoint' (0B47189) for OSX
83 stars 16 forks source link

feature of changing middle button does not work #3

Closed lifei closed 8 years ago

lifei commented 8 years ago

I want to disable the click feature and remain the scroll feature.

unknownzerx commented 8 years ago

There are two modes. Change

    // Middle button
    buf[0] = 0x18;
    buf[1] = 0x09;
    buf[2] = 0x00;
    hid_write(dev, buf, 3);

to

    // Middle button
    buf[0] = 0x18;
    buf[1] = 0x09;
    buf[2] = 0x01; // <- here
    hid_write(dev, buf, 3);

to use another mode (reference).

However neither modes work as the same as in Windows. I am using SteerMouse 4 for various tweaks, including disabling middle button completely.

lifei commented 8 years ago

Thanks I change to HHKB + TraceBall