ADAS Input
Routes Advanced Driver Assistance System inputs to the vehicle's control systems. Allows external ADAS algorithms to provide throttle, brake, and steering commands.
Routes Advanced Driver Assistance System (ADAS) inputs to the vehicle's control systems. Allows external ADAS algorithms (running via TechCore or CAN bus) to provide throttle, brake, and steering commands that override normal player input.
Public API
| Function | Signature | Description |
|---|---|---|
applyAdasInput | (val, key) | Applies an ADAS input value for the specified control key (throttle, brake, steering). |
Usage Example
-- Apply ADAS steering command
extensions.tech_adasInput.applyAdasInput(0.15, "steering")See Also
- ACC — Adaptive Cruise Control (uses ADAS input)
- ADAS Ultrasonic — Ultrasonic parking sensors
- TechCore — External API for ADAS control
Adaptive Cruise Control (ACC)
Adaptive Cruise Control implementation using radar sensor data. Maintains a set speed while automatically adjusting to maintain safe following distance behind other vehicles.
ADAS Ultrasonic
Simulated ultrasonic sensor array for parking assistance and blind spot detection. Provides distance measurements from multiple sensor positions around the vehicle.