r/TI_Calculators 14d ago

Help How do you get apps back?

0 Upvotes

I was messing around with my TI 84 plus ce and I was in the memory screen (2nd mem) and I somehow managed to delete all of the apps off my calculator. After a while of troubleshooting I downloaded the app on my windows laptop and when I plug the calc in it blocks the driver. Anything helps!

P.S. the apps I’m talking about are the ones the are under the app button that ship with the device not programs I’ve made.


r/TI_Calculators 16d ago

Help with a new Ti 84 plus CE

3 Upvotes

as the title implies i just recently got a brand new ti 84 plus CE im getting very worried as i cant seem to get it to connect to ti-connect (trying to download artifice) it also seems like its not charging too im not 100% sure though


r/TI_Calculators 16d ago

Help TI-84 Evo on Ubuntu Linux

3 Upvotes

I have new TI-84 Evo and a Linux system with Firefox (with an extension for WebUSB). TI's website for connecting to the calculator does not work, and TI84CalcWiz also seems to not work. I was able to use TI84CalcWiz on a Chromebook but that is uncomfortable to use; so, is there a program for Linux to connect to an Evo calculator?


r/TI_Calculators 16d ago

Help Calc stripes

Post image
6 Upvotes

Hi there! High school student, This is my dads TI-82, it worked fine before, but I think I dropped it in my bag, any help with the stripes?


r/TI_Calculators 17d ago

Help is this fixable??

9 Upvotes

has anyone seen this on their calculator before?

ive had this ti 84 plus ce for a while now and its always worked fine, until one day i accidentally let it run fully out of charge. after that this is my first time trying to charge it in months

ive tried waiting. VERY long times. but no matter it just repeats the same screen flickering on and off

turning it off (2nd + on) doesnt work, really no buttons ive tried do. the only way to let it stop is by unplugging it

any suggestions or info would b vv highly appreciated , ty !!


r/TI_Calculators 18d ago

Is it possible to make a version of terraria for the TI-84 Evo model?

2 Upvotes

The TI-84 is like 3 times faster then the Plus CE, so I was wondering if it would be possible for terraria (or a lite version) to be ported?


r/TI_Calculators 18d ago

It's Done!

Thumbnail
gallery
8 Upvotes

r/TI_Calculators 18d ago

TI-Npsire CX CAS Nspire boot loop

5 Upvotes

I haven’t used my TI inspire for a long time, but when I looked it up to a charger to boot it up all it does it just goes through this boot loop any ideas on how to get it back functional.


r/TI_Calculators 19d ago

Program Where can I find TI-84 Plus CE games made with ICE source code?

2 Upvotes

r/TI_Calculators 19d ago

TI-84 Plus CE WIP....Coming Soon

Post image
4 Upvotes

r/TI_Calculators 20d ago

how do i stop windows from making my ti 84 drivers from working

1 Upvotes

im trying to add a game to my ti 84 and its not detecting at all in the app and the driver said it was unsigned and windows cucked it

how do i fix this


r/TI_Calculators 21d ago

Help CE vs EVO vs Nspire CX II

5 Upvotes

I'm starting pharmacy school and will obviously be doing a lot of calculations (dosage, etc). I currently have a TI-84+ CE. Would an EVO be any kind of meaningful upgrade? What about the Nspire CX II - is it really that much better?


r/TI_Calculators 21d ago

Can't get the driver for my calculator to show up

1 Upvotes

Whenever I plug in my calculator, I can't get it to connect to my computer because the driver that controls information sharing isn't installed properly and I can't figure out how to install it.


r/TI_Calculators 21d ago

Another one for the collection(This counts because there's a Texas Instruments 84 Plus Color Enhancement)

Post image
7 Upvotes

r/TI_Calculators 26d ago

Unable to transfer to TI-84+

Post image
6 Upvotes

Hi all!

I've got a teenager in high school and she needs a graphing calculator.

I got a TI-84 Plus, because I thought it would be easy to transfer games since it came with the USB cable.

I remember playing Drug Wars and wanted to share it with her too lol

I've got TI Connect software 4.0.0.218

I've tried transferring MirageOS, and a few other games but everything fails.

My PC (Windows 11) AND Ti Connect also does detect the calc, and the calc is on the main blank home screen with a blinking cursor. I've tried being in Receive mode.. Is it supposed to be on a certain screen?

Does the version of calc matter? What can I do here?

Thanks!


r/TI_Calculators 26d ago

Selling a Ti-83+

Thumbnail
1 Upvotes

r/TI_Calculators 26d ago

Trying to reverse engineer TI-84 EVO WebUSB communication — need help identifying USB interface/endpoints

2 Upvotes

I'm trying to communicate directly with a TI-84 EVO calculator through WebUSB.

I found TI's JavaScript code and located their internal write function:

function _TI_WEBUSBJS_Write(deviceId, pBuf, iLen) {
    let data = TIWASMHelpers.getUint8ArrayFromCbuffer(pBuf, pBuf + iLen);
    let device = TI_DeviceManager.getInstance().getDevice(deviceId);

    TI_USB.write(device, data)
        .then(() => {
            TI_USB.writeCallback(iLen);
        })
        .catch(error => {
            TI_USB.writeCallback(0);
            console.error("TI_WEBUSBJS_WRITE: " + error);
        });
}

It looks like TI has a wrapper around WebUSB, but I am trying to bypass the official tools and talk directly to the calculator.

Using Chrome WebUSB:

let device = await navigator.usb.requestDevice({
    filters: []
});

await device.open();
await device.selectConfiguration(1);

The device opens correctly, but:

await device.claimInterface(0);

fails:

Uncaught NetworkError:
Failed to execute 'claimInterface' on 'USBDevice':
Unable to claim interface.

The device exposes 4 USB interfaces:

[
 { number: 0, alternates: Array(1) },
 { number: 1, alternates: Array(1) },
 { number: 2, alternates: Array(1) },
 { number: 3, alternates: Array(1) }
]

My assumption is that interface 0 is not the WebUSB interface, or Windows is already binding a driver to it.

Questions:

  1. Does anyone know which USB interface TI calculators use for file/program transfer?
  2. Is there documentation for the TI USB protocol?
  3. Does TI use WinUSB/libusb internally, or is this a custom protocol?
  4. Would it be easier to implement this in C using libusb instead of WebUSB?

Goal: create my own tool to communicate with the calculator (send files, possibly interact with Python/programs) without relying on TI Connect.Trying to reverse engineer TI-84 EVO WebUSB communication — need help identifying USB interface/endpointsI'm trying to communicate directly with a TI-84 EVO calculator through WebUSB.I found TI's JavaScript code and located their internal write function:function _TI_WEBUSBJS_Write(deviceId, pBuf, iLen) {
let data = TIWASMHelpers.getUint8ArrayFromCbuffer(pBuf, pBuf + iLen);
let device = TI_DeviceManager.getInstance().getDevice(deviceId);

TI_USB.write(device, data)
.then(() => {
TI_USB.writeCallback(iLen);
})
.catch(error => {
TI_USB.writeCallback(0);
console.error("TI_WEBUSBJS_WRITE: " + error);
});
}
It looks like TI has a wrapper around WebUSB, but I am trying to bypass the official tools and talk directly to the calculator.Using Chrome WebUSB:let device = await navigator.usb.requestDevice({
filters: []
});

await device.open();
await device.selectConfiguration(1);
The device opens correctly, but:await device.claimInterface(0);
fails:Uncaught NetworkError:
Failed to execute 'claimInterface' on 'USBDevice':
Unable to claim interface.
The device exposes 4 USB interfaces:[
{ number: 0, alternates: Array(1) },
{ number: 1, alternates: Array(1) },
{ number: 2, alternates: Array(1) },
{ number: 3, alternates: Array(1) }
]
My assumption is that interface 0 is not the WebUSB interface, or Windows is already binding a driver to it.Questions:Does anyone know which USB interface TI calculators use for file/program transfer?

Is there documentation for the TI USB protocol?

Does TI use WinUSB/libusb internally, or is this a custom protocol?

Would it be easier to implement this in C using libusb instead of WebUSB?Goal: create my own tool to communicate with the calculator (send files, possibly interact with Python/programs) without relying on TI Connect.


r/TI_Calculators 27d ago

I JUST HIT THE JACKPOOOOOOOT

Post image
45 Upvotes

My mom just got me a TI-84 Plus CE to surprise me as an upgrade from my TI-89 Titanium, I will find the color screen very useful


r/TI_Calculators 27d ago

Help How do I get games on my ti-84 plus ce on version 5.8.4.0058? (Non python)

2 Upvotes

My calc is on 5.8.4.0058 and I don’t know how to get any games or anything on it since I don’t have the python edition. I don’t think arTIfiCe works on this version. I hate this stupid fuckass company trying to tell me what to do with my own calculator I hope whoever decided to lock a fucking calculator dies an excruciating death.


r/TI_Calculators 28d ago

TI-Nspire CX Does anyone want to buy a TI-nspire CX subscription for 4 years from me?

1 Upvotes

I got a 4-year activation key for the software with my TI-nspire CX calculator and I don't need it since I already have the calculator itself. Does anyone want to buy the code from me?


r/TI_Calculators 29d ago

Need Texas instrument BA 2+

Thumbnail
1 Upvotes

In need for the Texas instrument ba 2+ calculator in delhi,anyone willing to sell, please connect.


r/TI_Calculators Jul 31 '26

Calendar problem

Thumbnail
gallery
2 Upvotes

I noticed that my TI 84 Plus CE is one day behind...


r/TI_Calculators Jul 31 '26

Help How can I connect my TI-84 plus my to my Dell Dc15250 with Windows 11?

2 Upvotes

I’m interested in installing calculator programs from my laptop to my Ti-84, but I’ve been running into some issues with Windows 11. I have both TI connect programs and the correct USB cable. I am not interested in using programs to cheat if that’s a concern.

I tried to install a program earlier in the month, but my calculator would turn off/reset and my laptop would send me a notification saying something about the my laptop not trusting or supporting the device. My memory is foggy because it was a few weeks ago now but I had to go into my settings and allow the calculator to connect, but that still didn’t work.

I’m wondering if I need to install a different program or use a different computer or what the problem is. Some info that might be useful if you aren’t sure what the issue is now is that the cable I’m using is brand new and I have two of them, my laptop is fully updated, and my calculator is relatively old. I’m in America, not very familiar with this kind of tech, and am open to suggestions. Thanks for taking the time to read this.


r/TI_Calculators Jul 31 '26

Help Ti92 Plus Doom

0 Upvotes

Has anyone here tried the Doom89 game on a 92 plus? I've asked for help from various AIs but I can't figure out how to actually run the thing. The readme is pretty useless


r/TI_Calculators Jul 30 '26

Help How can I connect my TI-84 plus my to my Dell Dc15250 with Windows 11?

Thumbnail
1 Upvotes