Take a look at our
ThinkPads.com HOME PAGE
For those who might want to contribute to the blog, start here: Editors Alley Topic
Then contact Bill with a Private Message

IBM Thinkpad 380ED Keyboard and Trackpoint to USB

Older ThinkPads from the 300, 500, 600, 700 Series, iSeries, Transnote etc.
Post Reply
Message
Author
thedalles77
Posts: 6
Joined: Fri Nov 02, 2018 1:02 am
Location: Tacoma, Wa

IBM Thinkpad 380ED Keyboard and Trackpoint to USB

#1 Post by thedalles77 » Sat May 23, 2020 11:12 pm

I have completed a project that converts an IBM Thinkpad 380ED keyboard and trackpoint to a composite USB device.
All of the documentation is at my Github repository https://github.com/thedalles77/USB_Lapt ... ad%20380ED.
The project description and YouTube link is at Hackaday.IO https://hackaday.io/project/171439-ibm- ... int-to-usb
The design challenge was to amplify the voltage from the trackpoint strain gauge resistors (without adding noise) so that the Teensy 3.2 could detect movement with its A to D converter.
I'm not a good enough coder to figure out autocalibration so I setup function keys to allow the user to re-capture the "at-rest" voltage if they notice any cursor drift. So far, there hasn't been any cursor drift but time will tell. The user can also use function keys to adjust the trackpoint sensitivity. The circuit board can be ordered from OSH Park and all components are available from Digikey.

axur-delmeria
Senior ThinkPadder
Senior ThinkPadder
Posts: 3858
Joined: Mon May 28, 2012 5:49 am
Location: Metro Manila, Philippines

Re: IBM Thinkpad 380ED Keyboard and Trackpoint to USB

#2 Post by axur-delmeria » Sun May 24, 2020 12:40 am

Excellent work!

Too bad I don't have a 380ED to test this with. I wonder if the Trackpoint part will work with other ancient Thinkpads as well.
Planned Purchase: T480s i5-8350 FHD Touch
Impulse Buy: Thinkpad not named for safety reasons :lol:
RIP: X220 4291-C91 X61 7676-A24 760XD-U9E :cry:

thedalles77
Posts: 6
Joined: Fri Nov 02, 2018 1:02 am
Location: Tacoma, Wa

Re: IBM Thinkpad 380ED Keyboard and Trackpoint to USB

#3 Post by thedalles77 » Thu May 28, 2020 2:28 pm

Yes I believe the trackpoint circuit should work with other older Thinkpads.
Tom Nardi at Hackaday did a writeup called "BREATHING NEW LIFE INTO OLD SCHOOL THINKPAD KEYBOARDS" here https://hackaday.com/2020/05/26/breathi ... keyboards/.

feklee
Freshman Member
Posts: 115
Joined: Wed Jun 29, 2005 6:35 am

Re: IBM Thinkpad 380ED Keyboard and Trackpoint to USB

#4 Post by feklee » Tue Jun 30, 2020 12:26 am

Doesn't the TrackPoint in the 380ED talk PS/2?

A long term project for me is to convert an X41 keyboard to Bluetooth. The Trackpoint in that keyboard speaks PS/2, and with proprietary commands features such as sensitivity can be controlled. Also it supports negative inertia, which I find essential for a good experience.

The TrackPoint on modern day ThinkPad keyboards is unusable to me, too low, and it cannot be used with the classic dome cap. This is the reason why I won't buy another ThinkPad. I am typing this on a 3rd gen X1 Tablet with an external Bluetooth TrackPoint keyboard. Unfortunately, Lenovo decided to discontinue the X1 Tablet series, which also has a nice 3:2 display as compared to the awful wide bezel 16:9 displays in other machines.

axur-delmeria
Senior ThinkPadder
Senior ThinkPadder
Posts: 3858
Joined: Mon May 28, 2012 5:49 am
Location: Metro Manila, Philippines

Re: IBM Thinkpad 380ED Keyboard and Trackpoint to USB

#5 Post by axur-delmeria » Tue Jun 30, 2020 2:36 am

feklee wrote:
Tue Jun 30, 2020 12:26 am
Doesn't the TrackPoint in the 380ED talk PS/2?
Problem is, only the bare sensor is on the keyboard, while the Trackpoint circuitry is on the system board. OP basically built his own Trackpoint controller.
feklee wrote:
Tue Jun 30, 2020 12:26 am
A long term project for me is to convert an X41 keyboard to Bluetooth. The Trackpoint in that keyboard speaks PS/2, and with proprietary commands features such as sensitivity can be controlled. Also it supports negative inertia, which I find essential for a good experience.
IMO the fastest way to support those commands is similar to what OP has done: implement them internally and control them with new keyboard shortcuts. Otherwise, you'll be forced to write your own Bluetooth device driver (because the default Bluetooth HID drivers don't know anything about reverse inertia and other Trackpoint-specific features), or somehow program your device to behave exactly like an existing Thinkpad Bluetooth keyboard so it can use Lenovo's drivers (sounds unimaginably difficult TBH).
Planned Purchase: T480s i5-8350 FHD Touch
Impulse Buy: Thinkpad not named for safety reasons :lol:
RIP: X220 4291-C91 X61 7676-A24 760XD-U9E :cry:

feklee
Freshman Member
Posts: 115
Joined: Wed Jun 29, 2005 6:35 am

Re: IBM Thinkpad 380ED Keyboard and Trackpoint to USB

#6 Post by feklee » Tue Jun 30, 2020 3:33 am

axur-delmeria wrote:
Tue Jun 30, 2020 2:36 am
Problem is, only the bare sensor is on the keyboard, while the Trackpoint circuitry is on the system board.
Thanks for the explanation. Fortunately, that changed.
feklee wrote:
Tue Jun 30, 2020 12:26 am
IMO the fastest way to support those commands is similar to what OP has done: implement them internally and control them with new keyboard shortcuts.
A few years back, when I originally thought about the design, I added a knob to change sensitivity. Then I decided to use keyboard shortcuts. That was seven years ago, haven’t made any progress since:
Since January, I’m in Hong Kong. Shenzhen, i.e. cheap production is just across the border. So I may give it another go. Also my electronics knowledge has improved.
feklee wrote:
Tue Jun 30, 2020 12:26 am
behave exactly like an existing Thinkpad Bluetooth keyboard
Better not. I use the existing ThinkPad Bluetooth keyboard, and as far as I can tell, it does not use the proprietary commands, which is one reason why it is so terrible.

axur-delmeria
Senior ThinkPadder
Senior ThinkPadder
Posts: 3858
Joined: Mon May 28, 2012 5:49 am
Location: Metro Manila, Philippines

Re: IBM Thinkpad 380ED Keyboard and Trackpoint to USB

#7 Post by axur-delmeria » Tue Jun 30, 2020 5:48 am

feklee wrote:
Tue Jun 30, 2020 3:33 am
A few years back, when I originally thought about the design, I added a knob to change sensitivity. Then I decided to use keyboard shortcuts. That was seven years ago, haven’t made any progress since:
If the knob is easier to implement for you, then move toward than direction. I only suggested the keyboard shortcut route because OP went that way. The Tex Shinobi keyboard used that approach as well: https://deskthority.net/viewtopic.php?f=45&p=464571

An excerpt from that review:
TrackPoint sensitivity adjustment is done through the keyboard by default - Fn plus a number from 1 through 9 adjusts the sensitivity. There's a delay in which the TrackPoint module itself is reset, which I know real PS/2 TrackPoints don't have when the driver adjusts sensitivity, but whatever, it works.
Planned Purchase: T480s i5-8350 FHD Touch
Impulse Buy: Thinkpad not named for safety reasons :lol:
RIP: X220 4291-C91 X61 7676-A24 760XD-U9E :cry:

feklee
Freshman Member
Posts: 115
Joined: Wed Jun 29, 2005 6:35 am

Re: IBM Thinkpad 380ED Keyboard and Trackpoint to USB

#8 Post by feklee » Tue Jun 30, 2020 5:58 am

axur-delmeria wrote:
Tue Jun 30, 2020 5:48 am
If the knob is easier to implement for you, then move toward than direction.
I already decided for keyboard shortcuts when I designed the ThreadPad. I didn't want to complicate the design by adding a pot.

Post Reply
  • Similar Topics
    Replies
    Views
    Last post

Return to “ThinkPad Legacy Hardware”

Who is online

Users browsing this forum: No registered users and 27 guests