|
|
|
|
|
by rjp0008
93 days ago
|
|
Cutting someones breaks requires physical access to the hardware. Changing:
if (brakeDepressed()){
engageBrake();
}
To:
if (brakeDepressed() && currentTime < '5/6/26 4pm EST'){
engageBrake();
}
Can be deployed to thousands of vehicles, and would stop brakes from working during peak commute time on the East Coast. |
|