Toyota GR86, 86, FR-S and Subaru BRZ Forum & Owners Community - FT86CLUB

Toyota GR86, 86, FR-S and Subaru BRZ Forum & Owners Community - FT86CLUB (https://www.ft86club.com/forums/index.php)
-   Tracking / Autocross / HPDE / Drifting (https://www.ft86club.com/forums/forumdisplay.php?f=39)
-   -   Module to disable traction control (https://www.ft86club.com/forums/showthread.php?t=155562)

djcos35 09-10-2025 12:48 PM

Module to disable traction control
 
Does anyone still make the module that would delay 5 seconds after the engine would start, mimic a 4 second 12V finger hold on the traction control button, and then do nothing else? If so, where can I buy one?

Now before I get comments about not doing this or do this....
- I am not allowed to pull the fuse or tamper with sensors and stuff
- I do not care about insurance issues on the road
- I have the under dash switch to disable it when I loan my car to friends (I can not control if they choose to hold the button anyway)
- I bought one in 2017 and am still currently running it on a 2013 FRS. No accidents and LOVE IT!

I just bought a second car (2013 Subaru BRZ) and want to do the same thing without having to move it from one car to another. Lastly, if there are any electronics experts out there I can open the current one up so it can be reproduced.

I will sign a waiver or anything releasing liability.

Please let me know.

djcos35 09-10-2025 12:52 PM

Quote:

Originally Posted by Seattle944t (Post 1547615)
This Probably should be in another area but I have some answers:

1) If you disable the ABS via a switch it faults the system and disables all the associated things, speed sensors, EBD, etc. It won't come back on until to power off and restart the car where it can do a full diagnostic on the system. So no turning it off/on driving, off stays off until a reboot so to speak.

There is a device that does the pedal dance for you:
http://www.autofactory.jp/product/to...&cate=4&seq=11

Or if you just want to have the built in 3 second total TC off press happen every time you start the car it can be done with this:
http://www.fes-auto.com/products_det...p?productid=24

I did a (bad) DIY (http://www.ft86club.com/forums/showthread.php?t=46269) on how to wire it, and haven't updated it to reflect that it can do this, but it's how I have mine wired now.

The good thing about the autosport plus is that it's easy to turn on/off and can be set in different modes, or disabled entirely without any re-wiring, e.g. trips to the dealer or valet, GF, etc.

Also, I believe the first one I bought was the one mentioned second here from www.fes-auto.com but that link is no longer valid.

sly 09-10-2025 01:10 PM

No one's going to give you any grief about disabling it. It's a junk mandated feature and I always turn mine off. It's just become second nature to hit the button or do the pedal dance if the engine is warm. I never drive with it on. Simplest, of course, is to pull the fuse.
I don't know of any off the shelf modules, but there are blogs on how to do this yourself, provided you are comfortable cutting and splicing wiring.
https://brzfrsdiy.blogspot.com/p/dis...rmanently.html

Copied from the blog:
Purpose
Install a hidden switch that, when activated, will cause the traction control system to automatically deactivate as soon as the car is started. With the override turned off, the traction control system reverts to normal operation.

Method
The switch directly connects the ground wire to the Traction Control signal wire which tricks the ECU into thinking that the Traction Control button is being held down continuously.

Time required
1 hour

Tools needed
- Large flat-tipped screwdriver
- Small flat-tipped screwdriver
- Utility knife (sharp!)
- Wire strippers
- Crimpers
- Electrical tape
- Soldering Iron (and solder, duh!)
- 6' of thin wire (or 3' of doubled speaker wire)
- Flashlight
- Wire coat hanger
- Toggle switch of your choosing (Radio shack?)
- Connectors to attach wire to switch
- Connectors to attach switch to car
- Label material or white tape
- Black pen or marker to write on label

There's a comment on the blog that says that this won't work because holding down the button permanently will cause it to come back on. I don't know if that's the case, but if it is you could install a 5 second relay and a time delay switch if you're capable. Basically it would work like this. If you have the switch turned on to disable traction control, then a delay switch will wait a pre-determined amount of time before sending voltage out to your relay. The relay would then energize for 5 seconds or so and then release. It could be automatic. ICM controls makes time delay relays.

smoltz 09-11-2025 03:10 PM

Just get the GJP trac box.

https://www.geraldjustprojects.com/p...gt86-trac-box/

djcos35 09-11-2025 06:10 PM

Well, I may have found a way to build one for about $50. Ordered electronics. We will see if it pans out. Either way, not much sunk costs...

Here is one of the electronics....
https://youtu.be/pZ9w51kYiVo?si=M0s1D47J16CLne7x

djcos35 09-29-2025 10:25 PM

I think this is going to work. Does anyone know if the signal wire from the traction control button send a positive voltage or a negative voltage?

The switch can be wired either way.

smoltz 10-01-2025 12:18 PM

1 Attachment(s)
The switch grounds the signal.

RedReplicant 10-02-2025 03:36 PM

You can do it for about $20 with a CAN ESP32 board, small 12v buck converter, and a bit of code.

The old Beastronix was a Arduino Uno with a CAN shield slapped on top, it wasn't sophisticated.

Sends this one time
0x7C0 03 3B A7 00 00 00 00 00

Loops the following in order
0x7B0 03 3B 0B 80 00 00 00 00
0x780 01 14 00 00 00 00 00 00
0x750 2A 01 14 00 00 00 00 00

Just buy Gerald's box unless you want a project.

Compelica 10-03-2025 02:22 AM

Quote:

Originally Posted by RedReplicant (Post 3616558)
You can do it for about $20 with a CAN ESP32 board, small 12v buck converter, and a bit of code.

The old Beastronix was a Arduino Uno with a CAN shield slapped on top, it wasn't sophisticated.

Sends this one time
0x7C0 03 3B A7 00 00 00 00 00

Loops the following in order
0x7B0 03 3B 0B 80 00 00 00 00
0x780 01 14 00 00 00 00 00 00
0x750 2A 01 14 00 00 00 00 00

Just buy Gerald's box unless you want a project.

To add on - you should be able to use a phone and ELM327 tool as well, ie. fire that command when connected to the car's BT or another trigger.

I remember mine only fires the 7B0 command to VSC for pedal dance to work, what does the rest do though?

RedReplicant 10-03-2025 03:59 PM

Quote:

Originally Posted by Compelica (Post 3616560)
To add on - you should be able to use a phone and ELM327 tool as well, ie. fire that command when connected to the car's BT or another trigger.

I remember mine only fires the 7B0 command to VSC for pedal dance to work, what does the rest do though?

I didn't bother trying without the others and I don't have a BRZ anymore to test with.

Do you still send the initial command or are you saying you ONLY send 0x7B0? If it is the latter then that means it can be added to the normal AIM Solo 2 DL / AIM dash / etc send config.

The limitation with what I was using is that AIM doesn't support single send or message ordering.

Compelica 10-06-2025 09:55 AM

Quote:

Originally Posted by RedReplicant (Post 3616566)
I didn't bother trying without the others and I don't have a BRZ anymore to test with.

Do you still send the initial command or are you saying you ONLY send 0x7B0? If it is the latter then that means it can be added to the normal AIM Solo 2 DL / AIM dash / etc send config.

The limitation with what I was using is that AIM doesn't support single send or message ordering.

Looks like the command has to be sent intermittently - my mistake. But am pretty sure you will just need to send the 7B0 command to get pedal dance working.

As for the other commands, judging from the ECU IDs it is likely to turn off the seat belt indicator and another function that I'm not entirely sure about.

redlined600 10-08-2025 07:53 PM

One is likely to kill the TPMS alert

GrandSport 10-10-2025 01:06 PM

This can really jack with aftermarket dashes and such. So if you're running an AIM dash, it can cause problems.

Also, AIM dashes don't play well with the factory ECU (and confirmed by AIM) so there's that too.

Unless you do the full pedal dance, the SC is never really off. And if it thinks there is inside wheel lift, it absolutely will grab the brakes.

It sent me into 2 or 3x 360s across the middle of a track on a high G/high speed turn in the middle of a race that scared the shit out of me. I thought for sure I was about get T-boned but luckily everyone avoided me. It was absolutely mental.

I moved to Motec the next day.

CSG Mike 10-11-2025 05:37 PM

I have a beastronix box, never used, that I'll happily let go. PM me.


All times are GMT -4. The time now is 04:01 AM.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
User Alert System provided by Advanced User Tagging v3.3.0 (Lite) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.


Garage vBulletin Plugins by Drive Thru Online, Inc.