I want to connect my TI-84 Plus to my Ubuntu 11.04 laptop. I use the organelle cables to connect it. The program tilp(2) didn't work or at least it didn't show my TI-84 Plus; I've tried to run it in root and in the normal way.
- 14,911
- 567
3 Answers
The libticables2-2 library supplied with Ubuntu 11.04 (and as of this writing, 11.10 too) supports the SilverLink cables only. I've just uploaded a patch which adds support for the TI-84+ calculator which is available in LP #747589.
Overview of the fix
- Update the udev rules to avoid having to run the program as root
- Adding yourself to the
tilpgroup so you may use the device without running as root - Specify the calculator type to
tilp
Instructions for installing tilp and getting it to work with the TI-84+:
- Install the
tilppackage and its dependencies like libticables2-2:sudo apt-get install tilp Download the patch:
wget https://launchpadlibrarian.net/79510370/new-devices-and-fixed-sysfs-warning.patchApply the patch to the installed udev rules:
sudo patch /lib/udev/rules.d/45-libticables.rules < new-devices-and-fixed-sysfs-warning.patchAdd yourself to the
tilpgroup:sudo usermod -a -G tilp $USER- Re-login to apply the group settings
- The TI-84+ uses an USB-A - USB-B connector which is called DirectLink. This should be detected automatically. Connect the calculator now to the computer. If you've previously had connected it already, disconnect and reconnect it.
Now make known to
tilpthat you're using a TI-84+ calculator by running:tilp --calc=ti84+ --cable=DirectLinkThis will set the
calc=TI84+andcable_model=DirectLinkin the~/.tilpconfiguration file. After running the above command, it's sufficient to run justtilpin the future (using the application menu or by running the command directly).
- 178,446
You likely need wine
installed in order to use the ti-84 tools. Wine is a Windows compatibility layer that allows you to run certain Windows applications in Linux. According to the Wine AppDB entry for the Graph Link software there may be some issues running the program (note that the results listed are a little old, so the program may work fine).
- 32,495
Perhaps TILP isn't working because of this bug? https://bugs.launchpad.net/ubuntu/+source/tilp/+bug/49251
Are you using a standard USB cable or the other connector? Can you see the device by typeing "lsusb" in terminal? Have you tried compiling a newer TILP? Unfortunately last I checked wine emulation didn't support USB, but Virtualbox Windows may work.
- 1,440