mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-02-22 22:23:52 +08:00
6 lines
180 B
Python
6 lines
180 B
Python
|
|
from openpilot.selfdrive.car.interfaces import CarControllerBase
|
||
|
|
|
||
|
|
class CarController(CarControllerBase):
|
||
|
|
def update(self, CC, CS, now_nanos):
|
||
|
|
return CC.actuators.copy(), []
|