|
||||||
| Tracking / Autocross / HPDE / Drifting What these cars were built for! |
![]() |
|
|
Thread Tools | Search this Thread |
|
|
#1 |
|
There are now 2 carseats!
Join Date: Nov 2012
Drives: 2013 DGM BRZ
Location: The Emerald City
Posts: 434
Thanks: 21
Thanked 166 Times in 75 Posts
Mentioned: 7 Post(s)
Tagged: 0 Thread(s)
|
Pedal Dance Device
I could build this and I might. It's just not something I'd sell because of the liability...
-Wire microcontroller to the brake pedal switch, ignition, and the ebrake switch (brake switches would use 12v relays of course). -Wire it to an on-off switch for convenience. -Program the microcontroller to switch the brake and ebrake switches on in the correct order a few seconds after ignition. -? -profit You really don't need a microcontroller to do this btw. I'm sure their are cheaper ways, they are probably just beyond my expertise. Arduino c/c++ that should be close: Code:
const int ebrakepin = 8;
const int brakepin = 9;
void setup() {
pinMode(ebrakepin, OUTPUT);
pinMode(brakepin, OUTPUT);
delay(5000);
digitalWrite(ebrakepin, LOW);
digitalWrite(brakepin, LOW);
}
void loop(){
digitalWrite(ebrakepin, HIGH);
delay(10);
digitalWrite(ebrakepin, LOW);
delay(10);
digitalWrite(ebrakepin, HIGH);
delay(10);
digitalWrite(ebrakepin, LOW);
delay(10);
digitalWrite(ebrakepin, HIGH);
delay(100);
digitalWrite(brakepin, HIGH);
delay(10);
digitalWrite(brakepin, LOW);
delay(10);
digitalWrite(brakepin, HIGH);
delay(10);
digitalWrite(brakepin, LOW);
delay(10);
digitalWrite(brakepin, HIGH);
delay(100);
digitalWrite(ebrakepin, LOW);
delay(10);
digitalWrite(ebrakepin, HIGH);
delay(10);
digitalWrite(ebrakepin, LOW);
delay(10);
digitalWrite(ebrakepin, HIGH);
delay(10);
digitalWrite(ebrakepin, LOW);
delay(10);
digitalWrite(ebrakepin, HIGH);
delay(100);
digitalWrite(brakepin, LOW);
delay(10);
digitalWrite(brakepin, HIGH);
delay(10);
digitalWrite(brakepin, LOW);
delay(10);
digitalWrite(brakepin, HIGH);
delay(100);
digitalWrite(ebrakepin,LOW);
digitalWrite(brakepin,LOW);
}
__________________
Last edited by robot; 01-10-2014 at 02:21 AM. |
|
|
|
| The Following User Says Thank You to robot For This Useful Post: | Guff (01-10-2014) |
|
|
#2 |
|
Overthinking it
Join Date: May 2012
Drives: BRZ in CS
Location: DC
Posts: 271
Thanks: 27
Thanked 81 Times in 48 Posts
Mentioned: 1 Post(s)
Tagged: 0 Thread(s)
|
Doesn't the car have to be warm? That may add an element of difficulty
|
|
|
|
|
|
#3 |
|
There are now 2 carseats!
Join Date: Nov 2012
Drives: 2013 DGM BRZ
Location: The Emerald City
Posts: 434
Thanks: 21
Thanked 166 Times in 75 Posts
Mentioned: 7 Post(s)
Tagged: 0 Thread(s)
|
True. I would imagine id just do that part myself.
|
|
|
|
|
|
#4 |
|
i'm sorry, what?
Join Date: Jan 2012
Drives: Canada
Location: I rock a beat harder than you can beat it with rocks
Posts: 4,399
Thanks: 357
Thanked 2,508 Times in 1,268 Posts
Mentioned: 40 Post(s)
Tagged: 3 Thread(s)
|
__________________
don't you think if I was wrong, I'd know it?
|
|
|
|
| The Following User Says Thank You to 7thgear For This Useful Post: | Username (01-20-2014) |
|
|
|
|
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| The "Pedal Dance" testing | CSG Mike | Tracking / Autocross / HPDE / Drifting | 419 | 08-01-2023 11:46 PM |
| Gas pedal dance brake thing.??? | gdrider77 | Software Tuning | 9 | 12-22-2013 09:43 AM |
| Additional "pedal dance" testing. | CSG Mike | Tracking / Autocross / HPDE / Drifting | 55 | 08-27-2013 04:02 AM |
| Pedal Dance Imperative for Autocross/Track | Black Tire | Tracking / Autocross / HPDE / Drifting | 5 | 04-22-2013 12:37 PM |